Home | History | Annotate | Download | only in qemu

Lines Matching full:info

296      INFO is a pointer to this struct.
300 struct disassemble_info *info);
304 MEMADDR is the address that we were trying to read. INFO is a
307 (int status, bfd_vma memaddr, struct disassemble_info *info);
311 (bfd_vma addr, struct disassemble_info *info);
321 (bfd_vma addr, struct disassemble_info * info);
343 this information. This info is set each time an instruction is
349 char insn_info_valid; /* Branch info has been set. */
422 It prints a message using info->fprintf_func and info->stream. */
436 #define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC) \
437 (INFO).flavour = bfd_target_unknown_flavour, \
438 (INFO).arch = bfd_arch_unknown, \
439 (INFO).mach = 0, \
440 (INFO).endian = BFD_ENDIAN_UNKNOWN, \
441 INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC)
448 #define INIT_DISASSEMBLE_INFO_NO_ARCH(INFO, STREAM, FPRINTF_FUNC) \
449 (INFO).fprintf_func = (FPRINTF_FUNC), \
450 (INFO).stream = (STREAM), \
451 (INFO).symbols = NULL, \
452 (INFO).num_symbols = 0, \
453 (INFO).private_data = NULL, \
454 (INFO).buffer = NULL, \
455 (INFO).buffer_vma = 0, \
456 (INFO).buffer_length = 0, \
457 (INFO).read_memory_func = buffer_read_memory, \
458 (INFO).memory_error_func = perror_memory, \
459 (INFO).print_address_func = generic_print_address, \
460 (INFO).symbol_at_address_func = generic_symbol_at_address, \
461 (INFO).flags = 0, \
462 (INFO).bytes_per_line = 0, \
463 (INFO).bytes_per_chunk = 0, \
464 (INFO).display_endian = BFD_ENDIAN_UNKNOWN, \
465 (INFO).disassembler_options = NULL, \
466 (INFO).insn_info_valid = 0