1 //==- SystemZTargetMachine.h - Define TargetMachine for SystemZ ---*- 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 SystemZ specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
16 #define LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
18 #include "SystemZInstrInfo.h"
19 #include "SystemZISelLowering.h"
20 #include "SystemZSelectionDAGInfo.h"
21 #include "SystemZRegisterInfo.h"
22 #include "SystemZSubtarget.h"
23 #include "llvm/Target/TargetData.h"
24 #include "llvm/Target/TargetFrameInfo.h"
25 #include "llvm/Target/TargetMachine.h"
29 /// SystemZTargetMachine
31 class SystemZTargetMachine
: public LLVMTargetMachine
{
32 SystemZSubtarget Subtarget
;
33 const TargetData DataLayout
; // Calculates type size & alignment
34 SystemZInstrInfo InstrInfo
;
35 SystemZTargetLowering TLInfo
;
36 SystemZSelectionDAGInfo TSInfo
;
38 // SystemZ does not have any call stack frame, therefore not having
39 // any SystemZ specific FrameInfo class.
40 TargetFrameInfo FrameInfo
;
42 SystemZTargetMachine(const Target
&T
, const std::string
&TT
,
43 const std::string
&FS
);
45 virtual const TargetFrameInfo
*getFrameInfo() const { return &FrameInfo
; }
46 virtual const SystemZInstrInfo
*getInstrInfo() const { return &InstrInfo
; }
47 virtual const TargetData
*getTargetData() const { return &DataLayout
;}
48 virtual const SystemZSubtarget
*getSubtargetImpl() const { return &Subtarget
; }
50 virtual const SystemZRegisterInfo
*getRegisterInfo() const {
51 return &InstrInfo
.getRegisterInfo();
54 virtual const SystemZTargetLowering
*getTargetLowering() const {
58 virtual const SystemZSelectionDAGInfo
* getSelectionDAGInfo() const {
62 virtual bool addInstSelector(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
63 }; // SystemZTargetMachine.
65 } // end namespace llvm
67 #endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H