Home | History | Annotate | Download | only in Script

Lines Matching refs:Operand

15 #include <mcld/Script/Operand.h>
33 std::stack<Operand*> operandStack;
45 Operand* opd = operandStack.top();
52 Operand* opd2 = operandStack.top();
54 Operand* opd1 = operandStack.top();
62 Operand* opd3 = operandStack.top();
64 Operand* opd2 = operandStack.top();
66 Operand* opd1 = operandStack.top();
78 case ExprToken::OPERAND: {
79 Operand* opd = llvm::cast<Operand>(*it);
81 case Operand::SYMBOL: {
83 // we set up symbol operand here.
100 } // end of switch operand type
108 assert(operandStack.top()->type() == Operand::SYMBOL ||
109 operandStack.top()->type() == Operand::INTEGER ||
110 operandStack.top()->type() == Operand::FRAGMENT);