mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00

Summary: Fixes http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap-msan/builds/14002 and http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/35392/steps/build_Lld/logs/stdio Subscribers: mgorny, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D65843 llvm-svn: 368117
86 lines
2.9 KiB
C++
86 lines
2.9 KiB
C++
//===- RemoveFunctions.cpp - Specialized Delta Pass -----------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements a function which calls the Generic Delta pass in order
|
|
// to reduce functions (and any instruction that calls it) in the provided
|
|
// Module.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "RemoveFunctions.h"
|
|
|
|
/// Removes all the Defined Functions (as well as their calls)
|
|
/// that aren't inside any of the desired Chunks.
|
|
/// @returns the Module stripped of out-of-chunk functions
|
|
static std::unique_ptr<Module>
|
|
extractFunctionsFromModule(std::vector<Chunk> ChunksToKeep, Module *Program) {
|
|
std::unique_ptr<Module> Clone = CloneModule(*Program);
|
|
|
|
// Get functions inside desired chunks
|
|
std::set<Function *> FuncsToKeep;
|
|
unsigned I = 0, FunctionCount = 1;
|
|
for (auto &F : *Clone) {
|
|
if (!F.isDeclaration() && I < ChunksToKeep.size()) {
|
|
if (FunctionCount >= ChunksToKeep[I].begin &&
|
|
FunctionCount <= ChunksToKeep[I].end)
|
|
FuncsToKeep.insert(&F);
|
|
if (FunctionCount == ChunksToKeep[I].end)
|
|
++I;
|
|
++FunctionCount;
|
|
}
|
|
}
|
|
|
|
// Delete out-of-chunk functions, and replace their calls with undef
|
|
std::vector<Function *> FuncsToRemove;
|
|
for (auto &F : *Clone) {
|
|
if (!F.isDeclaration() && !FuncsToKeep.count(&F)) {
|
|
F.replaceAllUsesWith(UndefValue::get(F.getType()));
|
|
FuncsToRemove.push_back(&F);
|
|
}
|
|
}
|
|
for (auto *F : FuncsToRemove)
|
|
F->eraseFromParent();
|
|
|
|
// Delete instructions with undef calls
|
|
std::vector<Instruction *> InstToRemove;
|
|
for (auto &F : *Clone)
|
|
for (auto &BB : F)
|
|
for (auto &I : BB)
|
|
if (auto *Call = dyn_cast<CallInst>(&I))
|
|
if (!Call->getCalledFunction()) {
|
|
// Instruction might be stored / used somewhere else
|
|
I.replaceAllUsesWith(UndefValue::get(I.getType()));
|
|
InstToRemove.push_back(&I);
|
|
}
|
|
|
|
for (auto *I : InstToRemove)
|
|
I->eraseFromParent();
|
|
|
|
return Clone;
|
|
}
|
|
|
|
/// Counts the amount of non-declaration functions and prints their
|
|
/// respective name & index
|
|
static int countFunctions(Module *Program) {
|
|
// TODO: Silence index with --quiet flag
|
|
outs() << "----------------------------\n";
|
|
outs() << "Function Index Reference:\n";
|
|
int FunctionCount = 0;
|
|
for (auto &F : *Program)
|
|
if (!F.isDeclaration()) {
|
|
++FunctionCount;
|
|
outs() << "\t" << FunctionCount << ": " << F.getName() << "\n";
|
|
}
|
|
outs() << "----------------------------\n";
|
|
return FunctionCount;
|
|
}
|
|
|
|
void llvm::removeFunctionsDeltaPass(TestRunner &Test) {
|
|
int FunctionCount = countFunctions(Test.getProgram());
|
|
runDeltaPass(Test, FunctionCount, extractFunctionsFromModule);
|
|
} |