Lines Matching refs:Address
42 ArrayRef<uint8_t> Bytes, uint64_t Address,
68 uint64_t Address, in DecodeGPR8RegisterClass() argument
79 uint64_t Address, in DecodeLD8RegisterClass() argument
89 static DecodeStatus decodeFIOARr(MCInst &Inst, unsigned Insn, uint64_t Address,
92 static DecodeStatus decodeFIORdA(MCInst &Inst, unsigned Insn, uint64_t Address,
95 static DecodeStatus decodeFIOBIT(MCInst &Inst, unsigned Insn, uint64_t Address,
99 uint64_t Address,
102 static DecodeStatus decodeFRd(MCInst &Inst, unsigned Insn, uint64_t Address,
105 static DecodeStatus decodeFLPMX(MCInst &Inst, unsigned Insn, uint64_t Address,
109 uint64_t Address,
113 uint64_t Address,
116 static DecodeStatus decodeFWRdK(MCInst &Inst, unsigned Insn, uint64_t Address,
120 uint64_t Address,
123 static DecodeStatus decodeMemri(MCInst &Inst, unsigned Insn, uint64_t Address,
127 uint64_t Address,
132 static DecodeStatus decodeFIOARr(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIOARr() argument
139 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) == in decodeFIOARr()
145 static DecodeStatus decodeFIORdA(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIORdA() argument
151 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) == in decodeFIORdA()
158 static DecodeStatus decodeFIOBIT(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIOBIT() argument
168 uint64_t Address, in decodeCallTarget() argument
176 static DecodeStatus decodeFRd(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFRd() argument
179 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFRd()
185 static DecodeStatus decodeFLPMX(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFLPMX() argument
187 if (decodeFRd(Inst, Insn, Address, Decoder) == MCDisassembler::Fail) in decodeFLPMX()
194 uint64_t Address, in decodeFFMULRdRr() argument
198 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFFMULRdRr()
201 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) == in decodeFFMULRdRr()
208 uint64_t Address, in decodeFMOVWRdRr() argument
212 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) == in decodeFMOVWRdRr()
215 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFMOVWRdRr()
221 static DecodeStatus decodeFWRdK(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFWRdK() argument
227 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFWRdK()
230 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFWRdK()
238 uint64_t Address, in decodeFMUL2RdRr() argument
242 if (DecodeGPR8RegisterClass(Inst, rd, Address, Decoder) == in decodeFMUL2RdRr()
245 if (DecodeGPR8RegisterClass(Inst, rr, Address, Decoder) == in decodeFMUL2RdRr()
251 static DecodeStatus decodeMemri(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeMemri() argument
269 uint64_t Address, in decodeLoadStore() argument
373 static DecodeStatus readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction16() argument
386 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction32() argument
415 uint64_t Address, in getInstruction() argument
423 Result = readInstruction16(Bytes, Address, Size, Insn); in getInstruction()
429 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address, in getInstruction()
436 Result = decodeLoadStore(Instr, Insn, Address, this); in getInstruction()
443 Result = readInstruction32(Bytes, Address, Size, Insn); in getInstruction()
448 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address, in getInstruction()
459 typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address,