mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-07 12:07:17 +00:00
228252f981
getSymbolForDwarfGlobalReference is smart enough to know that it needs to register the stub it references with MachineModuleInfoMachO, so that it gets emitted at the end of the file. Move stub emission from X86ATTAsmPrinter::doFinalization to the new X86ATTAsmPrinter::EmitEndOfAsmFile asmprinter hook. The important thing here is that EmitEndOfAsmFile is called *after* the ehframes are emitted, so we get all the stubs. This allows us to remove a gross hack from the asmprinter where it would "just know" that it needed to output stubs for personality functions. Now this is all driven from a consistent interface. The testcase change is just reordering the expected output now that the stubs come out after the ehframe instead of before. This also unblocks other changes that Bill wants to make. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82269 91177308-0d34-0410-b5e6-96231b3b80d8
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
//===-- llvm/Target/X86/X86TargetObjectFile.cpp - X86 Object Info ---------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "X86TargetObjectFile.h"
|
|
#include "llvm/ADT/SmallString.h"
|
|
#include "llvm/Support/Mangler.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
|
using namespace llvm;
|
|
|
|
const MCExpr *X8632_MachoTargetObjectFile::
|
|
getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
|
|
MachineModuleInfo *MMI,
|
|
bool &IsIndirect, bool &IsPCRel) const {
|
|
// The mach-o version of this method defaults to returning a stub reference.
|
|
IsIndirect = true;
|
|
IsPCRel = false;
|
|
|
|
|
|
MachineModuleInfoMachO &MachOMMI =
|
|
MMI->getObjFileInfo<MachineModuleInfoMachO>();
|
|
|
|
SmallString<128> Name;
|
|
Mang->getNameWithPrefix(Name, GV, true);
|
|
Name += "$non_lazy_ptr";
|
|
|
|
// Add information about the stub reference to MachOMMI so that the stub gets
|
|
// emitted by the asmprinter.
|
|
MCSymbol *Sym = getContext().GetOrCreateSymbol(Name.str());
|
|
const MCSymbol *&StubSym = MachOMMI.getGVStubEntry(Sym);
|
|
if (StubSym == 0) {
|
|
Name.clear();
|
|
Mang->getNameWithPrefix(Name, GV, false);
|
|
StubSym = getContext().GetOrCreateSymbol(Name.str());
|
|
}
|
|
|
|
return MCSymbolRefExpr::Create(Sym, getContext());
|
|
}
|
|
|
|
const MCExpr *X8664_MachoTargetObjectFile::
|
|
getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
|
|
MachineModuleInfo *MMI,
|
|
bool &IsIndirect, bool &IsPCRel) const {
|
|
|
|
// On Darwin/X86-64, we can reference dwarf symbols with foo@GOTPCREL+4, which
|
|
// is an indirect pc-relative reference.
|
|
IsIndirect = true;
|
|
IsPCRel = true;
|
|
|
|
SmallString<128> Name;
|
|
Mang->getNameWithPrefix(Name, GV, false);
|
|
Name += "@GOTPCREL";
|
|
const MCExpr *Res =
|
|
MCSymbolRefExpr::Create(Name.str(), getContext());
|
|
const MCExpr *Four = MCConstantExpr::Create(4, getContext());
|
|
return MCBinaryExpr::CreateAdd(Res, Four, getContext());
|
|
}
|
|
|