Home | History | Annotate | Download | only in qemu

Lines Matching refs:info

282 /* Make sure that bytes from INFO->PRIVATE_DATA->BUFFER (inclusive)
285 #define FETCH_DATA(info, addr) \
286 ((addr) <= ((struct dis_private *) (info->private_data))->max_fetched \
287 ? 1 : fetch_data ((info), (addr)))
290 fetch_data (struct disassemble_info *info, bfd_byte *addr)
293 struct dis_private *priv = (struct dis_private *) info->private_data;
297 status = (*info->read_memory_func) (start,
300 info);
310 (*info->memory_error_func) (status, start, info);
3511 print_insn_i386 (bfd_vma pc, disassemble_info *info)
3515 return print_insn (pc, info);
3519 print_insn (bfd_vma pc, disassemble_info *info)
3532 if (info->mach == bfd_mach_x86_64_intel_syntax
3533 || info->mach == bfd_mach_x86_64)
3539 intel_syntax = (info->mach == bfd_mach_i386_i386_intel_syntax
3540 || info->mach == bfd_mach_x86_64_intel_syntax);
3542 if (info->mach == bfd_mach_i386_i386
3543 || info->mach == bfd_mach_x86_64
3544 || info->mach == bfd_mach_i386_i386_intel_syntax
3545 || info->mach == bfd_mach_x86_64_intel_syntax)
3547 else if (info->mach == bfd_mach_i386_i8086)
3552 for (p = info->disassembler_options; p != NULL; )
3640 info->bytes_per_line = 7;
3642 info->private_data = &priv;
3653 the_info = info;
3669 (*info->fprintf_func) (info->stream, "%s", name);
3673 (*info->fprintf_func) (info->stream, ".byte 0x%x",
3689 FETCH_DATA (info, codep + 1);
3703 (*info->fprintf_func) (info->stream, "%s", name);
3711 FETCH_DATA (info, codep + 2);
3722 FETCH_DATA (info, codep + 2);
3807 FETCH_DATA (info, codep + 1);
3884 (*info->fprintf_func) (info->stream, "%s", name);
3893 (*info->fprintf_func) (info->stream, "%s ", name);
3900 (*info->fprintf_func) (info->stream, "%s", obuf);
3932 (*info->fprintf_func) (info->stream, ",");
3934 (*info->print_address_func) ((bfd_vma) op_address[op_index[i]], info);
3936 (*info->fprintf_func) (info->stream, "%s", op_txt[i]);
3943 (*info->fprintf_func) (info->stream, " # ");
3944 (*info->print_address_func) ((bfd_vma) (start_pc + codep - start_codep
3945 + op_address[op_index[i]]), info);