mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
Reinstate "Nuke the old JIT."
Approved by Jim Grosbach, Lang Hames, Rafael Espindola. This reinstates commits r215111, 215115, 215116, 215117, 215136. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216982 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -82,19 +82,7 @@ PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
|
||||
TargetTriple.getArch() == Triple::ppc64le),
|
||||
OptLevel(OptLevel), TargetABI(PPC_ABI_UNKNOWN),
|
||||
FrameLowering(initializeSubtargetDependencies(CPU, FS)), InstrInfo(*this),
|
||||
JITInfo(*this), TLInfo(TM), TSInfo(&DL) {}
|
||||
|
||||
/// SetJITMode - This is called to inform the subtarget info that we are
|
||||
/// producing code for the JIT.
|
||||
void PPCSubtarget::SetJITMode() {
|
||||
// JIT mode doesn't want lazy resolver stubs, it knows exactly where
|
||||
// everything is. This matters for PPC64, which codegens in PIC mode without
|
||||
// stubs.
|
||||
HasLazyResolverStubs = false;
|
||||
|
||||
// Calls to external functions need to use indirect calls
|
||||
IsJITCodeModel = true;
|
||||
}
|
||||
TLInfo(TM), TSInfo(&DL) {}
|
||||
|
||||
void PPCSubtarget::resetSubtargetFeatures(const MachineFunction *MF) {
|
||||
AttributeSet FnAttrs = MF->getFunction()->getAttributes();
|
||||
@@ -144,7 +132,6 @@ void PPCSubtarget::initializeEnvironment() {
|
||||
DeprecatedMFTB = false;
|
||||
DeprecatedDST = false;
|
||||
HasLazyResolverStubs = false;
|
||||
IsJITCodeModel = false;
|
||||
}
|
||||
|
||||
void PPCSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
|
||||
|
Reference in New Issue
Block a user