1 /* Opcode printing code for the WebAssembly target
2 Copyright (C) 2017-2020 Free Software Foundation, Inc.
4 This file is part of libopcodes.
6 This library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 It is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
22 #include "disassemble.h"
24 #include "safe-ctype.h"
25 #include "floatformat.h"
26 #include "libiberty.h"
28 #include "elf/internal.h"
29 #include "elf/wasm32.h"
30 #include "bfd_stdint.h"
32 /* Type names for blocks and signatures. */
33 #define BLOCK_TYPE_NONE 0x40
34 #define BLOCK_TYPE_I32 0x7f
35 #define BLOCK_TYPE_I64 0x7e
36 #define BLOCK_TYPE_F32 0x7d
37 #define BLOCK_TYPE_F64 0x7c
71 struct wasm32_private_data
73 bfd_boolean print_registers
;
74 bfd_boolean print_well_known_globals
;
76 /* Limit valid symbols to those with a given prefix. */
77 const char *section_prefix
;
83 const char *description
;
86 static const wasm32_options_t options
[] =
88 { "registers", N_("Disassemble \"register\" names") },
89 { "globals", N_("Name well-known globals") },
92 #define WASM_OPCODE(opcode, name, intype, outtype, clas, signedness) \
93 { name, wasm_ ## clas, opcode },
95 struct wasm32_opcode_s
102 #include "opcode/wasm.h"
106 /* Parse the disassembler options in OPTS and initialize INFO. */
109 parse_wasm32_disassembler_options (struct disassemble_info
*info
,
112 struct wasm32_private_data
*private = info
->private_data
;
116 if (CONST_STRNEQ (opts
, "registers"))
117 private->print_registers
= TRUE
;
118 else if (CONST_STRNEQ (opts
, "globals"))
119 private->print_well_known_globals
= TRUE
;
121 opts
= strchr (opts
, ',');
127 /* Check whether SYM is valid. Special-case absolute symbols, which
128 are unhelpful to print, and arguments to a "call" insn, which we
129 want to be in a section matching a given prefix. */
132 wasm32_symbol_is_valid (asymbol
*sym
,
133 struct disassemble_info
*info
)
135 struct wasm32_private_data
*private_data
= info
->private_data
;
140 if (strcmp(sym
->section
->name
, "*ABS*") == 0)
143 if (private_data
&& private_data
->section_prefix
!= NULL
144 && strncmp (sym
->section
->name
, private_data
->section_prefix
,
145 strlen (private_data
->section_prefix
)))
151 /* Initialize the disassembler structures for INFO. */
154 disassemble_init_wasm32 (struct disassemble_info
*info
)
156 if (info
->private_data
== NULL
)
158 static struct wasm32_private_data
private;
160 private.print_registers
= FALSE
;
161 private.print_well_known_globals
= FALSE
;
162 private.section_prefix
= NULL
;
164 info
->private_data
= &private;
167 if (info
->disassembler_options
)
169 parse_wasm32_disassembler_options (info
, info
->disassembler_options
);
171 info
->disassembler_options
= NULL
;
174 info
->symbol_is_valid
= wasm32_symbol_is_valid
;
177 /* Read an LEB128-encoded integer from INFO at address PC, reading one
178 byte at a time. Set ERROR_RETURN if no complete integer could be
179 read, LENGTH_RETURN to the number oof bytes read (including bytes
180 in incomplete numbers). SIGN means interpret the number as
181 SLEB128. Unfortunately, this is a duplicate of wasm-module.c's
182 wasm_read_leb128 (). */
185 wasm_read_leb128 (bfd_vma pc
,
186 struct disassemble_info
* info
,
187 bfd_boolean
* error_return
,
188 unsigned int * length_return
,
192 unsigned int num_read
= 0;
193 unsigned int shift
= 0;
194 unsigned char byte
= 0;
197 while (info
->read_memory_func (pc
+ num_read
, &byte
, 1, info
) == 0)
201 if (shift
< sizeof (result
) * 8)
203 result
|= ((uint64_t) (byte
& 0x7f)) << shift
;
204 if ((result
>> shift
) != (byte
& 0x7f))
209 else if ((byte
& 0x7f) != 0)
212 if ((byte
& 0x80) == 0)
215 if (sign
&& (shift
< 8 * sizeof (result
)) && (byte
& 0x40))
216 result
|= -((uint64_t) 1 << shift
);
221 if (length_return
!= NULL
)
222 *length_return
= num_read
;
223 if (error_return
!= NULL
)
224 *error_return
= status
!= 0;
229 /* Read a 32-bit IEEE float from PC using INFO, convert it to a host
230 double, and store it at VALUE. */
233 read_f32 (double *value
, bfd_vma pc
, struct disassemble_info
*info
)
237 if (info
->read_memory_func (pc
, buf
, sizeof (buf
), info
))
240 floatformat_to_double (&floatformat_ieee_single_little
, buf
,
246 /* Read a 64-bit IEEE float from PC using INFO, convert it to a host
247 double, and store it at VALUE. */
250 read_f64 (double *value
, bfd_vma pc
, struct disassemble_info
*info
)
254 if (info
->read_memory_func (pc
, buf
, sizeof (buf
), info
))
257 floatformat_to_double (&floatformat_ieee_double_little
, buf
,
263 /* Main disassembly routine. Disassemble insn at PC using INFO. */
266 print_insn_wasm32 (bfd_vma pc
, struct disassemble_info
*info
)
268 unsigned char opcode
;
269 struct wasm32_opcode_s
*op
;
271 void *stream
= info
->stream
;
272 fprintf_ftype prin
= info
->fprintf_func
;
273 struct wasm32_private_data
*private_data
= info
->private_data
;
276 unsigned int bytes_read
;
279 if (info
->read_memory_func (pc
, buffer
, 1, info
))
284 for (op
= wasm32_opcodes
; op
->name
; op
++)
285 if (op
->opcode
== opcode
)
290 prin (stream
, "\t.byte 0x%02x\n", buffer
[0]);
297 prin (stream
, "%s", op
->name
);
299 if (op
->clas
== wasm_typed
)
301 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
, FALSE
);
307 case BLOCK_TYPE_NONE
:
311 prin (stream
, "[i]");
314 prin (stream
, "[l]");
317 prin (stream
, "[f]");
320 prin (stream
, "[d]");
334 case wasm_relational
:
337 case wasm_call_import
:
342 case wasm_break_table
:
344 uint32_t target_count
, i
;
345 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
348 if (error
|| target_count
!= val
|| target_count
== (uint32_t) -1)
351 prin (stream
, " %u", target_count
);
352 for (i
= 0; i
< target_count
+ 1; i
++)
355 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
358 if (error
|| target
!= val
)
361 prin (stream
, " %u", target
);
370 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
373 if (error
|| depth
!= val
)
376 prin (stream
, " %u", depth
);
383 case wasm_constant_i32
:
384 case wasm_constant_i64
:
385 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
, TRUE
);
389 prin (stream
, " %" PRId64
, val
);
392 case wasm_constant_f32
:
396 /* This appears to be the best we can do, even though we're
397 using host doubles for WebAssembly floats. */
398 ret
= read_f32 (&fconstant
, pc
+ len
, info
);
402 prin (stream
, " %.9g", fconstant
);
406 case wasm_constant_f64
:
410 ret
= read_f64 (&fconstant
, pc
+ len
, info
);
414 prin (stream
, " %.17g", fconstant
);
420 uint32_t function_index
;
421 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
423 function_index
= val
;
424 if (error
|| function_index
!= val
)
428 private_data
->section_prefix
= ".space.function_index";
429 (*info
->print_address_func
) ((bfd_vma
) function_index
, info
);
430 private_data
->section_prefix
= NULL
;
434 case wasm_call_indirect
:
436 uint32_t type_index
, xtra_index
;
437 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
440 if (error
|| type_index
!= val
)
443 prin (stream
, " %u", type_index
);
444 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
447 if (error
|| xtra_index
!= val
)
450 prin (stream
, " %u", xtra_index
);
458 uint32_t local_index
;
459 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
462 if (error
|| local_index
!= val
)
465 prin (stream
, " %u", local_index
);
466 if (strcmp (op
->name
+ 4, "local") == 0)
468 static const char *locals
[] =
470 "$dpc", "$sp1", "$r0", "$r1", "$rpc", "$pc0",
472 "$r2", "$r3", "$r4", "$r5", "$r6", "$r7",
473 "$i0", "$i1", "$i2", "$i3", "$i4", "$i5", "$i6", "$i7",
474 "$f0", "$f1", "$f2", "$f3", "$f4", "$f5", "$f6", "$f7",
476 if (private_data
->print_registers
477 && local_index
< ARRAY_SIZE (locals
))
478 prin (stream
, " <%s>", locals
[local_index
]);
482 static const char *globals
[] =
484 "$got", "$plt", "$gpo"
486 if (private_data
->print_well_known_globals
487 && local_index
< ARRAY_SIZE (globals
))
488 prin (stream
, " <%s>", globals
[local_index
]);
493 case wasm_grow_memory
:
494 case wasm_current_memory
:
496 uint32_t reserved_size
;
497 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
500 if (error
|| reserved_size
!= val
)
503 prin (stream
, " %u", reserved_size
);
510 uint32_t flags
, offset
;
511 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
514 if (error
|| flags
!= val
)
517 val
= wasm_read_leb128 (pc
+ len
, info
, &error
, &bytes_read
,
520 if (error
|| offset
!= val
)
523 prin (stream
, " a=%u %u", flags
, offset
);
530 /* Print valid disassembler options to STREAM. */
533 print_wasm32_disassembler_options (FILE *stream
)
535 unsigned int i
, max_len
= 0;
537 fprintf (stream
, _("\
538 The following WebAssembly-specific disassembler options are supported for use\n\
539 with the -M switch:\n"));
541 for (i
= 0; i
< ARRAY_SIZE (options
); i
++)
543 unsigned int len
= strlen (options
[i
].name
);
549 for (i
= 0, max_len
++; i
< ARRAY_SIZE (options
); i
++)
550 fprintf (stream
, " %s%*c %s\n",
552 (int)(max_len
- strlen (options
[i
].name
)), ' ',
553 _(options
[i
].description
));