mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +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
|
@ -465,12 +465,10 @@ OopMapSet* Runtime1::generate_code_for(StubID id, StubAssembler* sasm) {
|
|||
|
||||
break;
|
||||
|
||||
#ifdef TIERED
|
||||
case counter_overflow_id:
|
||||
// G4 contains bci
|
||||
oop_maps = generate_stub_call(sasm, noreg, CAST_FROM_FN_PTR(address, counter_overflow), G4);
|
||||
// G4 contains bci, G5 contains method
|
||||
oop_maps = generate_stub_call(sasm, noreg, CAST_FROM_FN_PTR(address, counter_overflow), G4, G5);
|
||||
break;
|
||||
#endif // TIERED
|
||||
|
||||
case new_type_array_id:
|
||||
case new_object_array_id:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue