Skip to content

Commit 39616b4

Browse files
committedAug 4, 2020
8250930: [TESTBUG] Some forceEarlyReturn00* tests failed due to compiler optimization
Reviewed-by: cjplummer, dholmes
1 parent 00d223c commit 39616b4

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed
 

‎test/hotspot/jtreg/vmTestbase/nsk/jdi/ThreadReference/forceEarlyReturn/forceEarlyReturn004/libforceEarlyReturn004a.cpp

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,27 +26,20 @@
2626
extern "C" {
2727

2828

29-
int always_true = 1;
30-
3129
JNIEXPORT jint JNICALL
3230
Java_nsk_jdi_ThreadReference_forceEarlyReturn_forceEarlyReturn004_forceEarlyReturn004a_nativeMethod(JNIEnv *env, jobject classObject, jobject object)
3331
{
34-
int dummy_counter = 0;
32+
static volatile int dummy_counter = 0;
3533
// notify another thread that thread in native method
3634
jclass klass = env->GetObjectClass(object);
3735
jfieldID field = env->GetFieldID(klass, "threadInNative", "Z");
3836
env->SetBooleanField(object, field, 1);
3937

4038
// execute infinite loop to be sure that thread in native method
41-
while (always_true)
42-
{
43-
// Need some dummy code so the optimizer does not remove this loop.
44-
dummy_counter = dummy_counter < 1000 ? 0 : dummy_counter + 1;
45-
}
46-
// The optimizer can be surprisingly clever.
47-
// Use dummy_counter so it can never be optimized out.
48-
// This statement will always return 0.
49-
return dummy_counter >= 0 ? 0 : 1;
39+
while (dummy_counter == 0) {}
40+
41+
// Should not reach here
42+
return 0;
5043
}
5144

5245
}

‎test/hotspot/jtreg/vmTestbase/nsk/jdwp/ThreadReference/ForceEarlyReturn/forceEarlyReturn002/libforceEarlyReturn002a.cpp

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2007, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,27 +26,20 @@
2626
extern "C" {
2727

2828

29-
int always_true = 1;
30-
3129
JNIEXPORT jint JNICALL
3230
Java_nsk_jdwp_ThreadReference_ForceEarlyReturn_forceEarlyReturn002_forceEarlyReturn002a_nativeMethod(JNIEnv *env, jobject classObject, jobject object)
3331
{
34-
int dummy_counter = 0;
32+
static volatile int dummy_counter = 0;
3533
// notify another thread that thread in native method
3634
jclass klass = env->GetObjectClass(object);
3735
jfieldID field = env->GetFieldID(klass, "threadInNative", "Z");
3836
env->SetBooleanField(object, field, 1);
3937

4038
// execute infinite loop to be sure that thread in native method
41-
while (always_true)
42-
{
43-
// Need some dummy code so the optimizer does not remove this loop.
44-
dummy_counter = dummy_counter < 1000 ? 0 : dummy_counter + 1;
45-
}
46-
// The optimizer can be surprisingly clever.
47-
// Use dummy_counter so it can never be optimized out.
48-
// This statement will always return 0.
49-
return dummy_counter >= 0 ? 0 : 1;
39+
while (dummy_counter == 0) {}
40+
41+
// Should not reach here
42+
return 0;
5043
}
5144

5245
}

0 commit comments

Comments
 (0)
Please sign in to comment.