Skip to content

Commit af3333a

Browse files
committed
Replaced all codegen/FrontEnd.hpp with env/FrontEnd.hpp
Signed-off-by: Yuehan-Lin <Yuehan.Lin@ibm.com>
1 parent ecadae9 commit af3333a

File tree

66 files changed

+70
-70
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+70
-70
lines changed

runtime/compiler/arm/codegen/J9AheadOfTimeCompile.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "codegen/ARMAOTRelocation.hpp"
2525
#include "compile/SymbolReferenceTable.hpp"
2626
#include "codegen/CodeGenerator.hpp"
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "codegen/Instruction.hpp"
2929
#include "compile/AOTClassInfo.hpp"
3030
#include "compile/Compilation.hpp"

runtime/compiler/arm/runtime/ARMRelocationTarget.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2018 IBM Corp. and others
2+
* Copyright (c) 2015, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -32,7 +32,7 @@
3232
#include "j9cp.h"
3333
#include "j9protos.h"
3434
#include "rommeth.h"
35-
#include "codegen/FrontEnd.hpp"
35+
#include "env/FrontEnd.hpp"
3636
#include "codegen/PicHelpers.hpp"
3737
#include "control/Options.hpp"
3838
#include "control/Options_inlines.hpp"

runtime/compiler/build/files/common.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ JIT_PRODUCT_BACKEND_SOURCES+=\
7070
omr/compiler/codegen/CodeGenPrep.cpp \
7171
omr/compiler/codegen/CodeGenRA.cpp \
7272
omr/compiler/codegen/ELFGenerator.cpp \
73-
omr/compiler/codegen/FrontEnd.cpp \
73+
omr/compiler/env/FrontEnd.cpp \
7474
omr/compiler/codegen/LiveRegister.cpp \
7575
omr/compiler/codegen/NodeEvaluation.cpp \
7676
omr/compiler/codegen/OMRAheadOfTimeCompile.cpp \

runtime/compiler/codegen/CodeGenRA.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#include "codegen/BackingStore.hpp"
3939
#include "codegen/CodeGenerator.hpp"
4040
#include "codegen/CodeGenerator_inlines.hpp"
41-
#include "codegen/FrontEnd.hpp"
41+
#include "env/FrontEnd.hpp"
4242
#include "codegen/GCStackAtlas.hpp"
4343
#include "codegen/Instruction.hpp"
4444
#include "codegen/Linkage.hpp"

runtime/compiler/compile/AOTClassInfo.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -23,7 +23,7 @@
2323
#ifndef TR_AOTCLASSINFO_INCL
2424
#define TR_AOTCLASSINFO_INCL
2525

26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "runtime/J9Runtime.hpp"
2828
#include "env/jittypes.h"
2929
#include "env/VMJ9.h"

runtime/compiler/env/CHTable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "env/CHTable.hpp"
2424

2525
#include "codegen/CodeGenerator.hpp"
26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "env/CompilerEnv.hpp"
2828
#include "env/KnownObjectTable.hpp"
2929
#include "compile/CompilationTypes.hpp"

runtime/compiler/env/ClassTableCriticalSection.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#ifndef TR_CLASSTABLECRITICALSECTION_INCL
2424
#define TR_CLASSTABLECRITICALSECTION_INCL
2525

26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "env/VMJ9.h"
2828

2929
namespace TR

runtime/compiler/env/PersistentCHTable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stdint.h>
2626
#include <stdio.h>
2727
#include <string.h>
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "compile/Compilation.hpp"
3030
#include "compile/CompilationTypes.hpp"
3131
#include "compile/ResolvedMethod.hpp"

runtime/compiler/env/VMJ9.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include "j9cp.h"
3030
#include "j9cfg.h"
3131
#include "rommeth.h"
32-
#include "codegen/FrontEnd.hpp"
32+
#include "env/FrontEnd.hpp"
3333
#include "env/KnownObjectTable.hpp"
3434
#include "compile/CompilationTypes.hpp"
3535
#include "compile/Method.hpp"

runtime/compiler/env/annotations/AnnotationBase.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -24,7 +24,7 @@
2424
#define ANNOTATIONBASE_INCL
2525

2626
#include "j9.h"
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "infra/List.hpp"
2929
#include "env/VMJ9.h"
3030

runtime/compiler/env/j9field.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "j9protos.h"
2828
#include "j9consts.h"
2929
#include "j9comp.h"
30-
#include "codegen/FrontEnd.hpp"
30+
#include "env/FrontEnd.hpp"
3131
#include "env/IO.hpp"
3232

3333
class TR_VMField

runtime/compiler/env/j9method.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#ifndef j9method_h
2424
#define j9method_h
2525

26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "compile/Compilation.hpp"
2828
#include "compile/Method.hpp"
2929
#include "compile/ResolvedMethod.hpp"

runtime/compiler/il/J9Symbol.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include <stddef.h>
3434
#include <stdint.h>
3535
#include <string.h>
36-
#include "codegen/FrontEnd.hpp"
36+
#include "env/FrontEnd.hpp"
3737
#include "compile/Compilation.hpp"
3838
#include "compile/SymbolReferenceTable.hpp"
3939
#include "env/TRMemory.hpp"

runtime/compiler/ilgen/J9IlGeneratorMethodDetails.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
2121
*******************************************************************************/
2222

23-
#include "codegen/FrontEnd.hpp"
23+
#include "env/FrontEnd.hpp"
2424
#include "env/KnownObjectTable.hpp"
2525
#include "compile/Compilation.hpp"
2626
#include "compile/InlineBlock.hpp"

runtime/compiler/optimizer/AllocationSinking.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <stdlib.h>
3131
#include <string.h>
3232
#include "codegen/CodeGenerator.hpp"
33-
#include "codegen/FrontEnd.hpp"
33+
#include "env/FrontEnd.hpp"
3434
#include "compile/Compilation.hpp"
3535
#include "compile/Method.hpp"
3636
#include "control/Options.hpp"

runtime/compiler/optimizer/DataAccessAccelerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <stdlib.h>
3232
#include <string.h>
3333
#include "codegen/CodeGenerator.hpp"
34-
#include "codegen/FrontEnd.hpp"
34+
#include "env/FrontEnd.hpp"
3535
#include "codegen/RecognizedMethods.hpp"
3636
#include "codegen/RegisterConstants.hpp"
3737
#include "compile/Compilation.hpp"

runtime/compiler/optimizer/DynamicLiteralPool.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <stdlib.h>
3131
#include <string.h>
3232
#include "codegen/CodeGenerator.hpp"
33-
#include "codegen/FrontEnd.hpp"
33+
#include "env/FrontEnd.hpp"
3434
#include "compile/Compilation.hpp"
3535
#include "compile/Method.hpp"
3636
#include "compile/SymbolReferenceTable.hpp"

runtime/compiler/optimizer/EscapeAnalysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <stdio.h>
3232
#include <string.h>
3333
#include "codegen/CodeGenerator.hpp"
34-
#include "codegen/FrontEnd.hpp"
34+
#include "env/FrontEnd.hpp"
3535
#include "codegen/RecognizedMethods.hpp"
3636
#include "compile/Compilation.hpp"
3737
#include "compile/CompilationTypes.hpp"

runtime/compiler/optimizer/EstimateCodeSize.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "env/StackMemoryRegion.hpp"
2424
#include "optimizer/EstimateCodeSize.hpp"
2525

26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "compile/Compilation.hpp"
2828
#include "il/ResolvedMethodSymbol.hpp"
2929
#include "infra/Assert.hpp"

runtime/compiler/optimizer/IdiomRecognition.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <stdlib.h>
2828
#include <string.h>
2929
#include "codegen/CodeGenerator.hpp"
30-
#include "codegen/FrontEnd.hpp"
30+
#include "env/FrontEnd.hpp"
3131
#include "codegen/RecognizedMethods.hpp"
3232
#include "compile/Compilation.hpp"
3333
#include "compile/CompilationTypes.hpp"

runtime/compiler/optimizer/IdiomRecognitionUtils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <stddef.h>
2727
#include <stdint.h>
2828
#include "codegen/CodeGenerator.hpp"
29-
#include "codegen/FrontEnd.hpp"
29+
#include "env/FrontEnd.hpp"
3030
#include "compile/Compilation.hpp"
3131
#include "env/CompilerEnv.hpp"
3232
#include "env/TRMemory.hpp"

runtime/compiler/optimizer/IdiomTransformations.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stdlib.h>
2626
#include <string.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "compile/Compilation.hpp"
3030
#include "compile/SymbolReferenceTable.hpp"
3131
#include "control/Options.hpp"

runtime/compiler/optimizer/InterProceduralAnalyzer.cpp

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

2525
#include <stdint.h>
2626
#include <string.h>
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "compile/Compilation.hpp"
2929
#include "compile/Method.hpp"
3030
#include "compile/ResolvedMethod.hpp"

runtime/compiler/optimizer/J9OptimizationManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include "optimizer/OptimizationManager_inlines.hpp"
2525

2626
#include "codegen/CodeGenerator.hpp"
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "compile/Compilation.hpp"
2929
#include "compile/CompilationTypes.hpp"
3030
#include "compile/Method.hpp"

runtime/compiler/optimizer/J9SimplifierHandlers.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include <stdlib.h>
3535
#include <string.h>
3636
#include "codegen/CodeGenerator.hpp"
37-
#include "codegen/FrontEnd.hpp"
37+
#include "env/FrontEnd.hpp"
3838
#include "codegen/RecognizedMethods.hpp"
3939
#include "codegen/TreeEvaluator.hpp"
4040
#include "compile/Compilation.hpp"

runtime/compiler/optimizer/JitProfiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stddef.h>
2626
#include <stdint.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "codegen/LinkageConventionsEnum.hpp"
3030
#include "compile/Compilation.hpp"
3131
#include "compile/SymbolReferenceTable.hpp"

runtime/compiler/optimizer/MonitorElimination.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <string.h>
2828
#include <algorithm>
2929
#include "codegen/CodeGenerator.hpp"
30-
#include "codegen/FrontEnd.hpp"
30+
#include "env/FrontEnd.hpp"
3131
#include "compile/Compilation.hpp"
3232
#include "compile/Method.hpp"
3333
#include "compile/ResolvedMethod.hpp"

runtime/compiler/optimizer/NewInitialization.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stdint.h>
2626
#include <string.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "compile/Compilation.hpp"
3030
#include "compile/CompilationTypes.hpp"
3131
#include "compile/ResolvedMethod.hpp"

runtime/compiler/optimizer/ProfileGenerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <stddef.h>
2727
#include <stdint.h>
2828
#include "codegen/CodeGenerator.hpp"
29-
#include "codegen/FrontEnd.hpp"
29+
#include "env/FrontEnd.hpp"
3030
#include "compile/Compilation.hpp"
3131
#include "compile/SymbolReferenceTable.hpp"
3232
#include "control/Options.hpp"

runtime/compiler/optimizer/SPMDParallelizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <stdio.h>
2828
#include <string.h>
2929
#include "codegen/CodeGenerator.hpp"
30-
#include "codegen/FrontEnd.hpp"
30+
#include "env/FrontEnd.hpp"
3131
#include "codegen/LinkageConventionsEnum.hpp"
3232
#include "codegen/RecognizedMethods.hpp"
3333
#include "compile/Compilation.hpp"

runtime/compiler/optimizer/SequentialStoreSimplifier.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <stdio.h>
2929
#include <string.h>
3030
#include "codegen/CodeGenerator.hpp"
31-
#include "codegen/FrontEnd.hpp"
31+
#include "env/FrontEnd.hpp"
3232
#include "codegen/StorageInfo.hpp"
3333
#include "compile/Compilation.hpp"
3434
#include "compile/SymbolReferenceTable.hpp"

runtime/compiler/optimizer/SignExtendLoads.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stdint.h>
2626
#include <string.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "compile/Compilation.hpp"
3030
#include "env/CompilerEnv.hpp"
3131
#include "env/StackMemoryRegion.hpp"

runtime/compiler/optimizer/StaticFinalFieldFolding.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stddef.h>
2525
#include <stdint.h>
2626
#include "codegen/CodeGenerator.hpp"
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "compile/Compilation.hpp"
2929
#include "compile/ResolvedMethod.hpp"
3030
#include "compile/SymbolReferenceTable.hpp"

runtime/compiler/optimizer/StringPeepholes.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <stdlib.h>
3131
#include <string.h>
3232
#include "codegen/CodeGenerator.hpp"
33-
#include "codegen/FrontEnd.hpp"
33+
#include "env/FrontEnd.hpp"
3434
#include "codegen/RecognizedMethods.hpp"
3535
#include "compile/Compilation.hpp"
3636
#include "compile/Method.hpp"

runtime/compiler/optimizer/UnsafeFastPath.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stddef.h>
2626
#include <stdint.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "compile/Compilation.hpp"
3030
#include "compile/ResolvedMethod.hpp"
3131
#include "compile/SymbolReferenceTable.hpp"

runtime/compiler/optimizer/VPBCDConstraint.cpp

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

2525
#include <ctype.h>
2626
#include <stddef.h>
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "env/KnownObjectTable.hpp"
2929
#include "env/PersistentCHTable.hpp"
3030
#include "env/VMJ9.h"

runtime/compiler/optimizer/VarHandleTransformer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stddef.h>
2525
#include <stdint.h>
2626
#include "codegen/CodeGenerator.hpp"
27-
#include "codegen/FrontEnd.hpp"
27+
#include "env/FrontEnd.hpp"
2828
#include "compile/Compilation.hpp"
2929
#include "compile/Method.hpp"
3030
#include "compile/ResolvedMethod.hpp"

runtime/compiler/p/codegen/GenerateInstructions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <stdlib.h>
2828
#include "codegen/BackingStore.hpp"
2929
#include "codegen/CodeGenerator.hpp"
30-
#include "codegen/FrontEnd.hpp"
30+
#include "env/FrontEnd.hpp"
3131
#include "codegen/InstOpCode.hpp"
3232
#include "codegen/Instruction.hpp"
3333
#include "codegen/MemoryReference.hpp"

runtime/compiler/p/codegen/J9AheadOfTimeCompile.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include "codegen/AheadOfTimeCompile.hpp"
2424
#include "codegen/CodeGenerator.hpp"
25-
#include "codegen/FrontEnd.hpp"
25+
#include "env/FrontEnd.hpp"
2626
#include "codegen/Instruction.hpp"
2727
#include "compile/AOTClassInfo.hpp"
2828
#include "compile/Compilation.hpp"

runtime/compiler/p/codegen/J9UnresolvedDataSnippet.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include <stddef.h>
2626
#include <stdint.h>
2727
#include "codegen/CodeGenerator.hpp"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "codegen/Instruction.hpp"
3030
#include "codegen/Machine.hpp"
3131
#include "codegen/MemoryReference.hpp"

runtime/compiler/p/codegen/Trampoline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <stddef.h>
2424
#include <stdint.h>
2525
#include "codegen/CodeGenerator.hpp"
26-
#include "codegen/FrontEnd.hpp"
26+
#include "env/FrontEnd.hpp"
2727
#include "control/Options.hpp"
2828
#include "control/Options_inlines.hpp"
2929
#include "env/jittypes.h"

runtime/compiler/p/runtime/PPCHWProfiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "j9cfg.h"
2626
#include "j9port_generated.h"
2727
#include "util_api.h"
28-
#include "codegen/FrontEnd.hpp"
28+
#include "env/FrontEnd.hpp"
2929
#include "control/Recompilation.hpp"
3030
#include "control/RecompilationInfo.hpp"
3131
#include "env/jittypes.h"

0 commit comments

Comments
 (0)