mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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
|
@ -73,6 +73,7 @@ FloatRegister FrameMap::_fpu_regs [FrameMap::nof_fpu_regs];
|
|||
// some useful constant RInfo's:
|
||||
LIR_Opr FrameMap::in_long_opr;
|
||||
LIR_Opr FrameMap::out_long_opr;
|
||||
LIR_Opr FrameMap::g1_long_single_opr;
|
||||
|
||||
LIR_Opr FrameMap::F0_opr;
|
||||
LIR_Opr FrameMap::F0_double_opr;
|
||||
|
@ -238,6 +239,7 @@ void FrameMap::initialize() {
|
|||
|
||||
in_long_opr = as_long_opr(I0);
|
||||
out_long_opr = as_long_opr(O0);
|
||||
g1_long_single_opr = as_long_single_opr(G1);
|
||||
|
||||
G0_opr = as_opr(G0);
|
||||
G1_opr = as_opr(G1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue