Lines Matching defs:Address

42                               ArrayRef<uint8_t> Bytes, uint64_t Address,
68 uint64_t Address,
79 uint64_t Address,
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,
126 static DecodeStatus decodeFBRk(MCInst &Inst, unsigned Insn, uint64_t Address,
130 uint64_t Address,
134 uint64_t Address,
139 static DecodeStatus decodeFIOARr(MCInst &Inst, unsigned Insn, uint64_t Address,
146 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) ==
152 static DecodeStatus decodeFIORdA(MCInst &Inst, unsigned Insn, uint64_t Address,
158 if (DecodeGPR8RegisterClass(Inst, reg, Address, Decoder) ==
165 static DecodeStatus decodeFIOBIT(MCInst &Inst, unsigned Insn, uint64_t Address,
175 uint64_t Address,
183 static DecodeStatus decodeFRd(MCInst &Inst, unsigned Insn, uint64_t Address,
186 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) ==
192 static DecodeStatus decodeFLPMX(MCInst &Inst, unsigned Insn, uint64_t Address,
194 if (decodeFRd(Inst, Insn, Address, Decoder) == MCDisassembler::Fail)
201 uint64_t Address,
205 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) ==
208 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) ==
215 uint64_t Address,
219 if (DecodeGPR8RegisterClass(Inst, r, Address, Decoder) ==
222 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) ==
228 static DecodeStatus decodeFWRdK(MCInst &Inst, unsigned Insn, uint64_t Address,
234 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) ==
237 if (DecodeGPR8RegisterClass(Inst, d, Address, Decoder) ==
245 uint64_t Address,
249 if (DecodeGPR8RegisterClass(Inst, rd, Address, Decoder) ==
252 if (DecodeGPR8RegisterClass(Inst, rr, Address, Decoder) ==
258 static DecodeStatus decodeMemri(MCInst &Inst, unsigned Insn, uint64_t Address,
275 static DecodeStatus decodeFBRk(MCInst &Inst, unsigned Insn, uint64_t Address,
295 uint64_t Address,
329 uint64_t Address,
433 static DecodeStatus readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address,
446 static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
475 uint64_t Address,
483 Result = readInstruction16(Bytes, Address, Size, Insn);
490 Result = decodeInstruction(DecoderTableAVRTiny16, Instr, Insn, Address,
497 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address,
504 Result = decodeLoadStore(Instr, Insn, Address, this);
511 Result = readInstruction32(Bytes, Address, Size, Insn);
516 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn, Address,
527 typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address,