2012-05-05 04:18:50 +08:00
|
|
|
//===-- NVPTXTargetMachine.h - Define TargetMachine for NVPTX ---*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-05-05 04:18:50 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the NVPTX specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_NVPTX_NVPTXTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_NVPTX_NVPTXTARGETMACHINE_H
|
2012-05-05 04:18:50 +08:00
|
|
|
|
2014-06-27 12:33:14 +08:00
|
|
|
#include "ManagedStringPool.h"
|
2015-01-14 19:23:27 +08:00
|
|
|
#include "NVPTXSubtarget.h"
|
2016-01-28 00:32:26 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAGTargetInfo.h"
|
2017-11-04 06:32:11 +08:00
|
|
|
#include "llvm/CodeGen/TargetFrameLowering.h"
|
2012-05-05 04:18:50 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// NVPTXTargetMachine
|
|
|
|
///
|
2017-10-13 06:57:28 +08:00
|
|
|
class NVPTXTargetMachine : public LLVMTargetMachine {
|
2015-02-19 08:08:14 +08:00
|
|
|
bool is64bit;
|
2018-05-10 07:46:19 +08:00
|
|
|
// Use 32-bit pointers for accessing const/local/short AS.
|
|
|
|
bool UseShortPointers;
|
2014-11-13 17:26:31 +08:00
|
|
|
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
2015-02-19 08:08:14 +08:00
|
|
|
NVPTX::DrvInterface drvInterface;
|
2013-03-30 22:29:21 +08:00
|
|
|
NVPTXSubtarget Subtarget;
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
// Hold Strings that can be free'd all together with NVPTXTargetMachine
|
2013-03-30 22:29:21 +08:00
|
|
|
ManagedStringPool ManagedStrPool;
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
NVPTXTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
|
|
|
StringRef FS, const TargetOptions &Options,
|
2017-08-03 10:16:21 +08:00
|
|
|
Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
|
2016-05-19 06:04:49 +08:00
|
|
|
CodeGenOpt::Level OP, bool is64bit);
|
2012-05-05 04:18:50 +08:00
|
|
|
|
2014-11-21 07:37:18 +08:00
|
|
|
~NVPTXTargetMachine() override;
|
2015-03-21 12:22:23 +08:00
|
|
|
const NVPTXSubtarget *getSubtargetImpl(const Function &) const override {
|
|
|
|
return &Subtarget;
|
|
|
|
}
|
|
|
|
const NVPTXSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
2015-02-19 08:08:14 +08:00
|
|
|
bool is64Bit() const { return is64bit; }
|
2018-05-10 07:46:19 +08:00
|
|
|
bool useShortPointers() const { return UseShortPointers; }
|
2015-02-19 08:08:14 +08:00
|
|
|
NVPTX::DrvInterface getDrvInterface() const { return drvInterface; }
|
2012-05-05 04:18:50 +08:00
|
|
|
ManagedStringPool *getManagedStrPool() const {
|
2013-03-30 22:29:21 +08:00
|
|
|
return const_cast<ManagedStringPool *>(&ManagedStrPool);
|
2012-05-05 04:18:50 +08:00
|
|
|
}
|
|
|
|
|
2014-04-29 15:57:44 +08:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
// Emission of machine code through MCJIT is not supported.
|
2015-04-15 06:14:34 +08:00
|
|
|
bool addPassesToEmitMC(PassManagerBase &, MCContext *&, raw_pwrite_stream &,
|
2014-04-29 15:57:44 +08:00
|
|
|
bool = true) override {
|
2012-05-05 04:18:50 +08:00
|
|
|
return true;
|
|
|
|
}
|
2014-11-13 17:26:31 +08:00
|
|
|
TargetLoweringObjectFile *getObjFileLowering() const override {
|
|
|
|
return TLOF.get();
|
|
|
|
}
|
2012-05-05 04:18:50 +08:00
|
|
|
|
2017-01-27 00:49:08 +08:00
|
|
|
void adjustPassManager(PassManagerBuilder &) override;
|
|
|
|
|
(Re-landing) Expose a TargetMachine::getTargetTransformInfo function
Re-land r321234. It had to be reverted because it broke the shared
library build. The shared library build broke because there was a
missing LLVMBuild dependency from lib/Passes (which calls
TargetMachine::getTargetIRAnalysis) to lib/Target. As far as I can
tell, this problem was always there but was somehow masked
before (perhaps because TargetMachine::getTargetIRAnalysis was a
virtual function).
Original commit message:
This makes the TargetMachine interface a bit simpler. We still need
the std::function in TargetIRAnalysis to avoid having to add a
dependency from Analysis to Target.
See discussion:
http://lists.llvm.org/pipermail/llvm-dev/2017-December/119749.html
I avoided adding all of the backend owners to this review since the
change is simple, but let me know if you feel differently about this.
Reviewers: echristo, MatzeB, hfinkel
Reviewed By: hfinkel
Subscribers: jholewinski, jfb, arsenm, dschuff, mcrosier, sdardis, nemanjai, nhaehnle, javed.absar, sbc100, jgravelle-google, aheejin, kbarton, llvm-commits
Differential Revision: https://reviews.llvm.org/D41464
llvm-svn: 321375
2017-12-23 02:21:59 +08:00
|
|
|
TargetTransformInfo getTargetTransformInfo(const Function &F) override;
|
2014-11-11 02:38:25 +08:00
|
|
|
|
2017-06-01 02:41:23 +08:00
|
|
|
bool isMachineVerifierClean() const override {
|
|
|
|
return false;
|
|
|
|
}
|
2012-05-05 04:18:50 +08:00
|
|
|
}; // NVPTXTargetMachine.
|
|
|
|
|
|
|
|
class NVPTXTargetMachine32 : public NVPTXTargetMachine {
|
|
|
|
virtual void anchor();
|
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
NVPTXTargetMachine32(const Target &T, const Triple &TT, StringRef CPU,
|
2012-05-05 04:18:50 +08:00
|
|
|
StringRef FS, const TargetOptions &Options,
|
2017-08-03 10:16:21 +08:00
|
|
|
Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
|
|
|
|
CodeGenOpt::Level OL, bool JIT);
|
2012-05-05 04:18:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class NVPTXTargetMachine64 : public NVPTXTargetMachine {
|
|
|
|
virtual void anchor();
|
|
|
|
public:
|
2015-06-12 03:41:26 +08:00
|
|
|
NVPTXTargetMachine64(const Target &T, const Triple &TT, StringRef CPU,
|
2012-05-05 04:18:50 +08:00
|
|
|
StringRef FS, const TargetOptions &Options,
|
2017-08-03 10:16:21 +08:00
|
|
|
Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
|
|
|
|
CodeGenOpt::Level OL, bool JIT);
|
2012-05-05 04:18:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|