mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
Merge
This commit is contained in:
commit
b82f9f3c1e
34 changed files with 404 additions and 348 deletions
|
@ -1577,6 +1577,7 @@ class CompilerThread : public JavaThread {
|
|||
CompileLog* _log;
|
||||
CompileTask* _task;
|
||||
CompileQueue* _queue;
|
||||
BufferBlob* _buffer_blob;
|
||||
|
||||
public:
|
||||
|
||||
|
@ -1595,6 +1596,9 @@ class CompilerThread : public JavaThread {
|
|||
ciEnv* env() { return _env; }
|
||||
void set_env(ciEnv* env) { _env = env; }
|
||||
|
||||
BufferBlob* get_buffer_blob() { return _buffer_blob; }
|
||||
void set_buffer_blob(BufferBlob* b) { _buffer_blob = b; };
|
||||
|
||||
// Get/set the thread's logging information
|
||||
CompileLog* log() { return _log; }
|
||||
void init_log(CompileLog* log) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue