// 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 alignas(8) Operation final { public: /// /// \brief Malloc memory and construct objects in the following order: /// OpResultImpls|Operation|OpOperandImpls. /// static Operation *create(const std::vector &inputs, const std::vector &output_types, ir::DictionaryAttribute attribute, ir::OpInfo op_info); void destroy(); ir::OpResult GetResultByIndex(uint32_t index); std::string print(); ir::DictionaryAttribute 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_; } 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(); } private: Operation(uint32_t num_results, uint32_t num_operands, ir::DictionaryAttribute 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()); } }; ir::DictionaryAttribute attribute_; ir::OpInfo op_info_; uint32_t num_results_ = 0; uint32_t num_operands_ = 0; }; } // namespace ir