8234583: PrintAssemblyOptions isn't passed to hsdis library

Reviewed-by: vlivanov, mdoerr
This commit is contained in:
Lutz Schmidt 2019-11-28 16:28:53 +01:00
parent 620d67763d
commit 09d0150f6e

View File

@ -414,9 +414,10 @@ void decode_env::process_options(outputStream* ost) {
_bytes_per_line = Disassembler::pd_instruction_alignment();
_print_file_name = true;
if (_optionsParsed) return; // parse only once
// parse the global option string:
// parse the global option string
// We need to fill the options buffer for each newly created
// decode_env instance. The hsdis_* library looks for options
// in that buffer.
collect_options(Disassembler::pd_cpu_opts());
collect_options(PrintAssemblyOptions);
@ -424,6 +425,8 @@ void decode_env::process_options(outputStream* ost) {
_print_raw = (strstr(options(), "xml") ? 2 : 1);
}
if (_optionsParsed) return; // parse only once
if (strstr(options(), "help")) {
_print_help = true;
}