mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Clean up assignment of CalleeSaveStackSlotSize: get rid of the default and explicitly set this in every target that needs to change it from the default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e735945ad7
commit
e752feee52
@ -351,12 +351,7 @@ namespace llvm {
|
||||
/// getCalleeSaveStackSlotSize - Get the callee-saved register stack slot
|
||||
/// size in bytes.
|
||||
unsigned getCalleeSaveStackSlotSize() const {
|
||||
// If a target doesn't explicitly initialize this member, PointerSize is
|
||||
// used by default.
|
||||
if (CalleeSaveStackSlotSize == 0)
|
||||
return PointerSize;
|
||||
else
|
||||
return CalleeSaveStackSlotSize;
|
||||
return CalleeSaveStackSlotSize;
|
||||
}
|
||||
|
||||
/// isLittleEndian - True if the target is little endian.
|
||||
|
@ -24,7 +24,7 @@ using namespace llvm;
|
||||
|
||||
MCAsmInfo::MCAsmInfo() {
|
||||
PointerSize = 4;
|
||||
CalleeSaveStackSlotSize = 0; // 0 means PointerSize is used in getter.
|
||||
CalleeSaveStackSlotSize = 4;
|
||||
|
||||
IsLittleEndian = true;
|
||||
StackGrowsUp = false;
|
||||
|
@ -18,7 +18,7 @@ using namespace llvm;
|
||||
void MSP430MCAsmInfo::anchor() { }
|
||||
|
||||
MSP430MCAsmInfo::MSP430MCAsmInfo(const Target &T, StringRef TT) {
|
||||
PointerSize = 2;
|
||||
PointerSize = CalleeSaveStackSlotSize = 2;
|
||||
|
||||
PrivateGlobalPrefix = ".L";
|
||||
WeakRefDirective ="\t.weak\t";
|
||||
|
@ -25,8 +25,9 @@ MipsMCAsmInfo::MipsMCAsmInfo(const Target &T, StringRef TT) {
|
||||
IsLittleEndian = false;
|
||||
|
||||
if ((TheTriple.getArch() == Triple::mips64el) ||
|
||||
(TheTriple.getArch() == Triple::mips64))
|
||||
PointerSize = 8;
|
||||
(TheTriple.getArch() == Triple::mips64)) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
}
|
||||
|
||||
AlignmentIsInBytes = false;
|
||||
Data16bitsDirective = "\t.2byte\t";
|
||||
|
@ -30,8 +30,9 @@ void NVPTXMCAsmInfo::anchor() { }
|
||||
|
||||
NVPTXMCAsmInfo::NVPTXMCAsmInfo(const Target &T, const StringRef &TT) {
|
||||
Triple TheTriple(TT);
|
||||
if (TheTriple.getArch() == Triple::nvptx64)
|
||||
PointerSize = 8;
|
||||
if (TheTriple.getArch() == Triple::nvptx64) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
}
|
||||
|
||||
CommentString = "//";
|
||||
|
||||
|
@ -17,8 +17,9 @@ using namespace llvm;
|
||||
void PPCMCAsmInfoDarwin::anchor() { }
|
||||
|
||||
PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) {
|
||||
if (is64Bit)
|
||||
PointerSize = 8;
|
||||
if (is64Bit) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
}
|
||||
IsLittleEndian = false;
|
||||
|
||||
PCSymbol = ".";
|
||||
|
@ -21,8 +21,9 @@ void SparcELFMCAsmInfo::anchor() { }
|
||||
SparcELFMCAsmInfo::SparcELFMCAsmInfo(const Target &T, StringRef TT) {
|
||||
IsLittleEndian = false;
|
||||
Triple TheTriple(TT);
|
||||
if (TheTriple.getArch() == Triple::sparcv9)
|
||||
PointerSize = 8;
|
||||
if (TheTriple.getArch() == Triple::sparcv9) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
}
|
||||
|
||||
Data16bitsDirective = "\t.half\t";
|
||||
Data32bitsDirective = "\t.word\t";
|
||||
|
Loading…
Reference in New Issue
Block a user