mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 19:35:54 +00:00
MC: MCCodeGenInfo naming update. NFC.
s/InitMCCodeGenInfo/initMCCodeGenInfo/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237471 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
792476e626
commit
21a996a0e3
@ -33,7 +33,7 @@ class MCCodeGenInfo {
|
||||
CodeGenOpt::Level OptLevel;
|
||||
|
||||
public:
|
||||
void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
|
||||
void initMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
|
||||
CodeModel::Model CM = CodeModel::Default,
|
||||
CodeGenOpt::Level OL = CodeGenOpt::Default);
|
||||
|
||||
|
@ -25,4 +25,4 @@ void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) {
|
||||
RawSymbol->getDataBytes(bytes);
|
||||
}
|
||||
|
||||
void PDBSymbolCustom::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|
||||
void PDBSymbolCustom::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|
||||
|
@ -24,4 +24,4 @@ std::unique_ptr<PDBSymbol> PDBSymbolData::getType() const {
|
||||
return Session.getSymbolById(getTypeId());
|
||||
}
|
||||
|
||||
void PDBSymbolData::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|
||||
void PDBSymbolData::dump(PDBSymDumper &Dumper) const { Dumper.dump(*this); }
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "llvm/MC/MCCodeGenInfo.h"
|
||||
using namespace llvm;
|
||||
|
||||
void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM,
|
||||
void MCCodeGenInfo::initMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL) {
|
||||
RelocationModel = RM;
|
||||
CMModel = CM;
|
||||
|
@ -105,7 +105,7 @@ static MCCodeGenInfo *createAArch64MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
RM = Reloc::Static;
|
||||
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -305,7 +305,7 @@ static MCCodeGenInfo *createARMMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
// Default relocation model on Darwin is PIC, not DynamicNoPIC.
|
||||
RM = TheTriple.isOSDarwin() ? Reloc::PIC_ : Reloc::DynamicNoPIC;
|
||||
}
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -57,7 +57,7 @@ static MCCodeGenInfo *createBPFMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL) {
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ static MCCodeGenInfo *createHexagonMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
// For the time being, use static relocations, since there's really no
|
||||
// support for PIC yet.
|
||||
X->InitMCCodeGenInfo(Reloc::Static, CM, OL);
|
||||
X->initMCCodeGenInfo(Reloc::Static, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ static MCCodeGenInfo *createMSP430MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL) {
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -93,7 +93,7 @@ static MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
RM = Reloc::Static;
|
||||
else if (RM == Reloc::Default)
|
||||
RM = Reloc::PIC_;
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ createNVPTXMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS) {
|
||||
static MCCodeGenInfo *createNVPTXMCCodeGenInfo(
|
||||
StringRef TT, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) {
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -108,7 +108,7 @@ static MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
(T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le))
|
||||
CM = CodeModel::Medium;
|
||||
}
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ static MCCodeGenInfo *createAMDGPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
CodeModel::Model CM,
|
||||
CodeGenOpt::Level OL) {
|
||||
MCCodeGenInfo *X = new MCCodeGenInfo();
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ static MCCodeGenInfo *createSparcMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
case CodeModel::JITDefault: CM = CodeModel::Small; break;
|
||||
}
|
||||
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
@ -118,7 +118,7 @@ static MCCodeGenInfo *createSparcV9MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
break;
|
||||
}
|
||||
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -204,7 +204,7 @@ static MCCodeGenInfo *createSystemZMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
CM = CodeModel::Small;
|
||||
else if (CM == CodeModel::JITDefault)
|
||||
CM = RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -203,7 +203,7 @@ static MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
// 64-bit JIT places everything in the same buffer except external funcs.
|
||||
CM = is64Bit ? CodeModel::Large : CodeModel::Small;
|
||||
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
@ -77,7 +77,7 @@ static MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM,
|
||||
if (CM != CodeModel::Small && CM != CodeModel::Large)
|
||||
report_fatal_error("Target only supports CodeModel Small or Large");
|
||||
|
||||
X->InitMCCodeGenInfo(RM, CM, OL);
|
||||
X->initMCCodeGenInfo(RM, CM, OL);
|
||||
return X;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user