Lines Matching refs:OpNum
115 static void printU4ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU4ImmOperand() argument
117 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU4ImmOperand()
138 static void printU6ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU6ImmOperand() argument
140 uint32_t Value = (uint32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU6ImmOperand()
155 static void printS8ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS8ImmOperand() argument
157 int8_t Value = (int8_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS8ImmOperand()
179 static void printU8ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU8ImmOperand() argument
181 uint8_t Value = (uint8_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU8ImmOperand()
196 static void printS16ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS16ImmOperand() argument
198 int16_t Value = (int16_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS16ImmOperand()
220 static void printU16ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU16ImmOperand() argument
222 uint16_t Value = (uint16_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU16ImmOperand()
237 static void printS32ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS32ImmOperand() argument
239 int32_t Value = (int32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS32ImmOperand()
261 static void printU32ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU32ImmOperand() argument
263 uint32_t Value = (uint32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU32ImmOperand()
278 static void printAccessRegOperand(MCInst *MI, int OpNum, SStream *O) in printAccessRegOperand() argument
280 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printAccessRegOperand()
291 static void printPCRelOperand(MCInst *MI, int OpNum, SStream *O) in printPCRelOperand() argument
293 MCOperand *MO = MCInst_getOperand(MI, OpNum); in printPCRelOperand()
318 static void printOperand(MCInst *MI, int OpNum, SStream *O) in printOperand() argument
320 _printOperand(MI, MCInst_getOperand(MI, OpNum), O); in printOperand()
323 static void printBDAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDAddrOperand() argument
325 printAddress(MI, MCOperand_getReg(MCInst_getOperand(MI, OpNum)), in printBDAddrOperand()
326 MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)), 0, O); in printBDAddrOperand()
329 static void printBDXAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDXAddrOperand() argument
331 printAddress(MI, MCOperand_getReg(MCInst_getOperand(MI, OpNum)), in printBDXAddrOperand()
332 MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)), in printBDXAddrOperand()
333 MCOperand_getReg(MCInst_getOperand(MI, OpNum + 2)), O); in printBDXAddrOperand()
336 static void printBDLAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDLAddrOperand() argument
338 unsigned Base = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); in printBDLAddrOperand()
339 uint64_t Disp = (uint64_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)); in printBDLAddrOperand()
340 uint64_t Length = (uint64_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 2)); in printBDLAddrOperand()
365 static void printCond4Operand(MCInst *MI, int OpNum, SStream *O) in printCond4Operand() argument
372 uint64_t Imm = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printCond4Operand()