mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8193210: [JVMCI/Graal] add JFR compiler phase/inlining events
C++ EventCompilerPhase/EventCompilerInlining definitions are extended for JVMCI use. Reviewed-by: dnsimon, egahlin, kvn, mgronlun, thartmann
This commit is contained in:
parent
bfa3ad9108
commit
211e529373
22 changed files with 563 additions and 163 deletions
|
@ -261,9 +261,11 @@
|
|||
|
||||
#if INCLUDE_JFR
|
||||
#define JFR_ONLY(code) code
|
||||
#define NOT_JFR_RETURN() /* next token must be ; */
|
||||
#define NOT_JFR_RETURN_(code) /* next token must be ; */
|
||||
#else
|
||||
#define JFR_ONLY(code)
|
||||
#define NOT_JFR_RETURN() {}
|
||||
#define NOT_JFR_RETURN_(code) { return code; }
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue