mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 17:14:41 +02:00
7177003: C1: LogCompilation support
Add LogCompilation support in C1 - both client and tiered mode. Reviewed-by: twisti, kvn
This commit is contained in:
parent
9e9db7f831
commit
822deb6ee6
18 changed files with 170 additions and 19 deletions
|
@ -66,6 +66,7 @@ class Compilation: public StackObj {
|
|||
int _next_block_id;
|
||||
AbstractCompiler* _compiler;
|
||||
ciEnv* _env;
|
||||
CompileLog* _log;
|
||||
ciMethod* _method;
|
||||
int _osr_bci;
|
||||
IR* _hir;
|
||||
|
@ -123,6 +124,7 @@ class Compilation: public StackObj {
|
|||
|
||||
// accessors
|
||||
ciEnv* env() const { return _env; }
|
||||
CompileLog* log() const { return _log; }
|
||||
AbstractCompiler* compiler() const { return _compiler; }
|
||||
bool has_exception_handlers() const { return _has_exception_handlers; }
|
||||
bool has_fpu_code() const { return _has_fpu_code; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue