2009-07-16 15:27:25 +02:00
|
|
|
//==- SystemZTargetMachine.h - Define TargetMachine for SystemZ ---*- C++ -*-=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the SystemZ specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
|
|
|
|
#define LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "SystemZInstrInfo.h"
|
|
|
|
#include "SystemZISelLowering.h"
|
2011-01-10 13:39:04 +01:00
|
|
|
#include "SystemZFrameLowering.h"
|
2010-05-11 19:31:57 +02:00
|
|
|
#include "SystemZSelectionDAGInfo.h"
|
2009-07-16 15:27:25 +02:00
|
|
|
#include "SystemZRegisterInfo.h"
|
|
|
|
#include "SystemZSubtarget.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
2011-01-10 13:39:04 +01:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2009-07-16 15:27:25 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// SystemZTargetMachine
|
|
|
|
///
|
|
|
|
class SystemZTargetMachine : public LLVMTargetMachine {
|
|
|
|
SystemZSubtarget Subtarget;
|
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
|
|
SystemZInstrInfo InstrInfo;
|
|
|
|
SystemZTargetLowering TLInfo;
|
2010-05-11 19:31:57 +02:00
|
|
|
SystemZSelectionDAGInfo TSInfo;
|
2011-01-10 13:39:04 +01:00
|
|
|
SystemZFrameLowering FrameLowering;
|
2009-07-16 15:27:25 +02:00
|
|
|
public:
|
2009-08-03 01:37:13 +02:00
|
|
|
SystemZTargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS);
|
2009-07-16 15:27:25 +02:00
|
|
|
|
2011-01-10 13:39:04 +01:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const {
|
|
|
|
return &FrameLowering;
|
|
|
|
}
|
2009-07-16 15:27:25 +02:00
|
|
|
virtual const SystemZInstrInfo *getInstrInfo() const { return &InstrInfo; }
|
|
|
|
virtual const TargetData *getTargetData() const { return &DataLayout;}
|
|
|
|
virtual const SystemZSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
|
|
|
|
2009-07-16 15:51:53 +02:00
|
|
|
virtual const SystemZRegisterInfo *getRegisterInfo() const {
|
2009-07-16 15:27:25 +02:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
|
|
|
|
2010-04-17 17:26:15 +02:00
|
|
|
virtual const SystemZTargetLowering *getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
2009-07-16 15:27:25 +02:00
|
|
|
}
|
|
|
|
|
2010-05-11 19:31:57 +02:00
|
|
|
virtual const SystemZSelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:27:25 +02:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
|
|
|
|
}; // SystemZTargetMachine.
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H
|