//===- BinaryOp.h ---------------------------------------------------------===// // // The MCLinker Project // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef MCLD_SCRIPT_BINARYOP_H_ #define MCLD_SCRIPT_BINARYOP_H_ #include "mcld/Script/Operator.h" #include namespace mcld { class Operand; class IntOperand; class Module; class TargetLDBackend; /** \class BinaryOP * \brief This class defines the interfaces to an binary operator token. */ template class BinaryOp : public Operator { private: friend class Operator; BinaryOp() : Operator(Operator::BINARY, TYPE), m_Size(0) { m_pOperand[0] = m_pOperand[1] = NULL; } public: ~BinaryOp() {} IntOperand* eval(const Module& pModule, const TargetLDBackend& pBackend); void appendOperand(Operand* pOperand) { m_pOperand[m_Size++] = pOperand; if (m_Size == 2) m_Size = 0; } private: size_t m_Size; Operand* m_pOperand[2]; }; template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval( const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); template <> IntOperand* BinaryOp::eval(const Module&, const TargetLDBackend&); } // namespace mcld #endif // MCLD_SCRIPT_BINARYOP_H_