From 79906c9825d4ff18e3f1fff54eef8162257b72a9 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 22 Apr 2004 22:52:22 +0000 Subject: [PATCH] Add a flag to choose between isolating a function or deleting the function from the Module. The default behavior keeps functionality as before: the chosen function is the one that remains. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13111 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/ExtractFunction.cpp | 35 +++++++++++++++++++++----- 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/lib/Transforms/IPO/ExtractFunction.cpp b/lib/Transforms/IPO/ExtractFunction.cpp index f98c6197dca..052742689fc 100644 --- a/lib/Transforms/IPO/ExtractFunction.cpp +++ b/lib/Transforms/IPO/ExtractFunction.cpp @@ -6,17 +6,27 @@ // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// +// +// This pass extracts +// +//===----------------------------------------------------------------------===// -#include "llvm/Transforms/IPO.h" -#include "llvm/Pass.h" #include "llvm/Module.h" +#include "llvm/Pass.h" +#include "llvm/Transforms/IPO.h" using namespace llvm; namespace { class FunctionExtractorPass : public Pass { Function *Named; + bool isolateFunc; public: - FunctionExtractorPass(Function *F = 0) : Named(F) {} + /// FunctionExtractorPass - ctor for the pass. If isolateFn is true, then + /// the named function is the only thing left in the Module (default + /// behavior), otherwise the function is the thing deleted. + /// + FunctionExtractorPass(Function *F = 0, bool isolateFn = true) + : Named(F), isolateFunc(isolateFn) {} bool run(Module &M) { if (Named == 0) { @@ -24,6 +34,20 @@ namespace { if (Named == 0) return false; // No function to extract } + if (isolateFunc) + return isolateFunction(M); + else + return deleteFunction(); + } + + bool deleteFunction() { + Named->setLinkage(GlobalValue::ExternalLinkage); + Named->deleteBody(); + assert(Named->isExternal() && "This didn't make the function external!"); + return true; + } + + bool isolateFunction(Module &M) { // Make sure our result is globally accessible... Named->setLinkage(GlobalValue::ExternalLinkage); @@ -37,7 +61,6 @@ namespace { // All of the functions may be used by global variables or the named // function. Loop through them and create a new, external functions that // can be "used", instead of ones with bodies. - // std::vector NewFunctions; Function *Last = &M.back(); // Figure out where the last real fn is... @@ -89,6 +112,6 @@ namespace { RegisterPass X("extract", "Function Extractor"); } -Pass *llvm::createFunctionExtractionPass(Function *F) { - return new FunctionExtractorPass(F); +Pass *llvm::createFunctionExtractionPass(Function *F, bool isolateFn) { + return new FunctionExtractorPass(F, isolateFn); }