mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8135067: Preparatory refactorings for compiler control
Extract CompileTask and clean up Reviewed-by: roland
This commit is contained in:
parent
d7b8032741
commit
559bf7ef6e
15 changed files with 553 additions and 499 deletions
|
@ -32,7 +32,6 @@
|
|||
#include "code/vtableStubs.hpp"
|
||||
#include "compiler/abstractCompiler.hpp"
|
||||
#include "compiler/compileBroker.hpp"
|
||||
#include "compiler/compilerOracle.hpp"
|
||||
#include "compiler/disassembler.hpp"
|
||||
#include "gc/shared/gcLocker.inline.hpp"
|
||||
#include "interpreter/interpreter.hpp"
|
||||
|
@ -2622,7 +2621,7 @@ void AdapterHandlerLibrary::create_native_wrapper(methodHandle method) {
|
|||
if (nm != NULL) {
|
||||
if (PrintCompilation) {
|
||||
ttyLocker ttyl;
|
||||
CompileTask::print_compilation(tty, nm, method->is_static() ? "(static)" : "");
|
||||
CompileTask::print(tty, nm, method->is_static() ? "(static)" : "");
|
||||
}
|
||||
nm->post_compiled_method_load_event();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue