--- old/src/share/vm/c1/c1_Compilation.hpp 2015-09-25 16:23:20.134913976 +0200 +++ new/src/share/vm/c1/c1_Compilation.hpp 2015-09-25 16:23:20.014913980 +0200 @@ -67,6 +67,7 @@ int _next_id; int _next_block_id; AbstractCompiler* _compiler; + DirectiveSet* _dirset; ciEnv* _env; CompileLog* _log; ciMethod* _method; @@ -118,7 +119,7 @@ public: // creation Compilation(AbstractCompiler* compiler, ciEnv* env, ciMethod* method, - int osr_bci, BufferBlob* buffer_blob); + int osr_bci, BufferBlob* buffer_blob, DirectiveSet* dirset); ~Compilation(); @@ -128,6 +129,7 @@ // accessors ciEnv* env() const { return _env; } + DirectiveSet* dirset() const { return _dirset; } CompileLog* log() const { return _log; } AbstractCompiler* compiler() const { return _compiler; } bool has_exception_handlers() const { return _has_exception_handlers; }