Home | History | Annotate | Download | only in qemu

Lines Matching refs:INFO

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