blob: 6af829bb596692ae3342a22d2f935d1f5ca04404 [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"
Dan Gohmanff7a5622010-05-11 17:31:57 +000020#include "SystemZSelectionDAGInfo.h"
Anton Korobeynikov4403b932009-07-16 13:27:25 +000021#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"
26
27namespace llvm {
28
29/// SystemZTargetMachine
30///
31class SystemZTargetMachine : public LLVMTargetMachine {
32 SystemZSubtarget Subtarget;
33 const TargetData DataLayout; // Calculates type size & alignment
34 SystemZInstrInfo InstrInfo;
35 SystemZTargetLowering TLInfo;
Dan Gohmanff7a5622010-05-11 17:31:57 +000036 SystemZSelectionDAGInfo TSInfo;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000037
38 // SystemZ does not have any call stack frame, therefore not having
39 // any SystemZ specific FrameInfo class.
40 TargetFrameInfo FrameInfo;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000041public:
Daniel Dunbare28039c2009-08-02 23:37:13 +000042 SystemZTargetMachine(const Target &T, const std::string &TT,
43 const std::string &FS);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000044
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; }
49
Anton Korobeynikov656ac6f2009-07-16 13:51:53 +000050 virtual const SystemZRegisterInfo *getRegisterInfo() const {
Anton Korobeynikov4403b932009-07-16 13:27:25 +000051 return &InstrInfo.getRegisterInfo();
52 }
53
Dan Gohmand858e902010-04-17 15:26:15 +000054 virtual const SystemZTargetLowering *getTargetLowering() const {
55 return &TLInfo;
Anton Korobeynikov4403b932009-07-16 13:27:25 +000056 }
57
Dan Gohmanff7a5622010-05-11 17:31:57 +000058 virtual const SystemZSelectionDAGInfo* getSelectionDAGInfo() const {
59 return &TSInfo;
60 }
61
Anton Korobeynikov4403b932009-07-16 13:27:25 +000062 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Anton Korobeynikov4403b932009-07-16 13:27:25 +000063}; // SystemZTargetMachine.
64
65} // end namespace llvm
66
67#endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H