2012-12-11 21:25:42 +00:00
|
|
|
//===-- AMDGPUTargetMachine.h - AMDGPU TargetMachine Interface --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief The AMDGPU TargetMachine interface definition for hw codgen targets.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef AMDGPU_TARGET_MACHINE_H
|
|
|
|
#define AMDGPU_TARGET_MACHINE_H
|
|
|
|
|
2013-02-06 17:32:29 +00:00
|
|
|
#include "AMDGPUFrameLowering.h"
|
2012-12-11 21:25:42 +00:00
|
|
|
#include "AMDGPUInstrInfo.h"
|
|
|
|
#include "AMDGPUSubtarget.h"
|
|
|
|
#include "AMDILIntrinsicInfo.h"
|
|
|
|
#include "R600ISelLowering.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2012-12-11 21:25:42 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class AMDGPUTargetMachine : public LLVMTargetMachine {
|
|
|
|
|
|
|
|
AMDGPUSubtarget Subtarget;
|
|
|
|
const DataLayout Layout;
|
|
|
|
AMDGPUFrameLowering FrameLowering;
|
|
|
|
AMDGPUIntrinsicInfo IntrinsicInfo;
|
2014-04-21 09:34:48 +00:00
|
|
|
std::unique_ptr<AMDGPUTargetLowering> TLInfo;
|
2013-05-23 03:28:39 +00:00
|
|
|
const InstrItineraryData *InstrItins;
|
2012-12-11 21:25:42 +00:00
|
|
|
|
|
|
|
public:
|
2013-05-23 03:28:39 +00:00
|
|
|
AMDGPUTargetMachine(const Target &T, StringRef TT, StringRef FS,
|
|
|
|
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
|
|
|
CodeModel::Model CM, CodeGenOpt::Level OL);
|
|
|
|
~AMDGPUTargetMachine();
|
2014-04-29 07:57:24 +00:00
|
|
|
const AMDGPUFrameLowering *getFrameLowering() const override {
|
2013-05-23 03:28:39 +00:00
|
|
|
return &FrameLowering;
|
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
const AMDGPUIntrinsicInfo *getIntrinsicInfo() const override {
|
2013-05-23 03:28:39 +00:00
|
|
|
return &IntrinsicInfo;
|
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
const AMDGPUInstrInfo *getInstrInfo() const override {
|
2014-06-13 01:32:00 +00:00
|
|
|
return getSubtargetImpl()->getInstrInfo();
|
2013-05-23 03:31:47 +00:00
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
const AMDGPUSubtarget *getSubtargetImpl() const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
|
|
|
const AMDGPURegisterInfo *getRegisterInfo() const override {
|
2014-06-13 01:32:00 +00:00
|
|
|
return &getInstrInfo()->getRegisterInfo();
|
2013-05-23 03:28:39 +00:00
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
AMDGPUTargetLowering *getTargetLowering() const override {
|
2013-05-23 03:31:47 +00:00
|
|
|
return TLInfo.get();
|
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
const InstrItineraryData *getInstrItineraryData() const override {
|
2013-05-23 03:28:39 +00:00
|
|
|
return InstrItins;
|
|
|
|
}
|
2014-04-29 07:57:24 +00:00
|
|
|
const DataLayout *getDataLayout() const override { return &Layout; }
|
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2013-07-27 00:01:07 +00:00
|
|
|
|
|
|
|
/// \brief Register R600 analysis passes with a pass manager.
|
2014-04-29 07:57:24 +00:00
|
|
|
void addAnalysisPasses(PassManagerBase &PM) override;
|
2012-12-11 21:25:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace llvm
|
|
|
|
|
|
|
|
#endif // AMDGPU_TARGET_MACHINE_H
|