mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Replace string GNU Triples with llvm::Triple in TargetMachine. NFC.
Summary: For the moment, TargetMachine::getTargetTriple() still returns a StringRef. This continues the patch series to eliminate StringRef forms of GNU triples from the internals of LLVM that began in r239036. Reviewers: rengolin Reviewed By: rengolin Subscribers: ted, llvm-commits, rengolin, jholewinski Differential Revision: http://reviews.llvm.org/D10362 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239554 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fd83cb21ce
commit
4ddb0ced90
@ -1094,7 +1094,7 @@ private:
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL) {
|
||||
return new TargetMachineImpl(T, TT, CPU, FS, Options, RM, CM, OL);
|
||||
return new TargetMachineImpl(T, Triple(TT), CPU, FS, Options, RM, CM, OL);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
#define LLVM_TARGET_TARGETMACHINE_H
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/IR/DataLayout.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Support/CodeGen.h"
|
||||
@ -68,7 +69,7 @@ class TargetMachine {
|
||||
void operator=(const TargetMachine &) = delete;
|
||||
protected: // Can only create subclasses.
|
||||
TargetMachine(const Target &T, StringRef DataLayoutString,
|
||||
StringRef TargetTriple, StringRef CPU, StringRef FS,
|
||||
const Triple &TargetTriple, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options);
|
||||
|
||||
/// The Target that this machine was created for.
|
||||
@ -79,7 +80,7 @@ protected: // Can only create subclasses.
|
||||
|
||||
/// Triple string, CPU name, and target feature strings the TargetMachine
|
||||
/// instance is created with.
|
||||
std::string TargetTriple;
|
||||
Triple TargetTriple;
|
||||
std::string TargetCPU;
|
||||
std::string TargetFS;
|
||||
|
||||
@ -103,7 +104,8 @@ public:
|
||||
|
||||
const Target &getTarget() const { return TheTarget; }
|
||||
|
||||
StringRef getTargetTriple() const { return TargetTriple; }
|
||||
// FIXME: Either rename to getTargetName() or make it return a triple.
|
||||
StringRef getTargetTriple() const { return TargetTriple.str(); }
|
||||
StringRef getTargetCPU() const { return TargetCPU; }
|
||||
StringRef getTargetFeatureString() const { return TargetFS; }
|
||||
|
||||
@ -238,7 +240,7 @@ public:
|
||||
class LLVMTargetMachine : public TargetMachine {
|
||||
protected: // Can only create subclasses.
|
||||
LLVMTargetMachine(const Target &T, StringRef DataLayoutString,
|
||||
StringRef TargetTriple, StringRef CPU, StringRef FS,
|
||||
const Triple &TargetTriple, StringRef CPU, StringRef FS,
|
||||
TargetOptions Options, Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
||||
|
@ -72,12 +72,12 @@ void LLVMTargetMachine::initAsmInfo() {
|
||||
|
||||
LLVMTargetMachine::LLVMTargetMachine(const Target &T,
|
||||
StringRef DataLayoutString,
|
||||
StringRef Triple, StringRef CPU,
|
||||
const Triple &TT, StringRef CPU,
|
||||
StringRef FS, TargetOptions Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: TargetMachine(T, DataLayoutString, Triple, CPU, FS, Options) {
|
||||
CodeGenInfo = T.createMCCodeGenInfo(Triple, RM, CM, OL);
|
||||
: TargetMachine(T, DataLayoutString, TT, CPU, FS, Options) {
|
||||
CodeGenInfo = T.createMCCodeGenInfo(TT.str(), RM, CM, OL);
|
||||
}
|
||||
|
||||
TargetIRAnalysis LLVMTargetMachine::getTargetIRAnalysis() {
|
||||
|
@ -120,7 +120,7 @@ static std::string computeDataLayout(const Triple &TT, bool LittleEndian) {
|
||||
|
||||
/// TargetMachine ctor - Create an AArch64 architecture model.
|
||||
///
|
||||
AArch64TargetMachine::AArch64TargetMachine(const Target &T, StringRef TT,
|
||||
AArch64TargetMachine::AArch64TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -163,21 +163,19 @@ AArch64TargetMachine::getSubtargetImpl(const Function &F) const {
|
||||
|
||||
void AArch64leTargetMachine::anchor() { }
|
||||
|
||||
AArch64leTargetMachine::
|
||||
AArch64leTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
AArch64leTargetMachine::AArch64leTargetMachine(
|
||||
const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
|
||||
void AArch64beTargetMachine::anchor() { }
|
||||
|
||||
AArch64beTargetMachine::
|
||||
AArch64beTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
AArch64beTargetMachine::AArch64beTargetMachine(
|
||||
const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
|
||||
namespace {
|
||||
/// AArch64 Code Generator Pass Configuration Options.
|
||||
|
@ -27,7 +27,7 @@ protected:
|
||||
mutable StringMap<std::unique_ptr<AArch64Subtarget>> SubtargetMap;
|
||||
|
||||
public:
|
||||
AArch64TargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
AArch64TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool IsLittleEndian);
|
||||
@ -54,7 +54,7 @@ private:
|
||||
class AArch64leTargetMachine : public AArch64TargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
AArch64leTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
AArch64leTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
@ -65,7 +65,7 @@ public:
|
||||
class AArch64beTargetMachine : public AArch64TargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
AArch64beTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
AArch64beTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -170,17 +170,16 @@ static std::string computeDataLayout(const Triple &TT, StringRef CPU,
|
||||
|
||||
/// TargetMachine ctor - Create an ARM architecture model.
|
||||
///
|
||||
ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, StringRef TT,
|
||||
ARMBaseTargetMachine::ARMBaseTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool isLittle)
|
||||
: LLVMTargetMachine(T,
|
||||
computeDataLayout(Triple(TT), CPU, Options, isLittle),
|
||||
TT, CPU, FS, Options, RM, CM, OL),
|
||||
TargetABI(computeTargetABI(Triple(TT), CPU, Options)),
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options, isLittle), TT,
|
||||
CPU, FS, Options, RM, CM, OL),
|
||||
TargetABI(computeTargetABI(TT, CPU, Options)),
|
||||
TLOF(createTLOF(Triple(getTargetTriple()))),
|
||||
Subtarget(Triple(TT), CPU, FS, *this, isLittle), isLittle(isLittle) {
|
||||
Subtarget(TT, CPU, FS, *this, isLittle), isLittle(isLittle) {
|
||||
|
||||
// Default to triple-appropriate float ABI
|
||||
if (Options.FloatABIType == FloatABI::Default)
|
||||
@ -235,8 +234,9 @@ TargetIRAnalysis ARMBaseTargetMachine::getTargetIRAnalysis() {
|
||||
|
||||
void ARMTargetMachine::anchor() { }
|
||||
|
||||
ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
ARMTargetMachine::ARMTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool isLittle)
|
||||
: ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, isLittle) {
|
||||
@ -248,7 +248,7 @@ ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
|
||||
void ARMLETargetMachine::anchor() { }
|
||||
|
||||
ARMLETargetMachine::ARMLETargetMachine(const Target &T, StringRef TT,
|
||||
ARMLETargetMachine::ARMLETargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -257,7 +257,7 @@ ARMLETargetMachine::ARMLETargetMachine(const Target &T, StringRef TT,
|
||||
|
||||
void ARMBETargetMachine::anchor() { }
|
||||
|
||||
ARMBETargetMachine::ARMBETargetMachine(const Target &T, StringRef TT,
|
||||
ARMBETargetMachine::ARMBETargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -266,19 +266,18 @@ ARMBETargetMachine::ARMBETargetMachine(const Target &T, StringRef TT,
|
||||
|
||||
void ThumbTargetMachine::anchor() { }
|
||||
|
||||
ThumbTargetMachine::ThumbTargetMachine(const Target &T, StringRef TT,
|
||||
ThumbTargetMachine::ThumbTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool isLittle)
|
||||
: ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL,
|
||||
isLittle) {
|
||||
: ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, isLittle) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
void ThumbLETargetMachine::anchor() { }
|
||||
|
||||
ThumbLETargetMachine::ThumbLETargetMachine(const Target &T, StringRef TT,
|
||||
ThumbLETargetMachine::ThumbLETargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -287,7 +286,7 @@ ThumbLETargetMachine::ThumbLETargetMachine(const Target &T, StringRef TT,
|
||||
|
||||
void ThumbBETargetMachine::anchor() { }
|
||||
|
||||
ThumbBETargetMachine::ThumbBETargetMachine(const Target &T, StringRef TT,
|
||||
ThumbBETargetMachine::ThumbBETargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
|
@ -36,12 +36,10 @@ protected:
|
||||
mutable StringMap<std::unique_ptr<ARMSubtarget>> SubtargetMap;
|
||||
|
||||
public:
|
||||
ARMBaseTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
ARMBaseTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL,
|
||||
bool isLittle);
|
||||
CodeGenOpt::Level OL, bool isLittle);
|
||||
~ARMBaseTargetMachine() override;
|
||||
|
||||
const ARMSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
||||
@ -64,8 +62,8 @@ public:
|
||||
class ARMTargetMachine : public ARMBaseTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
ARMTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
ARMTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
|
||||
};
|
||||
|
||||
@ -74,8 +72,8 @@ class ARMTargetMachine : public ARMBaseTargetMachine {
|
||||
class ARMLETargetMachine : public ARMTargetMachine {
|
||||
void anchor() override;
|
||||
public:
|
||||
ARMLETargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
ARMLETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
@ -85,9 +83,10 @@ public:
|
||||
class ARMBETargetMachine : public ARMTargetMachine {
|
||||
void anchor() override;
|
||||
public:
|
||||
ARMBETargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
ARMBETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
||||
/// ThumbTargetMachine - Thumb target machine.
|
||||
@ -97,9 +96,10 @@ public:
|
||||
class ThumbTargetMachine : public ARMBaseTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
ThumbTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
|
||||
ThumbTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL,
|
||||
bool isLittle);
|
||||
};
|
||||
|
||||
/// ThumbLETargetMachine - Thumb little endian target machine.
|
||||
@ -107,7 +107,7 @@ public:
|
||||
class ThumbLETargetMachine : public ThumbTargetMachine {
|
||||
void anchor() override;
|
||||
public:
|
||||
ThumbLETargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
ThumbLETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
@ -118,7 +118,7 @@ public:
|
||||
class ThumbBETargetMachine : public ThumbTargetMachine {
|
||||
void anchor() override;
|
||||
public:
|
||||
ThumbBETargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
ThumbBETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -29,15 +29,16 @@ extern "C" void LLVMInitializeBPFTarget() {
|
||||
}
|
||||
|
||||
// DataLayout: little or big endian
|
||||
static std::string computeDataLayout(StringRef TT) {
|
||||
if (Triple(TT).getArch() == Triple::bpfeb)
|
||||
static std::string computeDataLayout(const Triple &TT) {
|
||||
if (TT.getArch() == Triple::bpfeb)
|
||||
return "E-m:e-p:64:64-i64:64-n32:64-S128";
|
||||
else
|
||||
return "e-m:e-p:64:64-i64:64-n32:64-S128";
|
||||
}
|
||||
|
||||
BPFTargetMachine::BPFTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
BPFTargetMachine::BPFTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS,
|
||||
|
@ -23,8 +23,8 @@ class BPFTargetMachine : public LLVMTargetMachine {
|
||||
BPFSubtarget Subtarget;
|
||||
|
||||
public:
|
||||
BPFTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
BPFTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
|
||||
const BPFSubtarget *getSubtargetImpl() const { return &Subtarget; }
|
||||
|
@ -23,8 +23,8 @@ namespace llvm {
|
||||
class formatted_raw_ostream;
|
||||
|
||||
struct CPPTargetMachine : public TargetMachine {
|
||||
CPPTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
CPPTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL)
|
||||
: TargetMachine(T, "", TT, CPU, FS, Options) {}
|
||||
|
||||
|
@ -68,7 +68,7 @@ namespace llvm {
|
||||
|
||||
/// Hexagon_TODO: Do I need an aggregate alignment?
|
||||
///
|
||||
HexagonTargetMachine::HexagonTargetMachine(const Target &T, StringRef TT,
|
||||
HexagonTargetMachine::HexagonTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -76,7 +76,7 @@ HexagonTargetMachine::HexagonTargetMachine(const Target &T, StringRef TT,
|
||||
: LLVMTargetMachine(T, "e-m:e-p:32:32-i1:32-i64:64-a:0-n32", TT, CPU, FS,
|
||||
Options, RM, CM, OL),
|
||||
TLOF(make_unique<HexagonTargetObjectFile>()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this) {
|
||||
Subtarget(TT, CPU, FS, *this) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ class HexagonTargetMachine : public LLVMTargetMachine {
|
||||
HexagonSubtarget Subtarget;
|
||||
|
||||
public:
|
||||
HexagonTargetMachine(const Target &T, StringRef TT,StringRef CPU,
|
||||
HexagonTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -25,7 +25,7 @@ extern "C" void LLVMInitializeMSP430Target() {
|
||||
RegisterTargetMachine<MSP430TargetMachine> X(TheMSP430Target);
|
||||
}
|
||||
|
||||
MSP430TargetMachine::MSP430TargetMachine(const Target &T, StringRef TT,
|
||||
MSP430TargetMachine::MSP430TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -34,7 +34,7 @@ MSP430TargetMachine::MSP430TargetMachine(const Target &T, StringRef TT,
|
||||
Options, RM, CM, OL),
|
||||
TLOF(make_unique<TargetLoweringObjectFileELF>()),
|
||||
// FIXME: Check DataLayout string.
|
||||
Subtarget(Triple(TT), CPU, FS, *this) {
|
||||
Subtarget(TT, CPU, FS, *this) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
|
@ -28,8 +28,8 @@ class MSP430TargetMachine : public LLVMTargetMachine {
|
||||
MSP430Subtarget Subtarget;
|
||||
|
||||
public:
|
||||
MSP430TargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
MSP430TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
~MSP430TargetMachine() override;
|
||||
|
@ -82,24 +82,20 @@ static std::string computeDataLayout(const Triple &TT, StringRef CPU,
|
||||
// offset from the stack/frame pointer, using StackGrowsUp enables
|
||||
// an easier handling.
|
||||
// Using CodeModel::Large enables different CALL behavior.
|
||||
MipsTargetMachine::MipsTargetMachine(const Target &T, StringRef TT,
|
||||
MipsTargetMachine::MipsTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool isLittle)
|
||||
: LLVMTargetMachine(T,
|
||||
computeDataLayout(Triple(TT), CPU, Options, isLittle),
|
||||
TT, CPU, FS, Options, RM, CM, OL),
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options, isLittle), TT,
|
||||
CPU, FS, Options, RM, CM, OL),
|
||||
isLittle(isLittle), TLOF(make_unique<MipsTargetObjectFile>()),
|
||||
ABI(MipsABIInfo::computeTargetABI(Triple(TT), CPU, Options.MCOptions)),
|
||||
Subtarget(nullptr),
|
||||
DefaultSubtarget(Triple(TT), CPU, FS, isLittle, *this),
|
||||
NoMips16Subtarget(Triple(TT), CPU,
|
||||
FS.empty() ? "-mips16" : FS.str() + ",-mips16",
|
||||
ABI(MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions)),
|
||||
Subtarget(nullptr), DefaultSubtarget(TT, CPU, FS, isLittle, *this),
|
||||
NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16",
|
||||
isLittle, *this),
|
||||
Mips16Subtarget(Triple(TT), CPU,
|
||||
FS.empty() ? "+mips16" : FS.str() + ",+mips16", isLittle,
|
||||
*this) {
|
||||
Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16",
|
||||
isLittle, *this) {
|
||||
Subtarget = &DefaultSubtarget;
|
||||
initAsmInfo();
|
||||
}
|
||||
@ -108,21 +104,21 @@ MipsTargetMachine::~MipsTargetMachine() {}
|
||||
|
||||
void MipsebTargetMachine::anchor() { }
|
||||
|
||||
MipsebTargetMachine::
|
||||
MipsebTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
MipsebTargetMachine::MipsebTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
|
||||
void MipselTargetMachine::anchor() { }
|
||||
|
||||
MipselTargetMachine::
|
||||
MipselTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
MipselTargetMachine::MipselTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
|
||||
const MipsSubtarget *
|
||||
MipsTargetMachine::getSubtargetImpl(const Function &F) const {
|
||||
|
@ -39,8 +39,8 @@ class MipsTargetMachine : public LLVMTargetMachine {
|
||||
mutable StringMap<std::unique_ptr<MipsSubtarget>> SubtargetMap;
|
||||
|
||||
public:
|
||||
MipsTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
MipsTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL, bool isLittle);
|
||||
~MipsTargetMachine() override;
|
||||
|
||||
@ -73,8 +73,8 @@ public:
|
||||
class MipsebTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
MipsebTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
MipsebTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
@ -84,8 +84,8 @@ public:
|
||||
class MipselTargetMachine : public MipsTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
MipselTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
MipselTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
@ -83,7 +83,7 @@ static std::string computeDataLayout(bool is64Bit) {
|
||||
return Ret;
|
||||
}
|
||||
|
||||
NVPTXTargetMachine::NVPTXTargetMachine(const Target &T, StringRef TT,
|
||||
NVPTXTargetMachine::NVPTXTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -91,8 +91,8 @@ NVPTXTargetMachine::NVPTXTargetMachine(const Target &T, StringRef TT,
|
||||
: LLVMTargetMachine(T, computeDataLayout(is64bit), TT, CPU, FS, Options, RM,
|
||||
CM, OL),
|
||||
is64bit(is64bit), TLOF(make_unique<NVPTXTargetObjectFile>()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this) {
|
||||
if (Triple(TT).getOS() == Triple::NVCL)
|
||||
Subtarget(TT, CPU, FS, *this) {
|
||||
if (TT.getOS() == Triple::NVCL)
|
||||
drvInterface = NVPTX::NVCL;
|
||||
else
|
||||
drvInterface = NVPTX::CUDA;
|
||||
@ -103,18 +103,20 @@ NVPTXTargetMachine::~NVPTXTargetMachine() {}
|
||||
|
||||
void NVPTXTargetMachine32::anchor() {}
|
||||
|
||||
NVPTXTargetMachine32::NVPTXTargetMachine32(
|
||||
const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
NVPTXTargetMachine32::NVPTXTargetMachine32(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
|
||||
void NVPTXTargetMachine64::anchor() {}
|
||||
|
||||
NVPTXTargetMachine64::NVPTXTargetMachine64(
|
||||
const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
NVPTXTargetMachine64::NVPTXTargetMachine64(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: NVPTXTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
||||
|
||||
namespace {
|
||||
|
@ -34,9 +34,10 @@ class NVPTXTargetMachine : public LLVMTargetMachine {
|
||||
ManagedStringPool ManagedStrPool;
|
||||
|
||||
public:
|
||||
NVPTXTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OP, bool is64bit);
|
||||
NVPTXTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OP,
|
||||
bool is64bit);
|
||||
|
||||
~NVPTXTargetMachine() override;
|
||||
const NVPTXSubtarget *getSubtargetImpl(const Function &) const override {
|
||||
@ -67,7 +68,7 @@ public:
|
||||
class NVPTXTargetMachine32 : public NVPTXTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
NVPTXTargetMachine32(const Target &T, StringRef TT, StringRef CPU,
|
||||
NVPTXTargetMachine32(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
@ -76,7 +77,7 @@ public:
|
||||
class NVPTXTargetMachine64 : public NVPTXTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
NVPTXTargetMachine64(const Target &T, StringRef TT, StringRef CPU,
|
||||
NVPTXTargetMachine64(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -165,14 +165,16 @@ static PPCTargetMachine::PPCABI computeTargetABI(const Triple &TT,
|
||||
// with what are (currently) non-function specific overrides as it goes into the
|
||||
// LLVMTargetMachine constructor and then using the stored value in the
|
||||
// Subtarget constructor below it.
|
||||
PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
PPCTargetMachine::PPCTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: LLVMTargetMachine(T, getDataLayoutString(Triple(TT)), TT, CPU,
|
||||
computeFSAdditions(FS, OL, TT), Options, RM, CM, OL),
|
||||
: LLVMTargetMachine(T, getDataLayoutString(TT), TT, CPU,
|
||||
computeFSAdditions(FS, OL, TT.str()), Options, RM, CM,
|
||||
OL),
|
||||
TLOF(createTLOF(Triple(getTargetTriple()))),
|
||||
TargetABI(computeTargetABI(Triple(TT), Options)) {
|
||||
TargetABI(computeTargetABI(TT, Options)) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
@ -180,23 +182,21 @@ PPCTargetMachine::~PPCTargetMachine() {}
|
||||
|
||||
void PPC32TargetMachine::anchor() { }
|
||||
|
||||
PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT,
|
||||
PPC32TargetMachine::PPC32TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {
|
||||
}
|
||||
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
|
||||
|
||||
void PPC64TargetMachine::anchor() { }
|
||||
|
||||
PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
PPC64TargetMachine::PPC64TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {
|
||||
}
|
||||
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
|
||||
|
||||
const PPCSubtarget *
|
||||
PPCTargetMachine::getSubtargetImpl(const Function &F) const {
|
||||
|
@ -32,8 +32,8 @@ private:
|
||||
mutable StringMap<std::unique_ptr<PPCSubtarget>> SubtargetMap;
|
||||
|
||||
public:
|
||||
PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
PPCTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
|
||||
~PPCTargetMachine() override;
|
||||
@ -60,8 +60,8 @@ public:
|
||||
class PPC32TargetMachine : public PPCTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
PPC32TargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
PPC32TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
@ -71,8 +71,8 @@ public:
|
||||
class PPC64TargetMachine : public PPCTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
PPC64TargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
PPC64TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
|
@ -65,15 +65,15 @@ static std::string computeDataLayout(const Triple &TT) {
|
||||
return Ret;
|
||||
}
|
||||
|
||||
AMDGPUTargetMachine::AMDGPUTargetMachine(const Target &T, StringRef TT,
|
||||
AMDGPUTargetMachine::AMDGPUTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
CodeGenOpt::Level OptLevel)
|
||||
: LLVMTargetMachine(T, computeDataLayout(Triple(TT)), TT, CPU, FS, Options,
|
||||
RM, CM, OptLevel),
|
||||
TLOF(new TargetLoweringObjectFileELF()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this), IntrinsicInfo() {
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options, RM, CM,
|
||||
OptLevel),
|
||||
TLOF(new TargetLoweringObjectFileELF()), Subtarget(TT, CPU, FS, *this),
|
||||
IntrinsicInfo() {
|
||||
setRequiresStructuredCFG(true);
|
||||
initAsmInfo();
|
||||
}
|
||||
@ -86,20 +86,21 @@ AMDGPUTargetMachine::~AMDGPUTargetMachine() {
|
||||
// R600 Target Machine (R600 -> Cayman)
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
R600TargetMachine::R600TargetMachine(const Target &T, StringRef TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL) :
|
||||
AMDGPUTargetMachine(T, TT, FS, CPU, Options, RM, CM, OL) { }
|
||||
|
||||
R600TargetMachine::R600TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef FS, StringRef CPU,
|
||||
TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL)
|
||||
: AMDGPUTargetMachine(T, TT, FS, CPU, Options, RM, CM, OL) {}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// GCN Target Machine (SI+)
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
GCNTargetMachine::GCNTargetMachine(const Target &T, StringRef TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL) :
|
||||
AMDGPUTargetMachine(T, TT, FS, CPU, Options, RM, CM, OL) { }
|
||||
GCNTargetMachine::GCNTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef FS, StringRef CPU,
|
||||
TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL)
|
||||
: AMDGPUTargetMachine(T, TT, FS, CPU, Options, RM, CM, OL) {}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// AMDGPU Pass Setup
|
||||
|
@ -37,7 +37,7 @@ protected:
|
||||
AMDGPUIntrinsicInfo IntrinsicInfo;
|
||||
|
||||
public:
|
||||
AMDGPUTargetMachine(const Target &T, StringRef TT, StringRef FS,
|
||||
AMDGPUTargetMachine(const Target &T, const Triple &TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
~AMDGPUTargetMachine();
|
||||
@ -63,7 +63,7 @@ public:
|
||||
class R600TargetMachine : public AMDGPUTargetMachine {
|
||||
|
||||
public:
|
||||
R600TargetMachine(const Target &T, StringRef TT, StringRef FS,
|
||||
R600TargetMachine(const Target &T, const Triple &TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
|
||||
@ -77,9 +77,9 @@ public:
|
||||
class GCNTargetMachine : public AMDGPUTargetMachine {
|
||||
|
||||
public:
|
||||
GCNTargetMachine(const Target &T, StringRef TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
GCNTargetMachine(const Target &T, const Triple &TT, StringRef FS,
|
||||
StringRef CPU, TargetOptions Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
|
||||
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
||||
};
|
||||
|
@ -54,15 +54,15 @@ static std::string computeDataLayout(const Triple &T, bool is64Bit) {
|
||||
|
||||
/// SparcTargetMachine ctor - Create an ILP32 architecture model
|
||||
///
|
||||
SparcTargetMachine::SparcTargetMachine(const Target &T, StringRef TT,
|
||||
SparcTargetMachine::SparcTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool is64bit)
|
||||
: LLVMTargetMachine(T, computeDataLayout(Triple(TT), is64bit), TT, CPU, FS,
|
||||
Options, RM, CM, OL),
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options,
|
||||
RM, CM, OL),
|
||||
TLOF(make_unique<SparcELFTargetObjectFile>()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this, is64bit) {
|
||||
Subtarget(TT, CPU, FS, *this, is64bit) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
@ -106,19 +106,16 @@ void SparcPassConfig::addPreEmitPass(){
|
||||
|
||||
void SparcV8TargetMachine::anchor() { }
|
||||
|
||||
SparcV8TargetMachine::SparcV8TargetMachine(const Target &T,
|
||||
StringRef TT, StringRef CPU,
|
||||
StringRef FS,
|
||||
SparcV8TargetMachine::SparcV8TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
|
||||
}
|
||||
: SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
||||
|
||||
void SparcV9TargetMachine::anchor() { }
|
||||
|
||||
SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, StringRef TT,
|
||||
SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -127,7 +124,7 @@ SparcV9TargetMachine::SparcV9TargetMachine(const Target &T, StringRef TT,
|
||||
|
||||
void SparcelTargetMachine::anchor() {}
|
||||
|
||||
SparcelTargetMachine::SparcelTargetMachine(const Target &T, StringRef TT,
|
||||
SparcelTargetMachine::SparcelTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
|
@ -24,10 +24,10 @@ class SparcTargetMachine : public LLVMTargetMachine {
|
||||
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
||||
SparcSubtarget Subtarget;
|
||||
public:
|
||||
SparcTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL, bool is64bit);
|
||||
SparcTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL,
|
||||
bool is64bit);
|
||||
~SparcTargetMachine() override;
|
||||
|
||||
const SparcSubtarget *getSubtargetImpl(const Function &) const override {
|
||||
@ -46,9 +46,8 @@ public:
|
||||
class SparcV8TargetMachine : public SparcTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
SparcV8TargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
SparcV8TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
};
|
||||
@ -58,7 +57,7 @@ public:
|
||||
class SparcV9TargetMachine : public SparcTargetMachine {
|
||||
virtual void anchor();
|
||||
public:
|
||||
SparcV9TargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
SparcV9TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
@ -68,7 +67,7 @@ class SparcelTargetMachine : public SparcTargetMachine {
|
||||
virtual void anchor();
|
||||
|
||||
public:
|
||||
SparcelTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
SparcelTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -78,15 +78,15 @@ static std::string computeDataLayout(const Triple &TT, StringRef CPU,
|
||||
return Ret;
|
||||
}
|
||||
|
||||
SystemZTargetMachine::SystemZTargetMachine(const Target &T, StringRef TT,
|
||||
SystemZTargetMachine::SystemZTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: LLVMTargetMachine(T, computeDataLayout(Triple(TT), CPU, FS), TT, CPU, FS,
|
||||
Options, RM, CM, OL),
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT, CPU, FS), TT, CPU, FS, Options,
|
||||
RM, CM, OL),
|
||||
TLOF(make_unique<TargetLoweringObjectFileELF>()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this) {
|
||||
Subtarget(TT, CPU, FS, *this) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ class SystemZTargetMachine : public LLVMTargetMachine {
|
||||
SystemZSubtarget Subtarget;
|
||||
|
||||
public:
|
||||
SystemZTargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
SystemZTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
|
@ -38,7 +38,7 @@ using namespace llvm;
|
||||
//
|
||||
|
||||
TargetMachine::TargetMachine(const Target &T, StringRef DataLayoutString,
|
||||
StringRef TT, StringRef CPU, StringRef FS,
|
||||
const Triple &TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options)
|
||||
: TheTarget(T), DL(DataLayoutString), TargetTriple(TT), TargetCPU(CPU),
|
||||
TargetFS(FS), CodeGenInfo(nullptr), AsmInfo(nullptr), MRI(nullptr),
|
||||
|
@ -94,14 +94,15 @@ static std::string computeDataLayout(const Triple &TT) {
|
||||
|
||||
/// X86TargetMachine ctor - Create an X86 target.
|
||||
///
|
||||
X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
X86TargetMachine::X86TargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL)
|
||||
: LLVMTargetMachine(T, computeDataLayout(Triple(TT)), TT, CPU, FS, Options,
|
||||
RM, CM, OL),
|
||||
: LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options, RM, CM,
|
||||
OL),
|
||||
TLOF(createTLOF(Triple(getTargetTriple()))),
|
||||
Subtarget(Triple(TT), CPU, FS, *this, Options.StackAlignmentOverride) {
|
||||
Subtarget(TT, CPU, FS, *this, Options.StackAlignmentOverride) {
|
||||
// Windows stack unwinder gets confused when execution flow "falls through"
|
||||
// after a call to 'noreturn' function.
|
||||
// To prevent that, we emit a trap for 'unreachable' IR instructions.
|
||||
|
@ -29,8 +29,8 @@ class X86TargetMachine final : public LLVMTargetMachine {
|
||||
mutable StringMap<std::unique_ptr<X86Subtarget>> SubtargetMap;
|
||||
|
||||
public:
|
||||
X86TargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options, Reloc::Model RM,
|
||||
X86TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options, Reloc::Model RM,
|
||||
CodeModel::Model CM, CodeGenOpt::Level OL);
|
||||
~X86TargetMachine() override;
|
||||
const X86Subtarget *getSubtargetImpl(const Function &F) const override;
|
||||
|
@ -22,7 +22,7 @@ using namespace llvm;
|
||||
|
||||
/// XCoreTargetMachine ctor - Create an ILP32 architecture model
|
||||
///
|
||||
XCoreTargetMachine::XCoreTargetMachine(const Target &T, StringRef TT,
|
||||
XCoreTargetMachine::XCoreTargetMachine(const Target &T, const Triple &TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
@ -31,7 +31,7 @@ XCoreTargetMachine::XCoreTargetMachine(const Target &T, StringRef TT,
|
||||
T, "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32",
|
||||
TT, CPU, FS, Options, RM, CM, OL),
|
||||
TLOF(make_unique<XCoreTargetObjectFile>()),
|
||||
Subtarget(Triple(TT), CPU, FS, *this) {
|
||||
Subtarget(TT, CPU, FS, *this) {
|
||||
initAsmInfo();
|
||||
}
|
||||
|
||||
|
@ -23,8 +23,8 @@ class XCoreTargetMachine : public LLVMTargetMachine {
|
||||
std::unique_ptr<TargetLoweringObjectFile> TLOF;
|
||||
XCoreSubtarget Subtarget;
|
||||
public:
|
||||
XCoreTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
||||
XCoreTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
|
||||
StringRef FS, const TargetOptions &Options,
|
||||
Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL);
|
||||
~XCoreTargetMachine() override;
|
||||
|
Loading…
Reference in New Issue
Block a user