mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-17 17:31:47 +00:00
Fixed: tint:1671 Change-Id: Iaae5b5d571a4401c0255de727245bf8dbbe06740 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/102642 Reviewed-by: David Neto <dneto@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
123 lines
4.0 KiB
C++
123 lines
4.0 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.
|
|
|
|
#ifndef SRC_TINT_SEM_CALL_TARGET_H_
|
|
#define SRC_TINT_SEM_CALL_TARGET_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "src/tint/sem/node.h"
|
|
#include "src/tint/sem/sampler.h"
|
|
#include "src/tint/sem/variable.h"
|
|
#include "src/tint/utils/hash.h"
|
|
#include "src/tint/utils/vector.h"
|
|
|
|
// Forward declarations
|
|
namespace tint::sem {
|
|
class Type;
|
|
} // namespace tint::sem
|
|
|
|
namespace tint::sem {
|
|
|
|
/// CallTargetSignature holds the return type and parameters for a call target
|
|
struct CallTargetSignature {
|
|
/// Constructor
|
|
/// @param ret_ty the call target return type
|
|
/// @param params the call target parameters
|
|
CallTargetSignature(const sem::Type* ret_ty, utils::VectorRef<const Parameter*> params);
|
|
|
|
/// Copy constructor
|
|
CallTargetSignature(const CallTargetSignature&);
|
|
|
|
/// Destructor
|
|
~CallTargetSignature();
|
|
|
|
/// The type of the call target return value
|
|
const sem::Type* const return_type = nullptr;
|
|
/// The parameters of the call target
|
|
const utils::Vector<const sem::Parameter*, 8> parameters;
|
|
|
|
/// Equality operator
|
|
/// @param other the signature to compare this to
|
|
/// @returns true if this signature is equal to other
|
|
bool operator==(const CallTargetSignature& other) const;
|
|
|
|
/// @param usage the parameter usage to find
|
|
/// @returns the index of the parameter with the given usage, or -1 if no
|
|
/// parameter with the given usage exists.
|
|
int IndexOf(ParameterUsage usage) const;
|
|
|
|
/// @param usage the parameter usage to find
|
|
/// @returns the the parameter with the given usage, or nullptr if no parameter with the given
|
|
/// usage exists.
|
|
inline const sem::Parameter* Parameter(ParameterUsage usage) const {
|
|
auto idx = IndexOf(usage);
|
|
return (idx >= 0) ? parameters[static_cast<size_t>(idx)] : nullptr;
|
|
}
|
|
};
|
|
|
|
/// CallTarget is the base for callable functions, builtins, type constructors
|
|
/// and type casts.
|
|
class CallTarget : public Castable<CallTarget, Node> {
|
|
public:
|
|
/// Constructor
|
|
/// @param stage the earliest evaluation stage for a call to this target
|
|
/// @param return_type the return type of the call target
|
|
/// @param parameters the parameters for the call target
|
|
CallTarget(const sem::Type* return_type,
|
|
utils::VectorRef<const Parameter*> parameters,
|
|
EvaluationStage stage);
|
|
|
|
/// Copy constructor
|
|
CallTarget(const CallTarget&);
|
|
|
|
/// Destructor
|
|
~CallTarget() override;
|
|
|
|
/// @return the return type of the call target
|
|
const sem::Type* ReturnType() const { return signature_.return_type; }
|
|
|
|
/// @return the parameters of the call target
|
|
auto& Parameters() const { return signature_.parameters; }
|
|
|
|
/// @return the signature of the call target
|
|
const CallTargetSignature& Signature() const { return signature_; }
|
|
|
|
/// @return the earliest evaluation stage for a call to this target
|
|
EvaluationStage Stage() const { return stage_; }
|
|
|
|
private:
|
|
CallTargetSignature signature_;
|
|
EvaluationStage stage_;
|
|
};
|
|
|
|
} // namespace tint::sem
|
|
|
|
namespace std {
|
|
|
|
/// Custom std::hash specialization for tint::sem::CallTargetSignature so
|
|
/// CallTargetSignature can be used as keys for std::unordered_map and
|
|
/// std::unordered_set.
|
|
template <>
|
|
class hash<tint::sem::CallTargetSignature> {
|
|
public:
|
|
/// @param sig the CallTargetSignature to hash
|
|
/// @return the hash value
|
|
std::size_t operator()(const tint::sem::CallTargetSignature& sig) const;
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
#endif // SRC_TINT_SEM_CALL_TARGET_H_
|