• Home
  • Raw
  • Download

Lines Matching refs:uint64_t

32   DecodeStatus getInstruction(MCInst &instr, uint64_t &size,
33 const MemoryObject &region, uint64_t address,
51 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo, in decodeRegisterClass()
61 static DecodeStatus DecodeGR32BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeGR32BitRegisterClass()
62 uint64_t Address, in DecodeGR32BitRegisterClass()
67 static DecodeStatus DecodeGRH32BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeGRH32BitRegisterClass()
68 uint64_t Address, in DecodeGRH32BitRegisterClass()
73 static DecodeStatus DecodeGR64BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeGR64BitRegisterClass()
74 uint64_t Address, in DecodeGR64BitRegisterClass()
79 static DecodeStatus DecodeGR128BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeGR128BitRegisterClass()
80 uint64_t Address, in DecodeGR128BitRegisterClass()
85 static DecodeStatus DecodeADDR64BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeADDR64BitRegisterClass()
86 uint64_t Address, in DecodeADDR64BitRegisterClass()
91 static DecodeStatus DecodeFP32BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeFP32BitRegisterClass()
92 uint64_t Address, in DecodeFP32BitRegisterClass()
97 static DecodeStatus DecodeFP64BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeFP64BitRegisterClass()
98 uint64_t Address, in DecodeFP64BitRegisterClass()
103 static DecodeStatus DecodeFP128BitRegisterClass(MCInst &Inst, uint64_t RegNo, in DecodeFP128BitRegisterClass()
104 uint64_t Address, in DecodeFP128BitRegisterClass()
110 static DecodeStatus decodeUImmOperand(MCInst &Inst, uint64_t Imm) { in decodeUImmOperand()
117 static DecodeStatus decodeSImmOperand(MCInst &Inst, uint64_t Imm) { in decodeSImmOperand()
123 static DecodeStatus decodeAccessRegOperand(MCInst &Inst, uint64_t Imm, in decodeAccessRegOperand()
124 uint64_t Address, in decodeAccessRegOperand()
129 static DecodeStatus decodeU4ImmOperand(MCInst &Inst, uint64_t Imm, in decodeU4ImmOperand()
130 uint64_t Address, const void *Decoder) { in decodeU4ImmOperand()
134 static DecodeStatus decodeU6ImmOperand(MCInst &Inst, uint64_t Imm, in decodeU6ImmOperand()
135 uint64_t Address, const void *Decoder) { in decodeU6ImmOperand()
139 static DecodeStatus decodeU8ImmOperand(MCInst &Inst, uint64_t Imm, in decodeU8ImmOperand()
140 uint64_t Address, const void *Decoder) { in decodeU8ImmOperand()
144 static DecodeStatus decodeU16ImmOperand(MCInst &Inst, uint64_t Imm, in decodeU16ImmOperand()
145 uint64_t Address, const void *Decoder) { in decodeU16ImmOperand()
149 static DecodeStatus decodeU32ImmOperand(MCInst &Inst, uint64_t Imm, in decodeU32ImmOperand()
150 uint64_t Address, const void *Decoder) { in decodeU32ImmOperand()
154 static DecodeStatus decodeS8ImmOperand(MCInst &Inst, uint64_t Imm, in decodeS8ImmOperand()
155 uint64_t Address, const void *Decoder) { in decodeS8ImmOperand()
159 static DecodeStatus decodeS16ImmOperand(MCInst &Inst, uint64_t Imm, in decodeS16ImmOperand()
160 uint64_t Address, const void *Decoder) { in decodeS16ImmOperand()
164 static DecodeStatus decodeS32ImmOperand(MCInst &Inst, uint64_t Imm, in decodeS32ImmOperand()
165 uint64_t Address, const void *Decoder) { in decodeS32ImmOperand()
170 static DecodeStatus decodePCDBLOperand(MCInst &Inst, uint64_t Imm, in decodePCDBLOperand()
171 uint64_t Address) { in decodePCDBLOperand()
177 static DecodeStatus decodePC16DBLOperand(MCInst &Inst, uint64_t Imm, in decodePC16DBLOperand()
178 uint64_t Address, in decodePC16DBLOperand()
183 static DecodeStatus decodePC32DBLOperand(MCInst &Inst, uint64_t Imm, in decodePC32DBLOperand()
184 uint64_t Address, in decodePC32DBLOperand()
189 static DecodeStatus decodeBDAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr12Operand()
191 uint64_t Base = Field >> 12; in decodeBDAddr12Operand()
192 uint64_t Disp = Field & 0xfff; in decodeBDAddr12Operand()
199 static DecodeStatus decodeBDAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr20Operand()
201 uint64_t Base = Field >> 20; in decodeBDAddr20Operand()
202 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff); in decodeBDAddr20Operand()
209 static DecodeStatus decodeBDXAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr12Operand()
211 uint64_t Index = Field >> 16; in decodeBDXAddr12Operand()
212 uint64_t Base = (Field >> 12) & 0xf; in decodeBDXAddr12Operand()
213 uint64_t Disp = Field & 0xfff; in decodeBDXAddr12Operand()
221 static DecodeStatus decodeBDXAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr20Operand()
223 uint64_t Index = Field >> 24; in decodeBDXAddr20Operand()
224 uint64_t Base = (Field >> 20) & 0xf; in decodeBDXAddr20Operand()
225 uint64_t Disp = ((Field & 0xfff00) >> 8) | ((Field & 0xff) << 12); in decodeBDXAddr20Operand()
233 static DecodeStatus decodeBDLAddr12Len8Operand(MCInst &Inst, uint64_t Field, in decodeBDLAddr12Len8Operand()
235 uint64_t Length = Field >> 16; in decodeBDLAddr12Len8Operand()
236 uint64_t Base = (Field >> 12) & 0xf; in decodeBDLAddr12Len8Operand()
237 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len8Operand()
245 static DecodeStatus decodeBDAddr32Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp12Operand()
246 uint64_t Address, in decodeBDAddr32Disp12Operand()
251 static DecodeStatus decodeBDAddr32Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp20Operand()
252 uint64_t Address, in decodeBDAddr32Disp20Operand()
257 static DecodeStatus decodeBDAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp12Operand()
258 uint64_t Address, in decodeBDAddr64Disp12Operand()
263 static DecodeStatus decodeBDAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp20Operand()
264 uint64_t Address, in decodeBDAddr64Disp20Operand()
269 static DecodeStatus decodeBDXAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp12Operand()
270 uint64_t Address, in decodeBDXAddr64Disp12Operand()
275 static DecodeStatus decodeBDXAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp20Operand()
276 uint64_t Address, in decodeBDXAddr64Disp20Operand()
282 uint64_t Field, in decodeBDLAddr64Disp12Len8Operand()
283 uint64_t Address, in decodeBDLAddr64Disp12Len8Operand()
290 DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size, in getInstruction()
292 uint64_t Address, in getInstruction()
319 uint64_t Inst = 0; in getInstruction()
320 for (uint64_t I = 0; I < Size; ++I) in getInstruction()