mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Move to a private function to initialize subtarget dependencies
so we can use initializer lists for the ARMSubtarget and then use this to initialize a moved DataLayout on the subtarget from the TargetMachine. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210861 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
740a75968a
commit
1ee246100e
@ -76,21 +76,78 @@ IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
|
||||
"Allow IT blocks based on ARMv7"),
|
||||
clEnumValEnd));
|
||||
|
||||
static std::string computeDataLayout(ARMSubtarget &ST) {
|
||||
std::string Ret = "";
|
||||
|
||||
if (ST.isLittle())
|
||||
// Little endian.
|
||||
Ret += "e";
|
||||
else
|
||||
// Big endian.
|
||||
Ret += "E";
|
||||
|
||||
Ret += DataLayout::getManglingComponent(ST.getTargetTriple());
|
||||
|
||||
// Pointers are 32 bits and aligned to 32 bits.
|
||||
Ret += "-p:32:32";
|
||||
|
||||
// On thumb, i16,i18 and i1 have natural aligment requirements, but we try to
|
||||
// align to 32.
|
||||
if (ST.isThumb())
|
||||
Ret += "-i1:8:32-i8:8:32-i16:16:32";
|
||||
|
||||
// ABIs other than APCS have 64 bit integers with natural alignment.
|
||||
if (!ST.isAPCS_ABI())
|
||||
Ret += "-i64:64";
|
||||
|
||||
// We have 64 bits floats. The APCS ABI requires them to be aligned to 32
|
||||
// bits, others to 64 bits. We always try to align to 64 bits.
|
||||
if (ST.isAPCS_ABI())
|
||||
Ret += "-f64:32:64";
|
||||
|
||||
// We have 128 and 64 bit vectors. The APCS ABI aligns them to 32 bits, others
|
||||
// to 64. We always ty to give them natural alignment.
|
||||
if (ST.isAPCS_ABI())
|
||||
Ret += "-v64:32:64-v128:32:128";
|
||||
else
|
||||
Ret += "-v128:64:128";
|
||||
|
||||
// On thumb and APCS, only try to align aggregates to 32 bits (the default is
|
||||
// 64 bits).
|
||||
if (ST.isThumb() || ST.isAPCS_ABI())
|
||||
Ret += "-a:0:32";
|
||||
|
||||
// Integer registers are 32 bits.
|
||||
Ret += "-n32";
|
||||
|
||||
// The stack is 128 bit aligned on NaCl, 64 bit aligned on AAPCS and 32 bit
|
||||
// aligned everywhere else.
|
||||
if (ST.isTargetNaCl())
|
||||
Ret += "-S128";
|
||||
else if (ST.isAAPCS_ABI())
|
||||
Ret += "-S64";
|
||||
else
|
||||
Ret += "-S32";
|
||||
|
||||
return Ret;
|
||||
}
|
||||
|
||||
/// initializeSubtargetDependencies - Initializes using a CPU and feature string
|
||||
/// so that we can use initializer lists for subtarget initialization.
|
||||
ARMSubtarget &ARMSubtarget::initializeSubtargetDependencies(StringRef CPU,
|
||||
StringRef FS) {
|
||||
initializeEnvironment();
|
||||
resetSubtargetFeatures(CPU, FS);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
|
||||
const std::string &FS, bool IsLittle,
|
||||
const TargetOptions &Options)
|
||||
: ARMGenSubtargetInfo(TT, CPU, FS)
|
||||
, ARMProcFamily(Others)
|
||||
, ARMProcClass(None)
|
||||
, stackAlignment(4)
|
||||
, CPUString(CPU)
|
||||
, IsLittle(IsLittle)
|
||||
, TargetTriple(TT)
|
||||
, Options(Options)
|
||||
, TargetABI(ARM_ABI_UNKNOWN) {
|
||||
initializeEnvironment();
|
||||
resetSubtargetFeatures(CPU, FS);
|
||||
}
|
||||
: ARMGenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
|
||||
ARMProcClass(None), stackAlignment(4), CPUString(CPU), IsLittle(IsLittle),
|
||||
TargetTriple(TT), Options(Options), TargetABI(ARM_ABI_UNKNOWN),
|
||||
DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS))) {}
|
||||
|
||||
void ARMSubtarget::initializeEnvironment() {
|
||||
HasV4TOps = false;
|
||||
|
@ -16,6 +16,7 @@
|
||||
|
||||
#include "MCTargetDesc/ARMMCTargetDesc.h"
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/IR/DataLayout.h"
|
||||
#include "llvm/MC/MCInstrItineraries.h"
|
||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||
#include <string>
|
||||
@ -247,7 +248,16 @@ protected:
|
||||
|
||||
/// \brief Reset the features for the ARM target.
|
||||
void resetSubtargetFeatures(const MachineFunction *MF) override;
|
||||
|
||||
/// initializeSubtargetDependencies - Initializes using a CPU and feature string
|
||||
/// so that we can use initializer lists for subtarget initialization.
|
||||
ARMSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
|
||||
|
||||
const DataLayout *getDataLayout() const { return &DL; }
|
||||
|
||||
private:
|
||||
const DataLayout DL;
|
||||
|
||||
void initializeEnvironment();
|
||||
void resetSubtargetFeatures(StringRef CPU, StringRef FS);
|
||||
public:
|
||||
|
@ -73,62 +73,6 @@ void ARMBaseTargetMachine::addAnalysisPasses(PassManagerBase &PM) {
|
||||
|
||||
void ARMTargetMachine::anchor() { }
|
||||
|
||||
static std::string computeDataLayout(ARMSubtarget &ST) {
|
||||
std::string Ret = "";
|
||||
|
||||
if (ST.isLittle())
|
||||
// Little endian.
|
||||
Ret += "e";
|
||||
else
|
||||
// Big endian.
|
||||
Ret += "E";
|
||||
|
||||
Ret += DataLayout::getManglingComponent(ST.getTargetTriple());
|
||||
|
||||
// Pointers are 32 bits and aligned to 32 bits.
|
||||
Ret += "-p:32:32";
|
||||
|
||||
// On thumb, i16,i18 and i1 have natural aligment requirements, but we try to
|
||||
// align to 32.
|
||||
if (ST.isThumb())
|
||||
Ret += "-i1:8:32-i8:8:32-i16:16:32";
|
||||
|
||||
// ABIs other than APCS have 64 bit integers with natural alignment.
|
||||
if (!ST.isAPCS_ABI())
|
||||
Ret += "-i64:64";
|
||||
|
||||
// We have 64 bits floats. The APCS ABI requires them to be aligned to 32
|
||||
// bits, others to 64 bits. We always try to align to 64 bits.
|
||||
if (ST.isAPCS_ABI())
|
||||
Ret += "-f64:32:64";
|
||||
|
||||
// We have 128 and 64 bit vectors. The APCS ABI aligns them to 32 bits, others
|
||||
// to 64. We always ty to give them natural alignment.
|
||||
if (ST.isAPCS_ABI())
|
||||
Ret += "-v64:32:64-v128:32:128";
|
||||
else
|
||||
Ret += "-v128:64:128";
|
||||
|
||||
// On thumb and APCS, only try to align aggregates to 32 bits (the default is
|
||||
// 64 bits).
|
||||
if (ST.isThumb() || ST.isAPCS_ABI())
|
||||
Ret += "-a:0:32";
|
||||
|
||||
// Integer registers are 32 bits.
|
||||
Ret += "-n32";
|
||||
|
||||
// The stack is 128 bit aligned on NaCl, 64 bit aligned on AAPCS and 32 bit
|
||||
// aligned everywhere else.
|
||||
if (ST.isTargetNaCl())
|
||||
Ret += "-S128";
|
||||
else if (ST.isAAPCS_ABI())
|
||||
Ret += "-S64";
|
||||
else
|
||||
Ret += "-S32";
|
||||
|
||||
return Ret;
|
||||
}
|
||||
|
||||
ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT,
|
||||
StringRef CPU, StringRef FS,
|
||||
const TargetOptions &Options,
|
||||
@ -137,9 +81,8 @@ ARMTargetMachine::ARMTargetMachine(const Target &T, StringRef TT,
|
||||
bool isLittle)
|
||||
: ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, isLittle),
|
||||
InstrInfo(Subtarget),
|
||||
DL(computeDataLayout(Subtarget)),
|
||||
TLInfo(*this),
|
||||
TSInfo(DL),
|
||||
TSInfo(*getDataLayout()),
|
||||
FrameLowering(Subtarget) {
|
||||
initAsmInfo();
|
||||
if (!Subtarget.hasARMOps())
|
||||
@ -177,9 +120,8 @@ ThumbTargetMachine::ThumbTargetMachine(const Target &T, StringRef TT,
|
||||
InstrInfo(Subtarget.hasThumb2()
|
||||
? ((ARMBaseInstrInfo*)new Thumb2InstrInfo(Subtarget))
|
||||
: ((ARMBaseInstrInfo*)new Thumb1InstrInfo(Subtarget))),
|
||||
DL(computeDataLayout(Subtarget)),
|
||||
TLInfo(*this),
|
||||
TSInfo(DL),
|
||||
TSInfo(*getDataLayout()),
|
||||
FrameLowering(Subtarget.hasThumb2()
|
||||
? new ARMFrameLowering(Subtarget)
|
||||
: (ARMFrameLowering*)new Thumb1FrameLowering(Subtarget)) {
|
||||
|
@ -68,7 +68,6 @@ public:
|
||||
class ARMTargetMachine : public ARMBaseTargetMachine {
|
||||
virtual void anchor();
|
||||
ARMInstrInfo InstrInfo;
|
||||
const DataLayout DL; // Calculates type size & alignment
|
||||
ARMTargetLowering TLInfo;
|
||||
ARMSelectionDAGInfo TSInfo;
|
||||
ARMFrameLowering FrameLowering;
|
||||
@ -95,7 +94,9 @@ class ARMTargetMachine : public ARMBaseTargetMachine {
|
||||
return &FrameLowering;
|
||||
}
|
||||
const ARMInstrInfo *getInstrInfo() const override { return &InstrInfo; }
|
||||
const DataLayout *getDataLayout() const override { return &DL; }
|
||||
const DataLayout *getDataLayout() const override {
|
||||
return getSubtargetImpl()->getDataLayout();
|
||||
}
|
||||
};
|
||||
|
||||
/// ARMLETargetMachine - ARM little endian target machine.
|
||||
@ -128,7 +129,6 @@ class ThumbTargetMachine : public ARMBaseTargetMachine {
|
||||
virtual void anchor();
|
||||
// Either Thumb1InstrInfo or Thumb2InstrInfo.
|
||||
std::unique_ptr<ARMBaseInstrInfo> InstrInfo;
|
||||
const DataLayout DL; // Calculates type size & alignment
|
||||
ARMTargetLowering TLInfo;
|
||||
ARMSelectionDAGInfo TSInfo;
|
||||
// Either Thumb1FrameLowering or ARMFrameLowering.
|
||||
@ -162,7 +162,9 @@ public:
|
||||
const ARMFrameLowering *getFrameLowering() const override {
|
||||
return FrameLowering.get();
|
||||
}
|
||||
const DataLayout *getDataLayout() const override { return &DL; }
|
||||
const DataLayout *getDataLayout() const override {
|
||||
return getSubtargetImpl()->getDataLayout();
|
||||
}
|
||||
};
|
||||
|
||||
/// ThumbLETargetMachine - Thumb little endian target machine.
|
||||
|
Loading…
Reference in New Issue
Block a user