// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved. // // 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. #pragma once #include #include #include "paddle/ir/core/type_id.h" namespace ir { class OpInfoImpl; class IrContext; class OpResult; class Type; class Attribute; class Dialect; class OpInfo { public: constexpr OpInfo() = default; OpInfo(const OpInfo &other) = default; OpInfo &operator=(const OpInfo &other) = default; bool operator==(OpInfo other) const { return impl_ == other.impl_; } bool operator!=(OpInfo other) const { return impl_ != other.impl_; } explicit operator bool() const { return impl_; } bool operator!() const { return impl_ == nullptr; } IrContext *ir_context() const; Dialect *dialect() const; const char *name() const; TypeId id() const; void Verify(const std::vector &inputs, const std::vector &outputs, const std::unordered_map &attributes); template bool HasTrait() const { return HasTrait(TypeId::get()); } bool HasTrait(TypeId trait_id) const; template bool HasInterface() const { return HasInterface(TypeId::get()); } bool HasInterface(TypeId interface_id) const; template typename Interface::Concept *GetInterfaceImpl() const; void *AsOpaquePointer() const { return impl_; } static OpInfo RecoverFromOpaquePointer(void *impl) { return static_cast(impl); } friend class OpInfoImpl; friend struct std::hash; private: OpInfo(OpInfoImpl *impl) : impl_(impl) {} // NOLINT void *GetInterfaceImpl(TypeId interface_id) const; private: OpInfoImpl *impl_{nullptr}; // not owned }; template typename Interface::Concept *OpInfo::GetInterfaceImpl() const { void *model = GetInterfaceImpl(TypeId::get()); return reinterpret_cast(model); } } // namespace ir namespace std { template <> struct hash { std::size_t operator()(const ir::OpInfo &obj) const { return std::hash()(obj.impl_); } }; } // namespace std