mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
7195816: NPG: Crash in c1_ValueType - ShouldNotReachHere
C1 needs knowledge of T_METADATA at the LIR level. Reviewed-by: kvn, coleenp
This commit is contained in:
parent
b979c4ebe0
commit
08757b8a99
19 changed files with 242 additions and 34 deletions
|
@ -1340,6 +1340,7 @@ int SharedRuntime::c_calling_convention(const BasicType *sig_bt,
|
|||
case T_ADDRESS: // raw pointers, like current thread, for VM calls
|
||||
case T_ARRAY:
|
||||
case T_OBJECT:
|
||||
case T_METADATA:
|
||||
regs[i].set2( int_stk_helper( j ) );
|
||||
break;
|
||||
case T_FLOAT:
|
||||
|
@ -1388,6 +1389,7 @@ int SharedRuntime::c_calling_convention(const BasicType *sig_bt,
|
|||
case T_FLOAT:
|
||||
case T_INT:
|
||||
case T_OBJECT:
|
||||
case T_METADATA:
|
||||
case T_SHORT:
|
||||
regs[i].set1( int_stk_helper( i ) );
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue