< prev index next >

src/hotspot/share/compiler/abstractDisassembler.cpp

Print this page
rev 54973 : 8224568: minimal and zero build fails after JDK-8213084

*** 42,69 **** bool AbstractDisassembler::_show_pc = true; bool AbstractDisassembler::_show_offset = false; bool AbstractDisassembler::_show_structs = false; bool AbstractDisassembler::_show_comment = false; bool AbstractDisassembler::_show_block_comment = false; ! #if defined(ARM) || defined(AARCH64) bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! // might prove cumbersome because instr_len is hard to find on arm ! #endif ! #if defined(PPC) ! bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! #endif ! #if defined(S390) ! bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! #endif ! #if defined(SPARC) ! bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! #endif ! #if defined(X86) ! bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! // might prove cumbersome because instr_len is hard to find on x86 ! #endif ! #if defined(ZERO) bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit #endif // Return #bytes printed. Callers may use that for output alignment. // Print instruction address, and offset from blob begin. --- 42,55 ---- bool AbstractDisassembler::_show_pc = true; bool AbstractDisassembler::_show_offset = false; bool AbstractDisassembler::_show_structs = false; bool AbstractDisassembler::_show_comment = false; bool AbstractDisassembler::_show_block_comment = false; ! #if defined(X86) || defined(ARM) || defined(AARCH64) bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit ! // might prove cumbersome because instr_len is hard to find on x86 or arm ! #else bool AbstractDisassembler::_show_bytes = false; // set "true" to see what's in memory bit by bit #endif // Return #bytes printed. Callers may use that for output alignment. // Print instruction address, and offset from blob begin.
< prev index next >