• Home
  • Raw
  • Download

Lines Matching refs:OpNum

104 static void printU1ImmOperand(MCInst *MI, int OpNum, SStream *O)  in printU1ImmOperand()  argument
106 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU1ImmOperand()
117 static void printU2ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU2ImmOperand() argument
119 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU2ImmOperand()
130 static void printU3ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU3ImmOperand() argument
132 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU3ImmOperand()
143 static void printU4ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU4ImmOperand() argument
145 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU4ImmOperand()
156 static void printU6ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU6ImmOperand() argument
158 uint32_t Value = (uint32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU6ImmOperand()
170 static void printS8ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS8ImmOperand() argument
172 int8_t Value = (int8_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS8ImmOperand()
194 static void printU8ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU8ImmOperand() argument
196 uint8_t Value = (uint8_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU8ImmOperand()
211 static void printU12ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU12ImmOperand() argument
213 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU12ImmOperand()
224 static void printS16ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS16ImmOperand() argument
226 int16_t Value = (int16_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS16ImmOperand()
248 static void printU16ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU16ImmOperand() argument
250 uint16_t Value = (uint16_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU16ImmOperand()
265 static void printS32ImmOperand(MCInst *MI, int OpNum, SStream *O) in printS32ImmOperand() argument
267 int32_t Value = (int32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printS32ImmOperand()
279 static void printU32ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU32ImmOperand() argument
281 uint32_t Value = (uint32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU32ImmOperand()
293 static void printU48ImmOperand(MCInst *MI, int OpNum, SStream *O) in printU48ImmOperand() argument
295 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printU48ImmOperand()
306 static void printPCRelOperand(MCInst *MI, int OpNum, SStream *O) in printPCRelOperand() argument
308 MCOperand *MO = MCInst_getOperand(MI, OpNum); in printPCRelOperand()
324 static void printPCRelTLSOperand(MCInst *MI, int OpNum, SStream *O) in printPCRelTLSOperand() argument
327 printPCRelOperand(MI, OpNum, O); in printPCRelTLSOperand()
330 static void printOperand(MCInst *MI, int OpNum, SStream *O) in printOperand() argument
332 _printOperand(MI, MCInst_getOperand(MI, OpNum), O); in printOperand()
335 static void printBDAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDAddrOperand() argument
337 printAddress(MI, MCOperand_getReg(MCInst_getOperand(MI, OpNum)), in printBDAddrOperand()
338 MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)), 0, O); in printBDAddrOperand()
341 static void printBDXAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDXAddrOperand() argument
343 printAddress(MI, MCOperand_getReg(MCInst_getOperand(MI, OpNum)), in printBDXAddrOperand()
344 MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)), in printBDXAddrOperand()
345 MCOperand_getReg(MCInst_getOperand(MI, OpNum + 2)), O); in printBDXAddrOperand()
348 static void printBDLAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDLAddrOperand() argument
350 unsigned Base = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); in printBDLAddrOperand()
351 uint64_t Disp = (uint64_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)); in printBDLAddrOperand()
352 uint64_t Length = (uint64_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 2)); in printBDLAddrOperand()
377 static void printBDRAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDRAddrOperand() argument
379 unsigned Base = MCOperand_getReg(MCInst_getOperand(MI, OpNum)); in printBDRAddrOperand()
380 uint64_t Disp = (uint64_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)); in printBDRAddrOperand()
381 uint64_t Length = MCOperand_getReg(MCInst_getOperand(MI, OpNum + 2)); in printBDRAddrOperand()
404 static void printBDVAddrOperand(MCInst *MI, int OpNum, SStream *O) in printBDVAddrOperand() argument
406 printAddress(MI, MCOperand_getReg(MCInst_getOperand(MI, OpNum)), in printBDVAddrOperand()
407 MCOperand_getImm(MCInst_getOperand(MI, OpNum + 1)), in printBDVAddrOperand()
408 MCOperand_getReg(MCInst_getOperand(MI, OpNum + 2)), O); in printBDVAddrOperand()
411 static void printCond4Operand(MCInst *MI, int OpNum, SStream *O) in printCond4Operand() argument
418 uint64_t Imm = MCOperand_getImm(MCInst_getOperand(MI, OpNum)); in printCond4Operand()