Lines Matching refs:Op
55 const MCOperand &Op = MI->getOperand(OpNo);
56 if (Op.isReg()) {
57 O << getRegisterName(Op.getReg());
58 } else if (Op.isImm()) {
59 O << (int32_t)Op.getImm();
61 assert(Op.isExpr() && "Expected an expression");
62 printExpr(Op.getExpr(), O);
83 const MCOperand &Op = MI->getOperand(OpNo);
84 if (Op.isImm())
85 O << (uint64_t)Op.getImm();
87 O << Op;