mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8019518: PPC64 (part 103): cppInterpreter: implement support for compressed Oops
Reviewed-by: kvn, coleenp
This commit is contained in:
parent
7c47a187f2
commit
8cc4fad115
1 changed files with 5 additions and 2 deletions
|
@ -1644,8 +1644,11 @@ run:
|
|||
ARRAY_LOADTO32(T_INT, jint, "%d", STACK_INT, 0);
|
||||
CASE(_faload):
|
||||
ARRAY_LOADTO32(T_FLOAT, jfloat, "%f", STACK_FLOAT, 0);
|
||||
CASE(_aaload):
|
||||
ARRAY_LOADTO32(T_OBJECT, oop, INTPTR_FORMAT, STACK_OBJECT, 0);
|
||||
CASE(_aaload): {
|
||||
ARRAY_INTRO(-2);
|
||||
SET_STACK_OBJECT(((objArrayOop) arrObj)->obj_at(index), -2);
|
||||
UPDATE_PC_AND_TOS_AND_CONTINUE(1, -1);
|
||||
}
|
||||
CASE(_baload):
|
||||
ARRAY_LOADTO32(T_BYTE, jbyte, "%d", STACK_INT, 0);
|
||||
CASE(_caload):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue