// 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 "paddle/ir/core/op_info.h" #include "paddle/ir/core/operation_utils.h" #include "paddle/ir/core/type.h" #include "paddle/ir/core/value_impl.h" namespace ir { class OpBase; class Program; class Block; 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 AttributeMap &attributes, const std::vector &output_types, ir::OpInfo op_info, size_t num_regions = 0); static Operation *create(OperationArgument &&op_argument); /// /// \brief Destroy the operation objects and free memory by create(). /// void destroy(); IrContext *ir_context() const; ir::OpResult GetResultByIndex(uint32_t index) const; ir::OpOperand GetOperandByIndex(uint32_t index) const; std::string print(); const AttributeMap &attributes() const { return attributes_; } void SetAttribute(const std::string &key, Attribute value) { attributes_[key] = value; } ir::OpInfo op_info() const { return op_info_; } uint32_t num_results() const { return num_results_; } uint32_t num_operands() const { return num_operands_; } uint32_t num_regions() const { return num_regions_; } std::string op_name() const; template T dyn_cast() { return CastUtil::call(this); } template bool HasTrait() const { return op_info_.HasTrait(); } template bool HasInterface() const { return op_info_.HasInterface(); } Block *GetParentBlock() const { return parent_; } Region *GetParentRegion() const; Operation *GetParentOp() const; Program *GetParentProgram(); /// Returns the region held by this operation at position 'index'. Region &GetRegion(unsigned index); private: Operation(const AttributeMap &attribute, ir::OpInfo op_info, uint32_t num_results, uint32_t num_operands, uint32_t num_regions); template struct CastUtil { static T call(Operation *op) { throw("Can't dyn_cast to T, T should be a Op or Trait or Interface"); } }; friend class Block; void set_parent(Block *parent) { parent_ = parent; } template struct CastUtil< T, typename std::enable_if::value>::type> { static T call(Operation *op) { return T::dyn_cast(op); } }; AttributeMap attributes_; OpInfo op_info_; const uint32_t num_results_ = 0; const uint32_t num_operands_ = 0; const uint32_t num_regions_ = 0; Region *regions_{nullptr}; Block *parent_{nullptr}; }; } // namespace ir