mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
[LTO] Scan all per-function subtargets when collecting runtime library names.
accumulateAndSortLibcalls in LTOCodeGenerator.cpp collects names of runtime library functions which are used to identify user-defined functions that should be protected. Previously, this function would only scan the TargetLowering object belonging to the "main" subtarget for the library function names. This commit changes it to scan all per-function subtargets. Differential Revision: http://reviews.llvm.org/D7275 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227533 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -368,10 +368,13 @@ static void findUsedValues(GlobalVariable *LLVMUsed,
|
||||
UsedValues.insert(GV);
|
||||
}
|
||||
|
||||
// Collect names of runtime library functions. User-defined functions with the
|
||||
// same names are added to llvm.compiler.used to prevent them from being
|
||||
// deleted by optimizations.
|
||||
static void accumulateAndSortLibcalls(std::vector<StringRef> &Libcalls,
|
||||
const TargetLibraryInfo& TLI,
|
||||
const TargetLowering *Lowering)
|
||||
{
|
||||
const Module &Mod,
|
||||
const TargetMachine &TM) {
|
||||
// TargetLibraryInfo has info on C runtime library calls on the current
|
||||
// target.
|
||||
for (unsigned I = 0, E = static_cast<unsigned>(LibFunc::NumLibFuncs);
|
||||
@ -381,14 +384,21 @@ static void accumulateAndSortLibcalls(std::vector<StringRef> &Libcalls,
|
||||
Libcalls.push_back(TLI.getName(F));
|
||||
}
|
||||
|
||||
// TargetLowering has info on library calls that CodeGen expects to be
|
||||
// available, both from the C runtime and compiler-rt.
|
||||
if (Lowering)
|
||||
for (unsigned I = 0, E = static_cast<unsigned>(RTLIB::UNKNOWN_LIBCALL);
|
||||
I != E; ++I)
|
||||
if (const char *Name
|
||||
= Lowering->getLibcallName(static_cast<RTLIB::Libcall>(I)))
|
||||
Libcalls.push_back(Name);
|
||||
SmallPtrSet<const TargetLowering *, 1> TLSet;
|
||||
|
||||
for (const Function &F : Mod) {
|
||||
const TargetLowering *Lowering =
|
||||
TM.getSubtargetImpl(F)->getTargetLowering();
|
||||
|
||||
if (Lowering && TLSet.insert(Lowering).second)
|
||||
// TargetLowering has info on library calls that CodeGen expects to be
|
||||
// available, both from the C runtime and compiler-rt.
|
||||
for (unsigned I = 0, E = static_cast<unsigned>(RTLIB::UNKNOWN_LIBCALL);
|
||||
I != E; ++I)
|
||||
if (const char *Name =
|
||||
Lowering->getLibcallName(static_cast<RTLIB::Libcall>(I)))
|
||||
Libcalls.push_back(Name);
|
||||
}
|
||||
|
||||
array_pod_sort(Libcalls.begin(), Libcalls.end());
|
||||
Libcalls.erase(std::unique(Libcalls.begin(), Libcalls.end()),
|
||||
@ -412,8 +422,8 @@ void LTOCodeGenerator::applyScopeRestrictions() {
|
||||
std::vector<StringRef> Libcalls;
|
||||
TargetLibraryInfoImpl TLII(Triple(TargetMach->getTargetTriple()));
|
||||
TargetLibraryInfo TLI(TLII);
|
||||
accumulateAndSortLibcalls(
|
||||
Libcalls, TLI, TargetMach->getSubtargetImpl()->getTargetLowering());
|
||||
|
||||
accumulateAndSortLibcalls(Libcalls, TLI, *mergedModule, *TargetMach);
|
||||
|
||||
for (Module::iterator f = mergedModule->begin(),
|
||||
e = mergedModule->end(); f != e; ++f)
|
||||
|
Reference in New Issue
Block a user