Skip to content

Commit 955bf18

Browse files
author
David Holmes
committedJan 20, 2025
8348040: Bad use of ifdef with INCLUDE_xxx GC macros
Reviewed-by: stefank, shade
1 parent ca863fd commit 955bf18

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed
 

‎src/hotspot/share/c1/c1_LIR.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2025, 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
@@ -1016,7 +1016,7 @@ enum LIR_Code {
10161016
, begin_opAssert
10171017
, lir_assert
10181018
, end_opAssert
1019-
#ifdef INCLUDE_ZGC
1019+
#if INCLUDE_ZGC
10201020
, begin_opXLoadBarrierTest
10211021
, lir_xloadbarrier_test
10221022
, end_opXLoadBarrierTest

‎src/hotspot/share/runtime/mutexLocker.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2025, 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
@@ -52,7 +52,7 @@ Mutex* JvmtiThreadState_lock = nullptr;
5252
Monitor* EscapeBarrier_lock = nullptr;
5353
Monitor* JvmtiVTMSTransition_lock = nullptr;
5454
Monitor* Heap_lock = nullptr;
55-
#ifdef INCLUDE_PARALLELGC
55+
#if INCLUDE_PARALLELGC
5656
Mutex* PSOldGenExpand_lock = nullptr;
5757
#endif
5858
Mutex* AdapterHandlerLibrary_lock = nullptr;
@@ -333,7 +333,7 @@ void mutex_init() {
333333
}
334334

335335
MUTEX_DEFL(CompileTaskAlloc_lock , PaddedMutex , MethodCompileQueue_lock);
336-
#ifdef INCLUDE_PARALLELGC
336+
#if INCLUDE_PARALLELGC
337337
if (UseParallelGC) {
338338
MUTEX_DEFL(PSOldGenExpand_lock , PaddedMutex , Heap_lock, true);
339339
}
@@ -377,4 +377,3 @@ GCMutexLocker::GCMutexLocker(Mutex* mutex) {
377377
_mutex->lock();
378378
}
379379
}
380-

‎src/hotspot/share/runtime/mutexLocker.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2025, 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
@@ -49,7 +49,7 @@ extern Mutex* JvmtiThreadState_lock; // a lock on modification of JV
4949
extern Monitor* EscapeBarrier_lock; // a lock to sync reallocating and relocking objects because of JVMTI access
5050
extern Monitor* JvmtiVTMSTransition_lock; // a lock for Virtual Thread Mount State transition (VTMS transition) management
5151
extern Monitor* Heap_lock; // a lock on the heap
52-
#ifdef INCLUDE_PARALLELGC
52+
#if INCLUDE_PARALLELGC
5353
extern Mutex* PSOldGenExpand_lock; // a lock on expanding the heap
5454
#endif
5555
extern Mutex* AdapterHandlerLibrary_lock; // a lock on the AdapterHandlerLibrary

0 commit comments

Comments
 (0)
Please sign in to comment.