mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
6953144: Tiered compilation
Infrastructure for tiered compilation support (interpreter + c1 + c2) for 32 and 64 bit. Simple tiered policy implementation. Reviewed-by: kvn, never, phh, twisti
This commit is contained in:
parent
6e78f6cb4b
commit
2c66a6c3fd
104 changed files with 7720 additions and 1701 deletions
|
@ -979,7 +979,7 @@ MethodHandleCompiler::make_invoke(methodOop m, vmIntrinsics::ID iid,
|
|||
|
||||
// Inline the method.
|
||||
InvocationCounter* ic = m->invocation_counter();
|
||||
ic->set_carry();
|
||||
ic->set_carry_flag();
|
||||
|
||||
for (int i = 0; i < argc; i++) {
|
||||
ArgToken arg = argv[i];
|
||||
|
@ -1209,7 +1209,7 @@ methodHandle MethodHandleCompiler::get_method_oop(TRAPS) const {
|
|||
// Set the carry bit of the invocation counter to force inlining of
|
||||
// the adapter.
|
||||
InvocationCounter* ic = m->invocation_counter();
|
||||
ic->set_carry();
|
||||
ic->set_carry_flag();
|
||||
|
||||
// Rewrite the method and set up the constant pool cache.
|
||||
objArrayOop m_array = oopFactory::new_system_objArray(1, CHECK_(nullHandle));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue