Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:Address

44                               uint64_t address,
118 uint64_t Address,
129 uint64_t Address,
141 uint64_t Address,
153 uint64_t Address,
165 uint64_t Address,
178 uint64_t Address,
187 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address,
189 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address,
191 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address,
193 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address,
196 uint64_t Address, const void *Decoder);
198 uint64_t Address, const void *Decoder);
200 uint64_t Address, const void *Decoder);
202 uint64_t Address, const void *Decoder);
204 uint64_t Address, const void *Decoder);
206 uint64_t Address, const void *Decoder);
207 static DecodeStatus DecodeJMPL(MCInst &Inst, unsigned insn, uint64_t Address,
209 static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
211 static DecodeStatus DecodeSWAP(MCInst &Inst, unsigned insn, uint64_t Address,
219 uint64_t address,
225 if (region.readBytes(address, 4, Bytes) == -1) {
244 uint64_t Address,
249 DecodeStatus Result = readInstruction32(Region, Address, Size, Insn);
255 Result = decodeInstruction(DecoderTableSparc32, instr, Insn, Address,
267 typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address,
270 static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address,
285 status = DecodeRD(MI, rd, Address, Decoder);
291 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder);
299 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder);
305 status = DecodeRD(MI, rd, Address, Decoder);
312 static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address,
314 return DecodeMem(Inst, insn, Address, Decoder, true,
318 static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address,
320 return DecodeMem(Inst, insn, Address, Decoder, true,
324 static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address,
326 return DecodeMem(Inst, insn, Address, Decoder, true,
330 static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address,
332 return DecodeMem(Inst, insn, Address, Decoder, true,
337 uint64_t Address, const void *Decoder) {
338 return DecodeMem(Inst, insn, Address, Decoder, false,
342 static DecodeStatus DecodeStoreFP(MCInst &Inst, unsigned insn, uint64_t Address,
344 return DecodeMem(Inst, insn, Address, Decoder, false,
349 uint64_t Address, const void *Decoder) {
350 return DecodeMem(Inst, insn, Address, Decoder, false,
355 uint64_t Address, const void *Decoder) {
356 return DecodeMem(Inst, insn, Address, Decoder, false,
361 uint64_t Address, uint64_t Offset,
365 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
370 uint64_t Address, const void *Decoder) {
373 if (!tryAddingSymbolicOperand(tgt+Address, false, Address,
380 uint64_t Address, const void *Decoder) {
386 static DecodeStatus DecodeJMPL(MCInst &MI, unsigned insn, uint64_t Address,
400 DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder);
405 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder);
413 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder);
420 static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
433 DecodeStatus status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder);
441 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder);
448 static DecodeStatus DecodeSWAP(MCInst &MI, unsigned insn, uint64_t Address,
462 Address, Decoder);
467 status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder);
475 status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder);