Lines Matching refs:Address
37 ArrayRef<uint8_t> Bytes, uint64_t Address,
111 uint64_t Address, in DecodeIntRegsRegisterClass() argument
122 uint64_t Address, in DecodeI64RegsRegisterClass() argument
134 uint64_t Address, in DecodeFPRegsRegisterClass() argument
146 uint64_t Address, in DecodeDFPRegsRegisterClass() argument
158 uint64_t Address, in DecodeQFPRegsRegisterClass() argument
171 uint64_t Address, in DecodeFCCRegsRegisterClass() argument
180 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address,
182 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address,
184 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address,
186 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address,
189 uint64_t Address, const void *Decoder);
191 uint64_t Address, const void *Decoder);
193 uint64_t Address, const void *Decoder);
195 uint64_t Address, const void *Decoder);
197 uint64_t Address, const void *Decoder);
199 uint64_t Address, const void *Decoder);
200 static DecodeStatus DecodeJMPL(MCInst &Inst, unsigned insn, uint64_t Address,
202 static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
204 static DecodeStatus DecodeSWAP(MCInst &Inst, unsigned insn, uint64_t Address,
210 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction32() argument
227 uint64_t Address, in getInstruction() argument
232 DecodeStatus Result = readInstruction32(Bytes, Address, Size, Insn); in getInstruction()
239 decodeInstruction(DecoderTableSparc32, Instr, Insn, Address, this, STI); in getInstruction()
250 typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address,
253 static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, in DecodeMem() argument
268 status = DecodeRD(MI, rd, Address, Decoder); in DecodeMem()
274 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); in DecodeMem()
282 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); in DecodeMem()
288 status = DecodeRD(MI, rd, Address, Decoder); in DecodeMem()
295 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadInt() argument
297 return DecodeMem(Inst, insn, Address, Decoder, true, in DecodeLoadInt()
301 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadFP() argument
303 return DecodeMem(Inst, insn, Address, Decoder, true, in DecodeLoadFP()
307 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadDFP() argument
309 return DecodeMem(Inst, insn, Address, Decoder, true, in DecodeLoadDFP()
313 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeLoadQFP() argument
315 return DecodeMem(Inst, insn, Address, Decoder, true, in DecodeLoadQFP()
320 uint64_t Address, const void *Decoder) { in DecodeStoreInt() argument
321 return DecodeMem(Inst, insn, Address, Decoder, false, in DecodeStoreInt()
325 static DecodeStatus DecodeStoreFP(MCInst &Inst, unsigned insn, uint64_t Address, in DecodeStoreFP() argument
327 return DecodeMem(Inst, insn, Address, Decoder, false, in DecodeStoreFP()
332 uint64_t Address, const void *Decoder) { in DecodeStoreDFP() argument
333 return DecodeMem(Inst, insn, Address, Decoder, false, in DecodeStoreDFP()
338 uint64_t Address, const void *Decoder) { in DecodeStoreQFP() argument
339 return DecodeMem(Inst, insn, Address, Decoder, false, in DecodeStoreQFP()
344 uint64_t Address, uint64_t Offset, in tryAddingSymbolicOperand() argument
348 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, in tryAddingSymbolicOperand()
353 uint64_t Address, const void *Decoder) { in DecodeCall() argument
356 if (!tryAddingSymbolicOperand(tgt+Address, false, Address, in DecodeCall()
363 uint64_t Address, const void *Decoder) { in DecodeSIMM13() argument
369 static DecodeStatus DecodeJMPL(MCInst &MI, unsigned insn, uint64_t Address, in DecodeJMPL() argument
383 DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder); in DecodeJMPL()
388 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); in DecodeJMPL()
396 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); in DecodeJMPL()
403 static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address, in DecodeReturn() argument
416 DecodeStatus status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); in DecodeReturn()
424 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); in DecodeReturn()
431 static DecodeStatus DecodeSWAP(MCInst &MI, unsigned insn, uint64_t Address, in DecodeSWAP() argument
445 DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder); in DecodeSWAP()
450 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); in DecodeSWAP()
458 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); in DecodeSWAP()