dis-asm.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. /* Interface between the opcode library and its callers.
  2. Copyright (C) 1999-2022 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street - Fifth Floor,
  14. Boston, MA 02110-1301, USA.
  15. Written by Cygnus Support, 1993.
  16. The opcode library (libopcodes.a) provides instruction decoders for
  17. a large variety of instruction sets, callable with an identical
  18. interface, for making instruction-processing programs more independent
  19. of the instruction set being processed. */
  20. #ifndef DIS_ASM_H
  21. #define DIS_ASM_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include "bfd.h"
  28. enum dis_insn_type
  29. {
  30. dis_noninsn, /* Not a valid instruction. */
  31. dis_nonbranch, /* Not a branch instruction. */
  32. dis_branch, /* Unconditional branch. */
  33. dis_condbranch, /* Conditional branch. */
  34. dis_jsr, /* Jump to subroutine. */
  35. dis_condjsr, /* Conditional jump to subroutine. */
  36. dis_dref, /* Data reference instruction. */
  37. dis_dref2 /* Two data references in instruction. */
  38. };
  39. /* When printing styled disassembler output, this describes what style
  40. should be used. */
  41. enum disassembler_style
  42. {
  43. /* This is the default style, use this for any additional syntax
  44. (e.g. commas between operands, brackets, etc), or just as a default if
  45. no other style seems appropriate. */
  46. dis_style_text,
  47. /* Use this for all instruction mnemonics, or aliases for mnemonics.
  48. These should be things that correspond to real machine
  49. instructions. */
  50. dis_style_mnemonic,
  51. /* For things that aren't real machine instructions, but rather
  52. assembler directives, e.g. .byte, etc. */
  53. dis_style_assembler_directive,
  54. /* Use this for any register names. This may or may-not include any
  55. register prefix, e.g. '$', '%', at the discretion of the target,
  56. though within each target the choice to include prefixes for not
  57. should be kept consistent. If the prefix is not printed with this
  58. style, then dis_style_text should be used. */
  59. dis_style_register,
  60. /* Use this for any constant values used within instructions or
  61. directives, unless the value is an absolute address, or an offset
  62. that will be added to an address (no matter where the address comes
  63. from) before use. This style may, or may-not be used for any
  64. prefix to the immediate value, e.g. '$', at the discretion of the
  65. target, though within each target the choice to include these
  66. prefixes should be kept consistent. */
  67. dis_style_immediate,
  68. /* The style for the numerical representation of an absolute address.
  69. Anything that is an address offset should use the immediate style.
  70. This style may, or may-not be used for any prefix to the immediate
  71. value, e.g. '$', at the discretion of the target, though within
  72. each target the choice to include these prefixes should be kept
  73. consistent. */
  74. dis_style_address,
  75. /* The style for any constant value within an instruction or directive
  76. that represents an offset that will be added to an address before
  77. use. This style may, or may-not be used for any prefix to the
  78. immediate value, e.g. '$', at the discretion of the target, though
  79. within each target the choice to include these prefixes should be
  80. kept consistent. */
  81. dis_style_address_offset,
  82. /* The style for a symbol's name. The numerical address of a symbol
  83. should use the address style above, this style is reserved for the
  84. name. */
  85. dis_style_symbol,
  86. /* The start of a comment that runs to the end of the line. Anything
  87. printed after a comment start might be styled differently,
  88. e.g. everything might be styled as a comment, regardless of the
  89. actual style used. The disassembler itself should not try to adjust
  90. the style emitted for comment content, e.g. an address emitted within
  91. a comment should still be given dis_style_address, in this way it is
  92. up to the user of the disassembler to decide how comments should be
  93. styled. */
  94. dis_style_comment_start
  95. };
  96. typedef int (*fprintf_ftype) (void *, const char*, ...) ATTRIBUTE_FPTR_PRINTF_2;
  97. typedef int (*fprintf_styled_ftype) (void *, enum disassembler_style, const char*, ...) ATTRIBUTE_FPTR_PRINTF_3;
  98. /* This struct is passed into the instruction decoding routine,
  99. and is passed back out into each callback. The various fields are used
  100. for conveying information from your main routine into your callbacks,
  101. for passing information into the instruction decoders (such as the
  102. addresses of the callback functions), or for passing information
  103. back from the instruction decoders to their callers.
  104. It must be initialized before it is first passed; this can be done
  105. by hand, or using one of the initialization macros below. */
  106. typedef struct disassemble_info
  107. {
  108. fprintf_ftype fprintf_func;
  109. fprintf_styled_ftype fprintf_styled_func;
  110. void *stream;
  111. void *application_data;
  112. /* Target description. We could replace this with a pointer to the bfd,
  113. but that would require one. There currently isn't any such requirement
  114. so to avoid introducing one we record these explicitly. */
  115. /* The bfd_flavour. This can be bfd_target_unknown_flavour. */
  116. enum bfd_flavour flavour;
  117. /* The bfd_arch value. */
  118. enum bfd_architecture arch;
  119. /* The bfd_mach value. */
  120. unsigned long mach;
  121. /* Endianness (for bi-endian cpus). Mono-endian cpus can ignore this. */
  122. enum bfd_endian endian;
  123. /* Endianness of code, for mixed-endian situations such as ARM BE8. */
  124. enum bfd_endian endian_code;
  125. /* Some targets need information about the current section to accurately
  126. display insns. If this is NULL, the target disassembler function
  127. will have to make its best guess. */
  128. asection *section;
  129. /* An array of pointers to symbols either at the location being disassembled
  130. or at the start of the function being disassembled. The array is sorted
  131. so that the first symbol is intended to be the one used. The others are
  132. present for any misc. purposes. This is not set reliably, but if it is
  133. not NULL, it is correct. */
  134. asymbol **symbols;
  135. /* Number of symbols in array. */
  136. int num_symbols;
  137. /* Symbol table provided for targets that want to look at it. This is
  138. used on Arm to find mapping symbols and determine Arm/Thumb code. */
  139. asymbol **symtab;
  140. int symtab_pos;
  141. int symtab_size;
  142. /* For use by the disassembler.
  143. The top 16 bits are reserved for public use (and are documented here).
  144. The bottom 16 bits are for the internal use of the disassembler. */
  145. unsigned long flags;
  146. /* Set if the disassembler has determined that there are one or more
  147. relocations associated with the instruction being disassembled. */
  148. #define INSN_HAS_RELOC (1u << 31)
  149. /* Set if the user has requested the disassembly of data as well as code. */
  150. #define DISASSEMBLE_DATA (1u << 30)
  151. /* Set if the user has specifically set the machine type encoded in the
  152. mach field of this structure. */
  153. #define USER_SPECIFIED_MACHINE_TYPE (1u << 29)
  154. /* Set if the user has requested wide output. */
  155. #define WIDE_OUTPUT (1u << 28)
  156. /* Dynamic relocations, if they have been loaded. */
  157. arelent **dynrelbuf;
  158. long dynrelcount;
  159. /* Use internally by the target specific disassembly code. */
  160. void *private_data;
  161. /* Function used to get bytes to disassemble. MEMADDR is the
  162. address of the stuff to be disassembled, MYADDR is the address to
  163. put the bytes in, and LENGTH is the number of bytes to read.
  164. INFO is a pointer to this struct.
  165. Returns an errno value or 0 for success. */
  166. int (*read_memory_func)
  167. (bfd_vma memaddr, bfd_byte *myaddr, unsigned int length,
  168. struct disassemble_info *dinfo);
  169. /* Function which should be called if we get an error that we can't
  170. recover from. STATUS is the errno value from read_memory_func and
  171. MEMADDR is the address that we were trying to read. INFO is a
  172. pointer to this struct. */
  173. void (*memory_error_func)
  174. (int status, bfd_vma memaddr, struct disassemble_info *dinfo);
  175. /* Function called to print ADDR. */
  176. void (*print_address_func)
  177. (bfd_vma addr, struct disassemble_info *dinfo);
  178. /* Function called to determine if there is a symbol at the given ADDR.
  179. If there is, the function returns 1, otherwise it returns 0.
  180. This is used by ports which support an overlay manager where
  181. the overlay number is held in the top part of an address. In
  182. some circumstances we want to include the overlay number in the
  183. address, (normally because there is a symbol associated with
  184. that address), but sometimes we want to mask out the overlay bits. */
  185. asymbol * (*symbol_at_address_func)
  186. (bfd_vma addr, struct disassemble_info *dinfo);
  187. /* Function called to check if a SYMBOL is can be displayed to the user.
  188. This is used by some ports that want to hide special symbols when
  189. displaying debugging outout. */
  190. bool (*symbol_is_valid)
  191. (asymbol *, struct disassemble_info *dinfo);
  192. /* These are for buffer_read_memory. */
  193. bfd_byte *buffer;
  194. bfd_vma buffer_vma;
  195. size_t buffer_length;
  196. /* This variable may be set by the instruction decoder. It suggests
  197. the number of bytes objdump should display on a single line. If
  198. the instruction decoder sets this, it should always set it to
  199. the same value in order to get reasonable looking output. */
  200. int bytes_per_line;
  201. /* The next two variables control the way objdump displays the raw data. */
  202. /* For example, if bytes_per_line is 8 and bytes_per_chunk is 4, the */
  203. /* output will look like this:
  204. 00: 00000000 00000000
  205. with the chunks displayed according to "display_endian". */
  206. int bytes_per_chunk;
  207. enum bfd_endian display_endian;
  208. /* Number of octets per incremented target address
  209. Normally one, but some DSPs have byte sizes of 16 or 32 bits. */
  210. unsigned int octets_per_byte;
  211. /* The number of zeroes we want to see at the end of a section before we
  212. start skipping them. */
  213. unsigned int skip_zeroes;
  214. /* The number of zeroes to skip at the end of a section. If the number
  215. of zeroes at the end is between SKIP_ZEROES_AT_END and SKIP_ZEROES,
  216. they will be disassembled. If there are fewer than
  217. SKIP_ZEROES_AT_END, they will be skipped. This is a heuristic
  218. attempt to avoid disassembling zeroes inserted by section
  219. alignment. */
  220. unsigned int skip_zeroes_at_end;
  221. /* Whether the disassembler always needs the relocations. */
  222. bool disassembler_needs_relocs;
  223. /* Results from instruction decoders. Not all decoders yet support
  224. this information. This info is set each time an instruction is
  225. decoded, and is only valid for the last such instruction.
  226. To determine whether this decoder supports this information, set
  227. insn_info_valid to 0, decode an instruction, then check it. */
  228. char insn_info_valid; /* Branch info has been set. */
  229. char branch_delay_insns; /* How many sequential insn's will run before
  230. a branch takes effect. (0 = normal) */
  231. char data_size; /* Size of data reference in insn, in bytes */
  232. enum dis_insn_type insn_type; /* Type of instruction */
  233. bfd_vma target; /* Target address of branch or dref, if known;
  234. zero if unknown. */
  235. bfd_vma target2; /* Second target address for dref2 */
  236. /* Command line options specific to the target disassembler. */
  237. const char *disassembler_options;
  238. /* If non-zero then try not disassemble beyond this address, even if
  239. there are values left in the buffer. This address is the address
  240. of the nearest symbol forwards from the start of the disassembly,
  241. and it is assumed that it lies on the boundary between instructions.
  242. If an instruction spans this address then this is an error in the
  243. file being disassembled. */
  244. bfd_vma stop_vma;
  245. /* The end range of the current range being disassembled. This is required
  246. in order to notify the disassembler when it's currently handling a
  247. different range than it was before. This prevent unsafe optimizations when
  248. disassembling such as the way mapping symbols are found on AArch64. */
  249. bfd_vma stop_offset;
  250. /* Set to true if the disassembler applied styling to the output,
  251. otherwise, set to false. */
  252. bool created_styled_output;
  253. } disassemble_info;
  254. /* This struct is used to pass information about valid disassembler
  255. option arguments from the target to the generic GDB functions
  256. that set and display them. */
  257. typedef struct
  258. {
  259. /* Option argument name to use in descriptions. */
  260. const char *name;
  261. /* Vector of acceptable option argument values, NULL-terminated. */
  262. const char **values;
  263. } disasm_option_arg_t;
  264. /* This struct is used to pass information about valid disassembler
  265. options, their descriptions and arguments from the target to the
  266. generic GDB functions that set and display them. Options are
  267. defined by tuples of vector entries at each index. */
  268. typedef struct
  269. {
  270. /* Vector of option names, NULL-terminated. */
  271. const char **name;
  272. /* Vector of option descriptions or NULL if none to be shown. */
  273. const char **description;
  274. /* Vector of option argument information pointers or NULL if no
  275. option accepts an argument. NULL entries denote individual
  276. options that accept no argument. */
  277. const disasm_option_arg_t **arg;
  278. } disasm_options_t;
  279. /* This struct is used to pass information about valid disassembler
  280. options and arguments from the target to the generic GDB functions
  281. that set and display them. */
  282. typedef struct
  283. {
  284. /* Valid disassembler options. Individual options that support
  285. an argument will refer to entries in the ARGS vector. */
  286. disasm_options_t options;
  287. /* Vector of acceptable option arguments, NULL-terminated. This
  288. collects all possible option argument choices, some of which
  289. may be shared by different options from the OPTIONS member. */
  290. disasm_option_arg_t *args;
  291. } disasm_options_and_args_t;
  292. /* Standard disassemblers. Disassemble one instruction at the given
  293. target address. Return number of octets processed. */
  294. typedef int (*disassembler_ftype) (bfd_vma, disassemble_info *);
  295. /* Disassemblers used out side of opcodes library. */
  296. extern int print_insn_m32c (bfd_vma, disassemble_info *);
  297. extern int print_insn_mep (bfd_vma, disassemble_info *);
  298. extern int print_insn_s12z (bfd_vma, disassemble_info *);
  299. extern int print_insn_sh (bfd_vma, disassemble_info *);
  300. extern int print_insn_sparc (bfd_vma, disassemble_info *);
  301. extern int print_insn_rx (bfd_vma, disassemble_info *);
  302. extern int print_insn_rl78 (bfd_vma, disassemble_info *);
  303. extern int print_insn_rl78_g10 (bfd_vma, disassemble_info *);
  304. extern int print_insn_rl78_g13 (bfd_vma, disassemble_info *);
  305. extern int print_insn_rl78_g14 (bfd_vma, disassemble_info *);
  306. extern disassembler_ftype arc_get_disassembler (bfd *);
  307. extern disassembler_ftype cris_get_disassembler (bfd *);
  308. extern void print_aarch64_disassembler_options (FILE *);
  309. extern void print_i386_disassembler_options (FILE *);
  310. extern void print_mips_disassembler_options (FILE *);
  311. extern void print_nfp_disassembler_options (FILE *);
  312. extern void print_ppc_disassembler_options (FILE *);
  313. extern void print_riscv_disassembler_options (FILE *);
  314. extern void print_arm_disassembler_options (FILE *);
  315. extern void print_arc_disassembler_options (FILE *);
  316. extern void print_s390_disassembler_options (FILE *);
  317. extern void print_wasm32_disassembler_options (FILE *);
  318. extern void print_loongarch_disassembler_options (FILE *);
  319. extern bool aarch64_symbol_is_valid (asymbol *, struct disassemble_info *);
  320. extern bool arm_symbol_is_valid (asymbol *, struct disassemble_info *);
  321. extern bool csky_symbol_is_valid (asymbol *, struct disassemble_info *);
  322. extern bool riscv_symbol_is_valid (asymbol *, struct disassemble_info *);
  323. extern void disassemble_init_powerpc (struct disassemble_info *);
  324. extern void disassemble_init_s390 (struct disassemble_info *);
  325. extern void disassemble_init_wasm32 (struct disassemble_info *);
  326. extern void disassemble_init_nds32 (struct disassemble_info *);
  327. extern const disasm_options_and_args_t *disassembler_options_arc (void);
  328. extern const disasm_options_and_args_t *disassembler_options_arm (void);
  329. extern const disasm_options_and_args_t *disassembler_options_mips (void);
  330. extern const disasm_options_and_args_t *disassembler_options_powerpc (void);
  331. extern const disasm_options_and_args_t *disassembler_options_riscv (void);
  332. extern const disasm_options_and_args_t *disassembler_options_s390 (void);
  333. /* Fetch the disassembler for a given architecture ARC, endianess (big
  334. endian if BIG is true), bfd_mach value MACH, and ABFD, if that support
  335. is available. ABFD may be NULL. */
  336. extern disassembler_ftype disassembler (enum bfd_architecture arc,
  337. bool big, unsigned long mach,
  338. bfd *abfd);
  339. /* Amend the disassemble_info structure as necessary for the target architecture.
  340. Should only be called after initialising the info->arch field. */
  341. extern void disassemble_init_for_target (struct disassemble_info *);
  342. /* Tidy any memory allocated by targets, such as info->private_data. */
  343. extern void disassemble_free_target (struct disassemble_info *);
  344. /* Set the basic disassembler print functions. */
  345. extern void disassemble_set_printf (struct disassemble_info *, void *,
  346. fprintf_ftype, fprintf_styled_ftype);
  347. /* Document any target specific options available from the disassembler. */
  348. extern void disassembler_usage (FILE *);
  349. /* Remove whitespace and consecutive commas. */
  350. extern char *remove_whitespace_and_extra_commas (char *);
  351. /* Like STRCMP, but treat ',' the same as '\0' so that we match
  352. strings like "foobar" against "foobar,xxyyzz,...". */
  353. extern int disassembler_options_cmp (const char *, const char *);
  354. /* A helper function for FOR_EACH_DISASSEMBLER_OPTION. */
  355. static inline const char *
  356. next_disassembler_option (const char *options)
  357. {
  358. const char *opt = strchr (options, ',');
  359. if (opt != NULL)
  360. opt++;
  361. return opt;
  362. }
  363. /* A macro for iterating over each comma separated option in OPTIONS. */
  364. #define FOR_EACH_DISASSEMBLER_OPTION(OPT, OPTIONS) \
  365. for ((OPT) = (OPTIONS); \
  366. (OPT) != NULL; \
  367. (OPT) = next_disassembler_option (OPT))
  368. /* This block of definitions is for particular callers who read instructions
  369. into a buffer before calling the instruction decoder. */
  370. /* Here is a function which callers may wish to use for read_memory_func.
  371. It gets bytes from a buffer. */
  372. extern int buffer_read_memory
  373. (bfd_vma, bfd_byte *, unsigned int, struct disassemble_info *);
  374. /* This function goes with buffer_read_memory.
  375. It prints a message using info->fprintf_func and info->stream. */
  376. extern void perror_memory (int, bfd_vma, struct disassemble_info *);
  377. /* Just print the address in hex. This is included for completeness even
  378. though both GDB and objdump provide their own (to print symbolic
  379. addresses). */
  380. extern void generic_print_address
  381. (bfd_vma, struct disassemble_info *);
  382. /* Always NULL. */
  383. extern asymbol *generic_symbol_at_address
  384. (bfd_vma, struct disassemble_info *);
  385. /* Always true. */
  386. extern bool generic_symbol_is_valid
  387. (asymbol *, struct disassemble_info *);
  388. /* Method to initialize a disassemble_info struct. This should be
  389. called by all applications creating such a struct. */
  390. extern void init_disassemble_info (struct disassemble_info *dinfo, void *stream,
  391. fprintf_ftype fprintf_func,
  392. fprintf_styled_ftype fprintf_styled_func);
  393. /* For compatibility with existing code. */
  394. #define INIT_DISASSEMBLE_INFO(INFO, STREAM, FPRINTF_FUNC, FPRINTF_STYLED_FUNC) \
  395. init_disassemble_info (&(INFO), (STREAM), (fprintf_ftype) (FPRINTF_FUNC), \
  396. (fprintf_styled_ftype) (FPRINTF_STYLED_FUNC))
  397. #ifdef __cplusplus
  398. }
  399. #endif
  400. #endif /* ! defined (DIS_ASM_H) */