Skip to content

Commit 6b456f7

Browse files
Olga MikhaltsovaAntonKozlov
Olga Mikhaltsova
authored andcommittedNov 10, 2022
8262901: [macos_aarch64] NativeCallTest expected:<-3.8194101E18> but was:<3.02668882E10>
Reviewed-by: aph
1 parent e1badb7 commit 6b456f7

File tree

8 files changed

+106
-12
lines changed

8 files changed

+106
-12
lines changed
 

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/TargetDescription.java

+4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,17 @@
2525
import static jdk.vm.ci.meta.MetaUtil.identityHashCodeString;
2626

2727
import jdk.vm.ci.meta.JavaKind;
28+
import jdk.vm.ci.services.Services;
2829

2930
/**
3031
* Represents the target machine for a compiler, including the CPU architecture, the size of
3132
* pointers and references, alignment of stacks, caches, etc.
3233
*/
3334
public class TargetDescription {
3435

36+
public final boolean linuxOs = Services.getSavedProperty("os.name", "").startsWith("Linux");
37+
public final boolean macOs = Services.getSavedProperty("os.name", "").startsWith("Mac");
38+
3539
public final Architecture arch;
3640

3741
/**

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.aarch64/src/jdk/vm/ci/hotspot/aarch64/AArch64HotSpotJVMCIBackendFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private static RegisterConfig createRegisterConfig(AArch64HotSpotVMConfig config
9393
// ARMv8 defines r18 as being available to the platform ABI. Windows
9494
// and Darwin use it for such. Linux doesn't assign it and thus r18 can
9595
// be used as an additional register.
96-
boolean canUsePlatformRegister = config.linuxOs;
96+
boolean canUsePlatformRegister = target.linuxOs;
9797
return new AArch64HotSpotRegisterConfig(target, config.useCompressedOops, canUsePlatformRegister);
9898
}
9999

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.aarch64/src/jdk/vm/ci/hotspot/aarch64/AArch64HotSpotRegisterConfig.java

+26-3
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,27 @@ public RegisterArray getCallingConventionRegisters(Type type, JavaKind kind) {
228228
}
229229
}
230230

231+
private int parseStackArg(ValueKind<?> valueKind, AllocatableValue[] locations, int index, int currentStackOffset, HotSpotCallingConventionType type) {
232+
int kindSize = valueKind.getPlatformKind().getSizeInBytes();
233+
locations[index] = StackSlot.get(valueKind, currentStackOffset, !type.out);
234+
currentStackOffset += Math.max(kindSize, target.wordSize);
235+
return currentStackOffset;
236+
}
237+
238+
private int parseDarwinNativeStackArg(ValueKind<?> valueKind, AllocatableValue[] locations, int index, int currentStackOffset, HotSpotCallingConventionType type) {
239+
int kindSize = valueKind.getPlatformKind().getSizeInBytes();
240+
if (currentStackOffset % kindSize != 0) {
241+
// In MacOS natural alignment is used
242+
// See https://developer.apple.com/documentation/xcode/writing-arm64-code-for-apple-platforms
243+
currentStackOffset += kindSize - currentStackOffset % kindSize;
244+
}
245+
locations[index] = StackSlot.get(valueKind, currentStackOffset, !type.out);
246+
// In MacOS "Function arguments may consume slots on the stack that are not multiples of 8 bytes"
247+
// See https://developer.apple.com/documentation/xcode/writing-arm64-code-for-apple-platforms
248+
currentStackOffset += kindSize;
249+
return currentStackOffset;
250+
}
251+
231252
private CallingConvention callingConvention(RegisterArray generalParameterRegisters, JavaType returnType, JavaType[] parameterTypes, HotSpotCallingConventionType type,
232253
ValueKindFactory<?> valueKindFactory) {
233254
AllocatableValue[] locations = new AllocatableValue[parameterTypes.length];
@@ -264,9 +285,11 @@ private CallingConvention callingConvention(RegisterArray generalParameterRegist
264285
}
265286

266287
if (locations[i] == null) {
267-
ValueKind<?> valueKind = valueKindFactory.getValueKind(kind);
268-
locations[i] = StackSlot.get(valueKind, currentStackOffset, !type.out);
269-
currentStackOffset += Math.max(valueKind.getPlatformKind().getSizeInBytes(), target.wordSize);
288+
if (target.macOs && type == HotSpotCallingConventionType.NativeCall) {
289+
currentStackOffset = parseDarwinNativeStackArg(valueKindFactory.getValueKind(kind), locations, i, currentStackOffset, type);
290+
} else {
291+
currentStackOffset = parseStackArg(valueKindFactory.getValueKind(kind), locations, i, currentStackOffset, type);
292+
}
270293
}
271294
}
272295

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot.aarch64/src/jdk/vm/ci/hotspot/aarch64/AArch64HotSpotVMConfig.java

-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
import jdk.vm.ci.hotspot.HotSpotVMConfigAccess;
2626
import jdk.vm.ci.hotspot.HotSpotVMConfigStore;
27-
import jdk.vm.ci.services.Services;
2827

2928
/**
3029
* Used to access native configuration details.
@@ -37,8 +36,6 @@ class AArch64HotSpotVMConfig extends HotSpotVMConfigAccess {
3736
super(config);
3837
}
3938

40-
final boolean linuxOs = Services.getSavedProperty("os.name", "").startsWith("Linux");
41-
4239
final boolean useCompressedOops = getFlag("UseCompressedOops", Boolean.class);
4340

4441
// CPU Capabilities

‎test/hotspot/jtreg/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
compiler/ciReplay/TestSAServer.java 8029528 generic-all
4747
compiler/compilercontrol/jcmd/ClearDirectivesFileStackTest.java 8225370 generic-all
4848
compiler/jvmci/compilerToVM/GetFlagValueTest.java 8204459 generic-all
49-
compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/NativeCallTest.java 8262901 macosx-aarch64
5049
compiler/tiered/LevelTransitionTest.java 8067651 generic-all
5150

5251
compiler/cpuflags/TestAESIntrinsicsOnSupportedConfig.java 8190680 generic-all

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/libNativeCallTest.c

+33
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,39 @@ JNIEXPORT jfloat JNICALL Java_jdk_vm_ci_code_test_NativeCallTest__1L32SDILDS(JNI
189189
a, b, c, d, e, f);
190190
}
191191

192+
jint JNICALL I32I(jint i00, jint i01, jint i02, jint i03, jint i04, jint i05, jint i06, jint i07,
193+
jint i08, jint i09, jint i0a, jint i0b, jint i0c, jint i0d, jint i0e, jint i0f,
194+
jint i10, jint i11, jint i12, jint i13, jint i14, jint i15, jint i16, jint i17,
195+
jint i18, jint i19, jint i1a, jint i1b, jint i1c, jint i1d, jint i1e, jint i1f,
196+
jint a) {
197+
return i00 + i01 + i02 + i03 + i04 + i05 + i06 + i07 +
198+
i08 + i09 + i0a + i0b + i0c + i0d + i0e + i0f +
199+
i10 + i11 + i12 + i13 + i14 + i15 + i16 + i17 +
200+
i18 + i19 + i1a + i1b + i1c + i1d + i1e + i1f +
201+
a;
202+
}
203+
204+
JNIEXPORT jlong JNICALL Java_jdk_vm_ci_code_test_NativeCallTest_getI32I(JNIEnv *env, jclass clazz) {
205+
return (jlong) (intptr_t) I32I;
206+
}
207+
208+
JNIEXPORT jint JNICALL Java_jdk_vm_ci_code_test_NativeCallTest__1I32I(JNIEnv *env, jclass clazz,
209+
jint i00, jint i01, jint i02, jint i03,
210+
jint i04, jint i05, jint i06, jint i07,
211+
jint i08, jint i09, jint i0a, jint i0b,
212+
jint i0c, jint i0d, jint i0e, jint i0f,
213+
jint i10, jint i11, jint i12, jint i13,
214+
jint i14, jint i15, jint i16, jint i17,
215+
jint i18, jint i19, jint i1a, jint i1b,
216+
jint i1c, jint i1d, jint i1e, jint i1f,
217+
jint a) {
218+
return I32I(i00, i01, i02, i03, i04, i05, i06, i07,
219+
i08, i09, i0a, i0b, i0c, i0d, i0e, i0f,
220+
i10, i11, i12, i13, i14, i15, i16, i17,
221+
i18, i19, i1a, i1b, i1c, i1d, i1e, i1f,
222+
a);
223+
}
224+
192225
#ifdef __cplusplus
193226
}
194227
#endif

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/NativeCallTest.java

+40
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,26 @@ public void testI32SDILDS() {
126126
test("I32SDILDS", getI32SDILDS(), float.class, argClazz, argValues);
127127
}
128128

129+
@Test
130+
public void testI32I() {
131+
int sCount = 32;
132+
// Pairs of <Object>, <Class>
133+
Object[] remainingArgs = new Object[]{
134+
12, int.class
135+
};
136+
Class<?>[] argClazz = new Class[sCount + remainingArgs.length / 2];
137+
Object[] argValues = new Object[sCount + remainingArgs.length / 2];
138+
for (int i = 0; i < sCount; i++) {
139+
argValues[i] = i;
140+
argClazz[i] = int.class;
141+
}
142+
for (int i = 0; i < remainingArgs.length; i += 2) {
143+
argValues[sCount + i / 2] = remainingArgs[i + 0];
144+
argClazz[sCount + i / 2] = (Class<?>) remainingArgs[i + 1];
145+
}
146+
test("I32I", getI32I(), int.class, argClazz, argValues);
147+
}
148+
129149
public void test(String name, long addr, Class<?> returnClazz, Class<?>[] types, Object[] values) {
130150
try {
131151
test(asm -> {
@@ -245,4 +265,24 @@ public static float L32SDILDS(long l00, long l01, long l02, long l03, long l04,
245265
l18, l19, l1a, l1b, l1c, l1d, l1e, l1f,
246266
a, b, c, d, e, f);
247267
}
268+
269+
public static native long getI32I();
270+
271+
public static native int _I32I(int i00, int i01, int i02, int i03, int i04, int i05, int i06, int i07,
272+
int i08, int i09, int i0a, int i0b, int i0c, int i0d, int i0e, int i0f,
273+
int i10, int i11, int i12, int i13, int i14, int i15, int i16, int i17,
274+
int i18, int i19, int i1a, int i1b, int i1c, int i1d, int i1e, int i1f,
275+
int a);
276+
277+
public static int I32I(int i00, int i01, int i02, int i03, int i04, int i05, int i06, int i07,
278+
int i08, int i09, int i0a, int i0b, int i0c, int i0d, int i0e, int i0f,
279+
int i10, int i11, int i12, int i13, int i14, int i15, int i16, int i17,
280+
int i18, int i19, int i1a, int i1b, int i1c, int i1d, int i1e, int i1f,
281+
int a) {
282+
return _I32I(i00, i01, i02, i03, i04, i05, i06, i07,
283+
i08, i09, i0a, i0b, i0c, i0d, i0e, i0f,
284+
i10, i11, i12, i13, i14, i15, i16, i17,
285+
i18, i19, i1a, i1b, i1c, i1d, i1e, i1f,
286+
a);
287+
}
248288
}

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/aarch64/AArch64TestAssembler.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,7 @@ public void emitEpilogue() {
272272

273273
@Override
274274
public void emitCallPrologue(CallingConvention cc, Object... prim) {
275-
emitGrowStack(cc.getStackSize());
276-
frameSize += cc.getStackSize();
275+
growFrame(cc.getStackSize());
277276
AllocatableValue[] args = cc.getArguments();
278277
for (int i = 0; i < args.length; i++) {
279278
emitLoad(args[i], prim[i]);
@@ -282,8 +281,7 @@ public void emitCallPrologue(CallingConvention cc, Object... prim) {
282281

283282
@Override
284283
public void emitCallEpilogue(CallingConvention cc) {
285-
emitGrowStack(-cc.getStackSize());
286-
frameSize -= cc.getStackSize();
284+
growFrame(-cc.getStackSize());
287285
}
288286

289287
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.