mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
6912062: disassembler plugin needs to produce symbolic information in product mode
More informative disassembly in product mode. Also, a more consistent CompileCommand syntax. Reviewed-by: never
This commit is contained in:
parent
7548b8eed5
commit
fdbb64ef71
39 changed files with 262 additions and 128 deletions
|
@ -204,7 +204,8 @@ class CodeBlob VALUE_OBJ_CLASS_SPEC {
|
|||
virtual void print_value_on(outputStream* st) const PRODUCT_RETURN;
|
||||
|
||||
// Print the comment associated with offset on stream, if there is one
|
||||
void print_block_comment(outputStream* stream, intptr_t offset) {
|
||||
virtual void print_block_comment(outputStream* stream, address block_begin) {
|
||||
intptr_t offset = (intptr_t)(block_begin - instructions_begin());
|
||||
_comments.print_block_comment(stream, offset);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue