2012-12-12 05:25:42 +08: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUTARGETMACHINE_H
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-06-24 02:00:31 +08:00
|
|
|
#include "AMDGPUIntrinsicInfo.h"
|
2012-12-12 05:25:42 +08:00
|
|
|
#include "AMDGPUSubtarget.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2015-01-07 02:00:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AMDGPU Target Machine (R600+)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
class AMDGPUTargetMachine : public LLVMTargetMachine {
|
2015-01-07 02:00:21 +08:00
|
|
|
protected:
|
2015-09-26 05:41:28 +08:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2014-08-05 01:37:43 +08:00
|
|
|
AMDGPUIntrinsicInfo IntrinsicInfo;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
|
|
|
public:
|
2016-02-06 02:29:17 +08:00
|
|
|
AMDGPUTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2016-05-19 06:04:49 +08:00
|
|
|
StringRef FS, TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2013-05-23 11:28:39 +08:00
|
|
|
~AMDGPUTargetMachine();
|
2015-03-12 08:07:24 +08:00
|
|
|
|
2016-06-24 14:30:11 +08:00
|
|
|
const AMDGPUSubtarget *getSubtargetImpl() const;
|
|
|
|
const AMDGPUSubtarget *getSubtargetImpl(const Function &) const override;
|
|
|
|
|
2014-09-03 19:41:21 +08:00
|
|
|
const AMDGPUIntrinsicInfo *getIntrinsicInfo() const override {
|
|
|
|
return &IntrinsicInfo;
|
|
|
|
}
|
2015-02-01 21:20:00 +08:00
|
|
|
TargetIRAnalysis getTargetIRAnalysis() override;
|
2015-01-31 19:17:59 +08:00
|
|
|
|
2014-11-13 17:26:31 +08:00
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
2015-09-26 05:41:28 +08:00
|
|
|
return TLOF.get();
|
2014-11-13 17:26:31 +08:00
|
|
|
}
|
2012-12-12 05:25:42 +08:00
|
|
|
};
|
|
|
|
|
2015-02-12 01:11:50 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// R600 Target Machine (R600 -> Cayman)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
class R600TargetMachine final : public AMDGPUTargetMachine {
|
2016-06-24 14:30:11 +08:00
|
|
|
private:
|
|
|
|
R600Subtarget Subtarget;
|
2015-02-12 01:11:50 +08:00
|
|
|
|
|
|
|
public:
|
2016-02-06 02:29:17 +08:00
|
|
|
R600TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2016-05-19 06:04:49 +08:00
|
|
|
StringRef FS, TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2015-02-12 01:11:51 +08:00
|
|
|
|
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2016-06-24 14:30:11 +08:00
|
|
|
|
|
|
|
const R600Subtarget *getSubtargetImpl() const {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
const R600Subtarget *getSubtargetImpl(const Function &) const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
2015-02-12 01:11:50 +08:00
|
|
|
};
|
|
|
|
|
2015-01-07 02:00:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// GCN Target Machine (SI+)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-03-11 16:00:27 +08:00
|
|
|
class GCNTargetMachine final : public AMDGPUTargetMachine {
|
2016-06-24 14:30:11 +08:00
|
|
|
private:
|
|
|
|
SISubtarget Subtarget;
|
2015-01-07 02:00:21 +08:00
|
|
|
|
|
|
|
public:
|
2016-02-06 02:29:17 +08:00
|
|
|
GCNTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
2016-05-19 06:04:49 +08:00
|
|
|
StringRef FS, TargetOptions Options,
|
|
|
|
Optional<Reloc::Model> RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2015-02-12 01:11:51 +08:00
|
|
|
|
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2016-06-24 14:30:11 +08:00
|
|
|
|
|
|
|
const SISubtarget *getSubtargetImpl() const {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SISubtarget *getSubtargetImpl(const Function &) const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
2015-01-07 02:00:21 +08:00
|
|
|
};
|
|
|
|
|
2016-06-24 14:30:11 +08:00
|
|
|
inline const AMDGPUSubtarget *AMDGPUTargetMachine::getSubtargetImpl() const {
|
|
|
|
if (getTargetTriple().getArch() == Triple::amdgcn)
|
|
|
|
return static_cast<const GCNTargetMachine *>(this)->getSubtargetImpl();
|
|
|
|
return static_cast<const R600TargetMachine *>(this)->getSubtargetImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const AMDGPUSubtarget *AMDGPUTargetMachine::getSubtargetImpl(
|
|
|
|
const Function &F) const {
|
|
|
|
if (getTargetTriple().getArch() == Triple::amdgcn)
|
|
|
|
return static_cast<const GCNTargetMachine *>(this)->getSubtargetImpl(F);
|
|
|
|
return static_cast<const R600TargetMachine *>(this)->getSubtargetImpl(F);
|
|
|
|
}
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
} // End namespace llvm
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#endif
|