Skip to content

Commit

Permalink
Replace includes of ARMOps.hpp with OMRInstOpCode.hpp
Browse files Browse the repository at this point in the history
This is done in preparation for eliminating the former with the latter.
  • Loading branch information
fjeremic committed Jun 8, 2021
1 parent faaca57 commit 5d05197
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion compiler/arm/codegen/ARMInstruction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define ARMINSTRUCTION_INCL

#include "codegen/Instruction.hpp"
#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/MemoryReference.hpp"
#include "codegen/RegisterDependency.hpp"
#include "codegen/UnresolvedDataSnippet.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/ARMOutOfLineCodeSection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#ifndef ARMOUTOFLINECODESECTION_INCL
#define ARMOUTOFLINECODESECTION_INCL

#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/OutOfLineCodeSection.hpp"
#include "env/TRMemory.hpp"

Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/BinaryCommutativeAnalyser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef ARMBINARYCOMMUTATIVEANALYSER_INCL
#define ARMBINARYCOMMUTATIVEANALYSER_INCL

#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/Register.hpp"
#include "il/Node.hpp"
#include "codegen/Analyser.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace OMR { typedef OMR::ARM::CodeGenerator CodeGeneratorConnector; }
#include "compiler/codegen/OMRCodeGenerator.hpp"

#include <stdint.h>
#include "arm/codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/RealRegister.hpp"
#include "codegen/ScratchRegisterManager.hpp"
#include "env/jittypes.h"
Expand Down
1 change: 1 addition & 0 deletions compiler/arm/codegen/OMRInstOpCode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ namespace OMR { typedef OMR::ARM::InstOpCode InstOpCodeConnector; }
#endif

#include "compiler/codegen/OMRInstOpCode.hpp"
#include "arm/codegen/ARMOps.hpp"

namespace OMR
{
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OMRInstruction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace OMR { typedef OMR::ARM::Instruction InstructionConnector; }

#include "compiler/codegen/OMRInstruction.hpp"

#include "arm/codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/GCStackMap.hpp"
#include "codegen/RegisterConstants.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OMRLinkage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace OMR { typedef OMR::ARM::Linkage LinkageConnector; }
#endif

#include "compiler/codegen/OMRLinkage.hpp"
#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/LinkageConventionsEnum.hpp"
#include "codegen/RealRegister.hpp"
#include "infra/Annotations.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OMRMemoryReference.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace OMR { typedef OMR::ARM::MemoryReference MemoryReferenceConnector; }
#include "compiler/codegen/OMRMemoryReference.hpp"

#include <stdint.h>
#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "env/jittypes.h"
#include "il/LabelSymbol.hpp"
#include "il/MethodSymbol.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OMRTreeEvaluator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace OMR { typedef OMR::ARM::TreeEvaluator TreeEvaluatorConnector; }
#include "compiler/codegen/OMRTreeEvaluator.hpp"

#include "arm/codegen/InstOpCode.hpp"
#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"
#include "codegen/ARMConditionCode.hpp"
#include "il/ILOps.hpp"
#include "runtime/Runtime.hpp"
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OpBinary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* 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
*******************************************************************************/

#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"

const TR_ARMOpCode::TR_OpCodeBinaryEntry TR_ARMOpCode::binaryEncodings[ARMNumOpCodes] =
{
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/OpProperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* 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
*******************************************************************************/

#include "codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"

const uint32_t TR_ARMOpCode::properties[ARMNumOpCodes] =
{
Expand Down
2 changes: 1 addition & 1 deletion compiler/arm/codegen/SubtractAnalyser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "codegen/Analyser.hpp"

#include <stdint.h>
#include "arm/codegen/ARMOps.hpp"
#include "codegen/InstOpCode.hpp"

namespace TR { class CodeGenerator; }
namespace TR { class Node; }
Expand Down

0 comments on commit 5d05197

Please sign in to comment.