opnsense-src/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h

68 lines
2.2 KiB
C
Raw Normal View History

2009-10-14 13:57:32 -04: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"
#include "SystemZFrameLowering.h"
2010-05-27 11:15:58 -04:00
#include "SystemZSelectionDAGInfo.h"
2009-10-14 13:57:32 -04:00
#include "SystemZRegisterInfo.h"
#include "SystemZSubtarget.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetFrameLowering.h"
2009-10-14 13:57:32 -04: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-27 11:15:58 -04:00
SystemZSelectionDAGInfo TSInfo;
SystemZFrameLowering FrameLowering;
2009-10-14 13:57:32 -04:00
public:
SystemZTargetMachine(const Target &T, const std::string &TT,
const std::string &FS);
virtual const TargetFrameLowering *getFrameLowering() const {
return &FrameLowering;
}
2009-10-14 13:57:32 -04:00
virtual const SystemZInstrInfo *getInstrInfo() const { return &InstrInfo; }
virtual const TargetData *getTargetData() const { return &DataLayout;}
virtual const SystemZSubtarget *getSubtargetImpl() const { return &Subtarget; }
virtual const SystemZRegisterInfo *getRegisterInfo() const {
return &InstrInfo.getRegisterInfo();
}
2010-05-04 12:11:02 -04:00
virtual const SystemZTargetLowering *getTargetLowering() const {
return &TLInfo;
2009-10-14 13:57:32 -04:00
}
2010-05-27 11:15:58 -04:00
virtual const SystemZSelectionDAGInfo* getSelectionDAGInfo() const {
return &TSInfo;
}
2009-10-14 13:57:32 -04:00
virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
}; // SystemZTargetMachine.
} // end namespace llvm
#endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H