Lines Matching refs:uint64_t

43   DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
44 ArrayRef<uint8_t> Bytes, uint64_t Address,
50 static bool readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction32()
51 uint64_t &Size, uint32_t &Insn) { in readInstruction32()
59 static bool readInstruction64(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction64()
60 uint64_t &Size, uint64_t &Insn) { in readInstruction64()
62 Insn = ((uint64_t)Bytes[0] << 16) | ((uint64_t)Bytes[1] << 24) | in readInstruction64()
63 ((uint64_t)Bytes[2] << 0) | ((uint64_t)Bytes[3] << 8) | in readInstruction64()
64 ((uint64_t)Bytes[4] << 48) | ((uint64_t)Bytes[5] << 56) | in readInstruction64()
65 ((uint64_t)Bytes[6] << 32) | ((uint64_t)Bytes[7] << 40); in readInstruction64()
69 static bool readInstruction48(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction48()
70 uint64_t &Size, uint64_t &Insn) { in readInstruction48()
72 Insn = ((uint64_t)Bytes[0] << 0) | ((uint64_t)Bytes[1] << 8) | in readInstruction48()
73 ((uint64_t)Bytes[2] << 32) | ((uint64_t)Bytes[3] << 40) | in readInstruction48()
74 ((uint64_t)Bytes[4] << 16) | ((uint64_t)Bytes[5] << 24); in readInstruction48()
78 static bool readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction16()
79 uint64_t &Size, uint32_t &Insn) { in readInstruction16()
87 DecodeSignedOperand(MCInst &Inst, unsigned InsnS, uint64_t Address = 0,
92 DecodeFromCyclicRange(MCInst &Inst, unsigned InsnS, uint64_t Address = 0,
97 uint64_t Address,
100 static DecodeStatus DecodeMEMrs9(MCInst &, unsigned, uint64_t,
103 static DecodeStatus DecodeLdLImmInstruction(MCInst &, uint64_t, uint64_t,
106 static DecodeStatus DecodeStLImmInstruction(MCInst &, uint64_t, uint64_t,
109 static DecodeStatus DecodeLdRLImmInstruction(MCInst &, uint64_t, uint64_t,
112 static DecodeStatus DecodeSOPwithRS12(MCInst &, uint64_t, uint64_t,
115 static DecodeStatus DecodeSOPwithRU6(MCInst &, uint64_t, uint64_t,
118 static DecodeStatus DecodeCCRU6Instruction(MCInst &, uint64_t, uint64_t,
121 static DecodeStatus DecodeMoveHRegInstruction(MCInst &Inst, uint64_t, uint64_t,
132 uint64_t Address, in DecodeGPR32RegisterClass()
145 uint64_t Address, in DecodeGBR32ShortRegister()
169 static DecodeStatus DecodeMEMrs9(MCInst &Inst, unsigned Insn, uint64_t Address, in DecodeMEMrs9()
179 static bool DecodeSymbolicOperand(MCInst &Inst, uint64_t Address, in DecodeSymbolicOperand()
180 uint64_t Value, in DecodeSymbolicOperand()
182 static const uint64_t AtLeast = 2; in DecodeSymbolicOperand()
187 static void DecodeSymbolicOperandOff(MCInst &Inst, uint64_t Address, in DecodeSymbolicOperandOff()
188 uint64_t Offset, in DecodeSymbolicOperandOff()
190 uint64_t NextAddress = Address + Offset; in DecodeSymbolicOperandOff()
198 uint64_t Address, in DecodeBranchTargetS()
208 uint64_t /*Address*/, in DecodeSignedOperand() argument
219 uint64_t /*Address*/, in DecodeFromCyclicRange() argument
229 static DecodeStatus DecodeStLImmInstruction(MCInst &Inst, uint64_t Insn, in DecodeStLImmInstruction()
230 uint64_t Address, in DecodeStLImmInstruction()
246 static DecodeStatus DecodeLdLImmInstruction(MCInst &Inst, uint64_t Insn, in DecodeLdLImmInstruction()
247 uint64_t Address, in DecodeLdLImmInstruction()
264 static DecodeStatus DecodeLdRLImmInstruction(MCInst &Inst, uint64_t Insn, in DecodeLdRLImmInstruction()
265 uint64_t Address, in DecodeLdRLImmInstruction()
281 static DecodeStatus DecodeMoveHRegInstruction(MCInst &Inst, uint64_t Insn, in DecodeMoveHRegInstruction()
282 uint64_t Address, in DecodeMoveHRegInstruction()
307 static DecodeStatus DecodeCCRU6Instruction(MCInst &Inst, uint64_t Insn, in DecodeCCRU6Instruction()
308 uint64_t Address, in DecodeCCRU6Instruction()
322 static DecodeStatus DecodeSOPwithRU6(MCInst &Inst, uint64_t Insn, in DecodeSOPwithRU6()
323 uint64_t Address, in DecodeSOPwithRU6()
333 static DecodeStatus DecodeSOPwithRS12(MCInst &Inst, uint64_t Insn, in DecodeSOPwithRS12()
334 uint64_t Address, in DecodeSOPwithRS12()
347 DecodeStatus ARCDisassembler::getInstruction(MCInst &Instr, uint64_t &Size, in getInstruction()
349 uint64_t Address, in getInstruction()
368 uint64_t Insn64; in getInstruction()
388 uint64_t Insn48; in getInstruction()