1 //===-- ARMTargetMachine.h - Define TargetMachine for ARM -------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the ARM specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
14 #ifndef ARMTARGETMACHINE_H
15 #define ARMTARGETMACHINE_H
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetData.h"
19 #include "ARMInstrInfo.h"
20 #include "ARMFrameInfo.h"
21 #include "ARMJITInfo.h"
22 #include "ARMSubtarget.h"
23 #include "ARMISelLowering.h"
24 #include "Thumb1InstrInfo.h"
25 #include "Thumb2InstrInfo.h"
29 class ARMBaseTargetMachine
: public LLVMTargetMachine
{
31 ARMSubtarget Subtarget
;
34 ARMFrameInfo FrameInfo
;
36 InstrItineraryData InstrItins
;
37 Reloc::Model DefRelocModel
; // Reloc model before it's overridden.
40 ARMBaseTargetMachine(const Target
&T
, const std::string
&TT
,
41 const std::string
&FS
, bool isThumb
);
43 virtual const ARMFrameInfo
*getFrameInfo() const { return &FrameInfo
; }
44 virtual ARMJITInfo
*getJITInfo() { return &JITInfo
; }
45 virtual const ARMSubtarget
*getSubtargetImpl() const { return &Subtarget
; }
46 virtual const InstrItineraryData
getInstrItineraryData() const {
50 virtual const TargetAsmInfo
*createTargetAsmInfo() const;
52 // Pass Pipeline Configuration
53 virtual bool addInstSelector(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
54 virtual bool addPreRegAlloc(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
55 virtual bool addPreEmitPass(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
56 virtual bool addCodeEmitter(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
,
57 MachineCodeEmitter
&MCE
);
58 virtual bool addCodeEmitter(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
,
60 virtual bool addCodeEmitter(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
,
61 ObjectCodeEmitter
&OCE
);
62 virtual bool addSimpleCodeEmitter(PassManagerBase
&PM
,
63 CodeGenOpt::Level OptLevel
,
64 MachineCodeEmitter
&MCE
);
65 virtual bool addSimpleCodeEmitter(PassManagerBase
&PM
,
66 CodeGenOpt::Level OptLevel
,
68 virtual bool addSimpleCodeEmitter(PassManagerBase
&PM
,
69 CodeGenOpt::Level OptLevel
,
70 ObjectCodeEmitter
&OCE
);
73 /// ARMTargetMachine - ARM target machine.
75 class ARMTargetMachine
: public ARMBaseTargetMachine
{
76 ARMInstrInfo InstrInfo
;
77 const TargetData DataLayout
; // Calculates type size & alignment
78 ARMTargetLowering TLInfo
;
80 ARMTargetMachine(const Target
&T
, const std::string
&TT
,
81 const std::string
&FS
);
83 virtual const ARMRegisterInfo
*getRegisterInfo() const {
84 return &InstrInfo
.getRegisterInfo();
87 virtual ARMTargetLowering
*getTargetLowering() const {
88 return const_cast<ARMTargetLowering
*>(&TLInfo
);
91 virtual const ARMInstrInfo
*getInstrInfo() const { return &InstrInfo
; }
92 virtual const TargetData
*getTargetData() const { return &DataLayout
; }
95 /// ThumbTargetMachine - Thumb target machine.
96 /// Due to the way architectures are handled, this represents both
97 /// Thumb-1 and Thumb-2.
99 class ThumbTargetMachine
: public ARMBaseTargetMachine
{
100 ARMBaseInstrInfo
*InstrInfo
; // either Thumb1InstrInfo or Thumb2InstrInfo
101 const TargetData DataLayout
; // Calculates type size & alignment
102 ARMTargetLowering TLInfo
;
104 ThumbTargetMachine(const Target
&T
, const std::string
&TT
,
105 const std::string
&FS
);
107 /// returns either Thumb1RegisterInfo of Thumb2RegisterInfo
108 virtual const ARMBaseRegisterInfo
*getRegisterInfo() const {
109 return &InstrInfo
->getRegisterInfo();
112 virtual ARMTargetLowering
*getTargetLowering() const {
113 return const_cast<ARMTargetLowering
*>(&TLInfo
);
116 /// returns either Thumb1InstrInfo or Thumb2InstrInfo
117 virtual const ARMBaseInstrInfo
*getInstrInfo() const { return InstrInfo
; }
118 virtual const TargetData
*getTargetData() const { return &DataLayout
; }
121 } // end namespace llvm