Coverage Report

Created: 2025-06-24 06:45

/src/binutils-gdb/opcodes/dis-init.c
Line
Count
Source
1
/* Initialize "struct disassemble_info".
2
3
   Copyright (C) 2003-2025 Free Software Foundation, Inc.
4
5
   This file is part of the GNU opcodes library.
6
7
   This library is free software; you can redistribute it and/or modify
8
   it under the terms of the GNU General Public License as published by
9
   the Free Software Foundation; either version 3, or (at your option)
10
   any later version.
11
12
   It is distributed in the hope that it will be useful, but WITHOUT
13
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15
   License for more details.
16
17
   You should have received a copy of the GNU General Public License
18
   along with this program; if not, write to the Free Software
19
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20
   02110-1301, USA.  */
21
22
#include "sysdep.h"
23
#include "dis-asm.h"
24
#include "bfd.h"
25
26
void
27
init_disassemble_info (struct disassemble_info *info, void *stream,
28
           fprintf_ftype fprintf_func,
29
           fprintf_styled_ftype fprintf_styled_func)
30
126k
{
31
126k
  memset (info, 0, sizeof (*info));
32
33
126k
  info->flavour = bfd_target_unknown_flavour;
34
126k
  info->arch = bfd_arch_unknown;
35
126k
  info->endian = BFD_ENDIAN_UNKNOWN;
36
126k
  info->endian_code = info->endian;
37
126k
  info->octets_per_byte = 1;
38
126k
  info->fprintf_func = fprintf_func;
39
126k
  info->fprintf_styled_func = fprintf_styled_func;
40
126k
  info->stream = stream;
41
126k
  info->read_memory_func = buffer_read_memory;
42
126k
  info->memory_error_func = perror_memory;
43
126k
  info->print_address_func = generic_print_address;
44
126k
  info->symbol_at_address_func = generic_symbol_at_address;
45
126k
  info->symbol_is_valid = generic_symbol_is_valid;
46
126k
  info->display_endian = BFD_ENDIAN_UNKNOWN;
47
126k
  info->created_styled_output = false;
48
126k
}
49