mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8028468: Add inlining information into ciReplay
Allow dump and replay inlining for specified method during a program execution. Reviewed-by: roland, twisti
This commit is contained in:
parent
1defb28228
commit
ba7149bbda
18 changed files with 668 additions and 171 deletions
|
@ -310,10 +310,13 @@ class ciMethod : public ciMetadata {
|
|||
bool is_accessor () const;
|
||||
bool is_initializer () const;
|
||||
bool can_be_statically_bound() const { return _can_be_statically_bound; }
|
||||
void dump_replay_data(outputStream* st);
|
||||
bool is_boxing_method() const;
|
||||
bool is_unboxing_method() const;
|
||||
|
||||
// Replay data methods
|
||||
void dump_name_as_ascii(outputStream* st);
|
||||
void dump_replay_data(outputStream* st);
|
||||
|
||||
// Print the bytecodes of this method.
|
||||
void print_codes_on(outputStream* st);
|
||||
void print_codes() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue