mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-13 18:13:47 +00:00
Track reads and writes to pointer parameters for each function in the Resolver, as well as accesses to module-scope variables. At function call sites, check the root identifiers of each pointer argument to determine if problematic aliasing occurs. The MSL backend passes pointers to sub-objects to functions when handling workgroup storage variables, which triggers the alias analysis. Add a validation override for this scenario. Bug: tint:1675 Change-Id: I81a40d1309df65521cc5ad39764d6a09a260f51e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/110167 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: James Price <jrprice@google.com>
58 lines
2.4 KiB
C++
58 lines
2.4 KiB
C++
// Copyright 2021 The Tint Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "src/tint/ast/disable_validation_attribute.h"
|
|
#include "src/tint/clone_context.h"
|
|
#include "src/tint/program_builder.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::ast::DisableValidationAttribute);
|
|
|
|
namespace tint::ast {
|
|
|
|
DisableValidationAttribute::DisableValidationAttribute(ProgramID pid,
|
|
NodeID nid,
|
|
DisabledValidation val)
|
|
: Base(pid, nid), validation(val) {}
|
|
|
|
DisableValidationAttribute::~DisableValidationAttribute() = default;
|
|
|
|
std::string DisableValidationAttribute::InternalName() const {
|
|
switch (validation) {
|
|
case DisabledValidation::kFunctionHasNoBody:
|
|
return "disable_validation__function_has_no_body";
|
|
case DisabledValidation::kBindingPointCollision:
|
|
return "disable_validation__binding_point_collision";
|
|
case DisabledValidation::kIgnoreAddressSpace:
|
|
return "disable_validation__ignore_address_space";
|
|
case DisabledValidation::kEntryPointParameter:
|
|
return "disable_validation__entry_point_parameter";
|
|
case DisabledValidation::kFunctionParameter:
|
|
return "disable_validation__function_parameter";
|
|
case DisabledValidation::kIgnoreStrideAttribute:
|
|
return "disable_validation__ignore_stride";
|
|
case DisabledValidation::kIgnoreInvalidPointerArgument:
|
|
return "disable_validation__ignore_invalid_pointer_argument";
|
|
case DisabledValidation::kIgnorePointerAliasing:
|
|
return "disable_validation__ignore_pointer_aliasing";
|
|
}
|
|
return "<invalid>";
|
|
}
|
|
|
|
const DisableValidationAttribute* DisableValidationAttribute::Clone(CloneContext* ctx) const {
|
|
return ctx->dst->ASTNodes().Create<DisableValidationAttribute>(
|
|
ctx->dst->ID(), ctx->dst->AllocateNodeID(), validation);
|
|
}
|
|
|
|
} // namespace tint::ast
|