Lines Matching defs:IntOperand
69 // IntOperand
71 typedef GCFactory<IntOperand, MCLD_SYMBOLS_PER_INPUT> IntOperandFactory;
74 IntOperand::IntOperand() : Operand(Operand::INTEGER), m_Value(0) {
77 IntOperand::IntOperand(uint64_t pValue)
81 void IntOperand::dump() const {
85 IntOperand* IntOperand::create(uint64_t pValue) {
86 IntOperand* result = g_IntOperandFactory->allocate();
87 new (result) IntOperand(pValue);
91 void IntOperand::destroy(IntOperand*& pOperand) {
97 void IntOperand::clear() {