// 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 "paddle/ir/builtin_attribute.h" #include "paddle/ir/op_info.h" #include "paddle/ir/type.h" #include "paddle/ir/value_impl.h" namespace ir { template class OpTraitBase; template class OpInterfaceBase; class Program; using AttributeMap = std::unordered_map; class alignas(8) Operation final { public: /// /// \brief Malloc memory and construct objects in the following order: /// OpResultImpls|Operation|OpOperandImpls. /// NOTE: Similar to new and delete, the destroy() and the create() need to be /// used in conjunction. /// static Operation *create(const std::vector &inputs, const std::vector &output_types, const AttributeMap &attribute, ir::OpInfo op_info); /// /// \brief Destroy the operation objects and free memeory by create(). /// void destroy(); ir::OpResult GetResultByIndex(uint32_t index); ir::OpOperand GetOperandByIndex(uint32_t index); std::string print(); const AttributeMap &attribute() const { return attribute_; } ir::OpInfo op_info() const { return op_info_; } uint32_t num_results() const { return num_results_; } uint32_t num_operands() const { return num_operands_; } std::string op_name() const; template T dyn_cast() const { return CastUtil::call(this); } template bool HasTrait() const { return op_info_.HasTrait(); } template bool HasInterface() const { return op_info_.HasInterface(); } Program *parent_program() const { return parent_program_; } void set_parent_program(Program *parent_program) { parent_program_ = parent_program; } private: Operation(uint32_t num_results, uint32_t num_operands, const AttributeMap &attribute, ir::OpInfo op_info); template struct CastUtil { static T call(const Operation *op) { throw("Can't dyn_cast to T, T should be a Trait or Interface"); } }; template struct CastUtil, T>::value>::type> { static T call(const Operation *op) { return T(op); } }; template struct CastUtil, T>::value>::type> { static T call(const Operation *op) { return T(op, op->op_info_.impl()->GetInterfaceImpl()); } }; AttributeMap attribute_; ir::OpInfo op_info_; uint32_t num_results_ = 0; uint32_t num_operands_ = 0; ir::Program *parent_program_{nullptr}; }; } // namespace ir