Skip to content

Commit a445ecd

Browse files
committedApr 8, 2022
8284297: Move FILE_AND_LINE to a platform independent header
Reviewed-by: tschatzl
1 parent 003aa2e commit a445ecd

21 files changed

+24
-11
lines changed
 

‎src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#include "runtime/sharedRuntime.hpp"
4343
#include "runtime/stubRoutines.hpp"
4444
#include "runtime/vm_version.hpp"
45+
#include "utilities/macros.hpp"
4546
#include "utilities/powerOfTwo.hpp"
4647

4748
#define __ _masm->

‎src/hotspot/cpu/ppc/c1_MacroAssembler_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "runtime/sharedRuntime.hpp"
3838
#include "runtime/stubRoutines.hpp"
3939
#include "utilities/align.hpp"
40+
#include "utilities/macros.hpp"
4041
#include "utilities/powerOfTwo.hpp"
4142

4243
void C1_MacroAssembler::inline_cache_check(Register receiver, Register iCache) {

‎src/hotspot/cpu/ppc/gc/g1/g1BarrierSetAssembler_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include "interpreter/interp_masm.hpp"
3737
#include "runtime/jniHandles.hpp"
3838
#include "runtime/sharedRuntime.hpp"
39+
#include "utilities/macros.hpp"
3940
#ifdef COMPILER1
4041
#include "c1/c1_LIRAssembler.hpp"
4142
#include "c1/c1_MacroAssembler.hpp"

‎src/hotspot/cpu/ppc/gc/shared/barrierSetAssembler_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "runtime/jniHandles.hpp"
3535
#include "runtime/sharedRuntime.hpp"
3636
#include "runtime/stubRoutines.hpp"
37+
#include "utilities/macros.hpp"
3738

3839
#define __ masm->
3940

‎src/hotspot/cpu/ppc/gc/shared/modRefBarrierSetAssembler_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include "asm/macroAssembler.inline.hpp"
2828
#include "gc/shared/modRefBarrierSetAssembler.hpp"
2929
#include "runtime/jniHandles.hpp"
30+
#include "utilities/macros.hpp"
3031

3132
#define __ masm->
3233

‎src/hotspot/cpu/ppc/globalDefinitions_ppc.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@
2626
#ifndef CPU_PPC_GLOBALDEFINITIONS_PPC_HPP
2727
#define CPU_PPC_GLOBALDEFINITIONS_PPC_HPP
2828

29-
#ifndef FILE_AND_LINE
30-
#define FILE_AND_LINE __FILE__ ":" XSTR(__LINE__)
31-
#endif
32-
3329
// Size of PPC Instructions
3430
const int BytesPerInstWord = 4;
3531

‎src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "runtime/safepointMechanism.hpp"
3838
#include "runtime/sharedRuntime.hpp"
3939
#include "runtime/vm_version.hpp"
40+
#include "utilities/macros.hpp"
4041
#include "utilities/powerOfTwo.hpp"
4142

4243
// Implementation of InterpreterMacroAssembler.

‎src/hotspot/cpu/ppc/methodHandles_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "prims/methodHandles.hpp"
3838
#include "runtime/frame.inline.hpp"
3939
#include "runtime/stubRoutines.hpp"
40+
#include "utilities/macros.hpp"
4041
#include "utilities/preserveException.hpp"
4142

4243
#define __ _masm->

‎src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
#include "runtime/stubRoutines.hpp"
4545
#include "runtime/vframeArray.hpp"
4646
#include "utilities/align.hpp"
47+
#include "utilities/macros.hpp"
4748
#include "vmreg_ppc.inline.hpp"
4849
#ifdef COMPILER1
4950
#include "c1/c1_Runtime1.hpp"

‎src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
#include "runtime/safepointMechanism.inline.hpp"
4141
#include "runtime/sharedRuntime.hpp"
4242
#include "runtime/stubRoutines.hpp"
43+
#include "utilities/macros.hpp"
4344
#include "utilities/powerOfTwo.hpp"
4445
#include "vmreg_s390.inline.hpp"
4546

‎src/hotspot/cpu/s390/c1_MacroAssembler_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include "runtime/os.hpp"
3737
#include "runtime/sharedRuntime.hpp"
3838
#include "runtime/stubRoutines.hpp"
39+
#include "utilities/macros.hpp"
3940

4041
void C1_MacroAssembler::inline_cache_check(Register receiver, Register iCache) {
4142
Label ic_miss, ic_hit;

‎src/hotspot/cpu/s390/gc/g1/g1BarrierSetAssembler_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "interpreter/interp_masm.hpp"
3838
#include "runtime/jniHandles.hpp"
3939
#include "runtime/sharedRuntime.hpp"
40+
#include "utilities/macros.hpp"
4041
#ifdef COMPILER1
4142
#include "c1/c1_LIRAssembler.hpp"
4243
#include "c1/c1_MacroAssembler.hpp"

‎src/hotspot/cpu/s390/gc/shared/barrierSetAssembler_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "interpreter/interp_masm.hpp"
3030
#include "oops/compressedOops.hpp"
3131
#include "runtime/jniHandles.hpp"
32+
#include "utilities/macros.hpp"
3233

3334
#define __ masm->
3435

‎src/hotspot/cpu/s390/globalDefinitions_s390.hpp

-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@
2626
#ifndef CPU_S390_GLOBALDEFINITIONS_S390_HPP
2727
#define CPU_S390_GLOBALDEFINITIONS_S390_HPP
2828

29-
// Convenience macro that produces a string literal with the filename
30-
// and linenumber of the location where the macro was used.
31-
#ifndef FILE_AND_LINE
32-
#define FILE_AND_LINE __FILE__ ":" XSTR(__LINE__)
33-
#endif
34-
3529
#define ShortenBranches true
3630

3731
const int StackAlignmentInBytes = 16;

‎src/hotspot/cpu/s390/interp_masm_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#include "runtime/safepointMechanism.hpp"
4343
#include "runtime/sharedRuntime.hpp"
4444
#include "runtime/thread.inline.hpp"
45+
#include "utilities/macros.hpp"
4546
#include "utilities/powerOfTwo.hpp"
4647

4748
// Implementation of InterpreterMacroAssembler.

‎src/hotspot/cpu/s390/methodHandles_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "prims/methodHandles.hpp"
3838
#include "runtime/frame.inline.hpp"
3939
#include "runtime/stubRoutines.hpp"
40+
#include "utilities/macros.hpp"
4041
#include "utilities/preserveException.hpp"
4142

4243
#ifdef PRODUCT

‎src/hotspot/cpu/s390/sharedRuntime_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#include "runtime/stubRoutines.hpp"
4646
#include "runtime/vframeArray.hpp"
4747
#include "utilities/align.hpp"
48+
#include "utilities/macros.hpp"
4849
#include "vmreg_s390.inline.hpp"
4950
#ifdef COMPILER1
5051
#include "c1/c1_Runtime1.hpp"

‎src/hotspot/cpu/s390/stubGenerator_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
#include "runtime/stubCodeGenerator.hpp"
4343
#include "runtime/stubRoutines.hpp"
4444
#include "runtime/thread.inline.hpp"
45+
#include "utilities/macros.hpp"
4546
#include "utilities/powerOfTwo.hpp"
4647

4748
// Declaration and definition of StubGenerator (no .hpp file).

‎src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#include "runtime/timer.hpp"
5050
#include "runtime/vframeArray.hpp"
5151
#include "utilities/debug.hpp"
52-
52+
#include "utilities/macros.hpp"
5353

5454
// Size of interpreter code. Increase if too small. Interpreter will
5555
// fail with a guarantee ("not enough space for interpreter generation");

‎src/hotspot/cpu/s390/templateTable_s390.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
#include "runtime/sharedRuntime.hpp"
4444
#include "runtime/stubRoutines.hpp"
4545
#include "runtime/synchronizer.hpp"
46+
#include "utilities/macros.hpp"
4647
#include "utilities/powerOfTwo.hpp"
4748

4849
#ifdef PRODUCT

‎src/hotspot/share/utilities/macros.hpp

+6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
#define PASTE_TOKENS_AUX(x, y) PASTE_TOKENS_AUX2(x, y)
4747
#define PASTE_TOKENS_AUX2(x, y) x ## y
4848

49+
// Convenience macro that produces a string literal with the filename
50+
// and linenumber of the location where the macro was used.
51+
#ifndef FILE_AND_LINE
52+
#define FILE_AND_LINE __FILE__ ":" XSTR(__LINE__)
53+
#endif
54+
4955
// -DINCLUDE_<something>=0 | 1 can be specified on the command line to include
5056
// or exclude functionality.
5157

0 commit comments

Comments
 (0)
Please sign in to comment.