Lines Matching refs:Address

45                               ArrayRef<uint8_t> Bytes, uint64_t Address,
71 uint64_t Address, in DecodeGPR8RegisterClass() argument
82 uint64_t Address, in DecodeLD8RegisterClass() argument
92 static DecodeStatus decodeFIOARr(MCInst &Inst, unsigned Insn, uint64_t Address,
95 static DecodeStatus decodeFIORdA(MCInst &Inst, unsigned Insn, uint64_t Address,
98 static DecodeStatus decodeFIOBIT(MCInst &Inst, unsigned Insn, uint64_t Address,
102 uint64_t Address,
105 static DecodeStatus decodeFRd(MCInst &Inst, unsigned Insn, uint64_t Address,
108 static DecodeStatus decodeFLPMX(MCInst &Inst, unsigned Insn, uint64_t Address,
112 uint64_t Address,
116 uint64_t Address,
119 static DecodeStatus decodeFWRdK(MCInst &Inst, unsigned Insn, uint64_t Address,
123 uint64_t Address,
126 static DecodeStatus decodeMemri(MCInst &Inst, unsigned Insn, uint64_t Address,
129 static DecodeStatus decodeFBRk(MCInst &Inst, unsigned Insn, uint64_t Address,
133 uint64_t Address,
137 uint64_t Address,
142 static DecodeStatus decodeFIOARr(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIOARr() argument
149 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) == in decodeFIOARr()
155 static DecodeStatus decodeFIORdA(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIORdA() argument
161 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) == in decodeFIORdA()
168 static DecodeStatus decodeFIOBIT(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFIOBIT() argument
178 uint64_t Address, in decodeCallTarget() argument
186 static DecodeStatus decodeFRd(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFRd() argument
189 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFRd()
195 static DecodeStatus decodeFLPMX(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFLPMX() argument
197 if (decodeFRd(Inst, Insn, Address, Decoder) == MCDisassembler::Fail) in decodeFLPMX()
204 uint64_t Address, in decodeFFMULRdRr() argument
208 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFFMULRdRr()
211 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) == in decodeFFMULRdRr()
218 uint64_t Address, in decodeFMOVWRdRr() argument
222 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) == in decodeFMOVWRdRr()
225 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFMOVWRdRr()
231 static DecodeStatus decodeFWRdK(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFWRdK() argument
237 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFWRdK()
240 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) == in decodeFWRdK()
248 uint64_t Address, in decodeFMUL2RdRr() argument
252 if (DecodeGPR8RegisterClass(Inst, rd, Address, Decoder) == in decodeFMUL2RdRr()
255 if (DecodeGPR8RegisterClass(Inst, rr, Address, Decoder) == in decodeFMUL2RdRr()
261 static DecodeStatus decodeMemri(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeMemri() argument
278 static DecodeStatus decodeFBRk(MCInst &Inst, unsigned Insn, uint64_t Address, in decodeFBRk() argument
298 uint64_t Address, in decodeCondBranch() argument
332 uint64_t Address, in decodeLoadStore() argument
436 static DecodeStatus readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction16() argument
449 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, in readInstruction32() argument
478 uint64_t Address, in getInstruction() argument
486 Result = readInstruction16(Bytes, Address, Size, Insn); in getInstruction()
493 Result = decodeInstruction(DecoderTableAVRTiny16, Instr, Insn, Address, in getInstruction()
500 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address, in getInstruction()
507 Result = decodeLoadStore(Instr, Insn, Address, this); in getInstruction()
514 Result = readInstruction32(Bytes, Address, Size, Insn); in getInstruction()
519 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address, in getInstruction()
530 typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address,