blob: 43dce4bd148e3ad658811d81add2788d9e72ef8f [file] [log] [blame]
Anton Korobeynikov4403b932009-07-16 13:27:25 +00001//==- SystemZTargetMachine.h - Define TargetMachine for SystemZ ---*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the SystemZ specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14
15#ifndef LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
16#define LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
17
18#include "SystemZInstrInfo.h"
19#include "SystemZISelLowering.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000020#include "SystemZFrameLowering.h"
Dan Gohmanff7a5622010-05-11 17:31:57 +000021#include "SystemZSelectionDAGInfo.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000022#include "SystemZRegisterInfo.h"
23#include "SystemZSubtarget.h"
24#include "llvm/Target/TargetData.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000025#include "llvm/Target/TargetFrameLowering.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000026#include "llvm/Target/TargetMachine.h"
27
28namespace llvm {
29
30/// SystemZTargetMachine
31///
32class SystemZTargetMachine : public LLVMTargetMachine {
33 SystemZSubtarget Subtarget;
34 const TargetData DataLayout; // Calculates type size & alignment
35 SystemZInstrInfo InstrInfo;
36 SystemZTargetLowering TLInfo;
Dan Gohmanff7a5622010-05-11 17:31:57 +000037 SystemZSelectionDAGInfo TSInfo;
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000038 SystemZFrameLowering FrameLowering;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000039public:
Evan Cheng43966132011-07-19 06:37:02 +000040 SystemZTargetMachine(const Target &T, StringRef TT,
Evan Cheng34ad6db2011-07-20 07:51:56 +000041 StringRef CPU, StringRef FS,
42 Reloc::Model RM, CodeModel::Model CM);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000043
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000044 virtual const TargetFrameLowering *getFrameLowering() const {
45 return &FrameLowering;
46 }
Anton Korobeynikov4403b932009-07-16 13:27:25 +000047 virtual const SystemZInstrInfo *getInstrInfo() const { return &InstrInfo; }
48 virtual const TargetData *getTargetData() const { return &DataLayout;}
49 virtual const SystemZSubtarget *getSubtargetImpl() const { return &Subtarget; }
50
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +000051 virtual const SystemZRegisterInfo *getRegisterInfo() const {
Anton Korobeynikov4403b932009-07-16 13:27:25 +000052 return &InstrInfo.getRegisterInfo();
53 }
54
Dan Gohmand858e902010-04-17 15:26:15 +000055 virtual const SystemZTargetLowering *getTargetLowering() const {
56 return &TLInfo;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000057 }
58
Dan Gohmanff7a5622010-05-11 17:31:57 +000059 virtual const SystemZSelectionDAGInfo* getSelectionDAGInfo() const {
60 return &TSInfo;
61 }
62
Anton Korobeynikov4403b932009-07-16 13:27:25 +000063 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000064}; // SystemZTargetMachine.
65
66} // end namespace llvm
67
68#endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H