1
1
/*
2
- * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
48
48
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .REGISTER_NARROW_OOP ;
49
49
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .REGISTER_OOP ;
50
50
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .REGISTER_PRIMITIVE ;
51
+ import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .REGISTER_VECTOR ;
51
52
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .SITE_CALL ;
52
53
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .SITE_DATA_PATCH ;
53
54
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .SITE_EXCEPTION_HANDLER ;
61
62
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .STACK_SLOT_NARROW_OOP ;
62
63
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .STACK_SLOT_OOP ;
63
64
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .STACK_SLOT_PRIMITIVE ;
65
+ import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .STACK_SLOT_VECTOR ;
64
66
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .VIRTUAL_OBJECT_ID ;
65
67
import static jdk .vm .ci .hotspot .HotSpotCompiledCodeStream .Tag .VIRTUAL_OBJECT_ID2 ;
66
68
@@ -171,9 +173,11 @@ enum Tag {
171
173
REGISTER_PRIMITIVE ,
172
174
REGISTER_OOP ,
173
175
REGISTER_NARROW_OOP ,
176
+ REGISTER_VECTOR ,
174
177
STACK_SLOT_PRIMITIVE ,
175
178
STACK_SLOT_OOP ,
176
179
STACK_SLOT_NARROW_OOP ,
180
+ STACK_SLOT_VECTOR ,
177
181
VIRTUAL_OBJECT_ID ,
178
182
VIRTUAL_OBJECT_ID2 ,
179
183
NULL_CONSTANT ,
@@ -1029,6 +1033,10 @@ private boolean isNarrowOop(Value oopValue) {
1029
1033
return oopValue .getPlatformKind () != runtime .getHostJVMCIBackend ().getTarget ().arch .getWordKind ();
1030
1034
}
1031
1035
1036
+ private boolean isVector (Value value ) {
1037
+ return value .getPlatformKind ().getVectorLength () > 1 ;
1038
+ }
1039
+
1032
1040
private void writeJavaValue (JavaValue value , JavaKind kind ) {
1033
1041
if (value == Value .ILLEGAL ) {
1034
1042
writeTag (ILLEGAL );
@@ -1039,12 +1047,30 @@ private void writeJavaValue(JavaValue value, JavaKind kind) {
1039
1047
writeTag (NULL_CONSTANT );
1040
1048
} else if (value instanceof RegisterValue ) {
1041
1049
RegisterValue reg = (RegisterValue ) value ;
1042
- Tag tag = kind == JavaKind .Object ? (isNarrowOop (reg ) ? REGISTER_NARROW_OOP : REGISTER_OOP ) : REGISTER_PRIMITIVE ;
1050
+ Tag tag ;
1051
+ if (kind == JavaKind .Object ) {
1052
+ if (isVector (reg )) {
1053
+ tag = REGISTER_VECTOR ;
1054
+ } else {
1055
+ tag = isNarrowOop (reg ) ? REGISTER_NARROW_OOP : REGISTER_OOP ;
1056
+ }
1057
+ } else {
1058
+ tag = REGISTER_PRIMITIVE ;
1059
+ }
1043
1060
writeTag (tag );
1044
1061
writeRegister (reg .getRegister ());
1045
1062
} else if (value instanceof StackSlot ) {
1046
1063
StackSlot slot = (StackSlot ) value ;
1047
- Tag tag = kind == JavaKind .Object ? (isNarrowOop (slot ) ? STACK_SLOT_NARROW_OOP : STACK_SLOT_OOP ) : STACK_SLOT_PRIMITIVE ;
1064
+ Tag tag ;
1065
+ if (kind == JavaKind .Object ) {
1066
+ if (isVector (slot )) {
1067
+ tag = STACK_SLOT_VECTOR ;
1068
+ } else {
1069
+ tag = isNarrowOop (slot ) ? STACK_SLOT_NARROW_OOP : STACK_SLOT_OOP ;
1070
+ }
1071
+ } else {
1072
+ tag = STACK_SLOT_PRIMITIVE ;
1073
+ }
1048
1074
writeTag (tag );
1049
1075
writeS2 ("offset" , slot .getRawOffset ());
1050
1076
writeBoolean ("addRawFrameSize" , slot .getRawAddFrameSize ());
1 commit comments
openjdk-notifier[bot] commentedon Jul 27, 2023
Review
Issues