Home | History | Annotate | Download | only in MC

Lines Matching refs:Op

117     MCOperand Op;
118 Op.Kind = kRegister;
119 Op.RegVal = Reg;
120 return Op;
124 MCOperand Op;
125 Op.Kind = kImmediate;
126 Op.ImmVal = Val;
127 return Op;
131 MCOperand Op;
132 Op.Kind = kFPImmediate;
133 Op.FPImmVal = Val;
134 return Op;
138 MCOperand Op;
139 Op.Kind = kExpr;
140 Op.ExprVal = Val;
141 return Op;
145 MCOperand Op;
146 Op.Kind = kInst;
147 Op.InstVal = Val;
148 return Op;
171 void setOpcode(unsigned Op) { Opcode = Op; }
184 void addOperand(const MCOperand &Op) { Operands.push_back(Op); }
197 iterator insert(iterator I, const MCOperand &Op) {
198 return Operands.insert(I, Op);