diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-05 01:54:05 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-05 01:54:05 +0000 |
commit | 52909454c479c63c49a3386059a5ad58bbcc8b97 (patch) | |
tree | 19c76dff2db9a2d2c75bdf161cf2c7eace82d9e5 /tools | |
parent | f2cefb1b704ead4fc1f037ad586a87d6224ad97e (diff) | |
download | external_llvm-52909454c479c63c49a3386059a5ad58bbcc8b97.zip external_llvm-52909454c479c63c49a3386059a5ad58bbcc8b97.tar.gz external_llvm-52909454c479c63c49a3386059a5ad58bbcc8b97.tar.bz2 |
Deleting redundant copy of block extractor pass. See also PR1775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43694 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/ExtractFunction.cpp | 53 |
1 files changed, 2 insertions, 51 deletions
diff --git a/tools/bugpoint/ExtractFunction.cpp b/tools/bugpoint/ExtractFunction.cpp index 31f7fa4..7c7e214 100644 --- a/tools/bugpoint/ExtractFunction.cpp +++ b/tools/bugpoint/ExtractFunction.cpp @@ -297,52 +297,6 @@ Module *llvm::SplitFunctionsOutOfModule(Module *M, // Basic Block Extraction Code //===----------------------------------------------------------------------===// -namespace { - std::vector<BasicBlock*> BlocksToNotExtract; - - /// BlockExtractorPass - This pass is used by bugpoint to extract all blocks - /// from the module into their own functions except for those specified by the - /// BlocksToNotExtract list. - class BlockExtractorPass : public ModulePass { - bool runOnModule(Module &M); - public: - static char ID; // Pass ID, replacement for typeid - BlockExtractorPass() : ModulePass((intptr_t)&ID) {} - }; - char BlockExtractorPass::ID = 0; - RegisterPass<BlockExtractorPass> - XX("extract-bbs", "Extract Basic Blocks From Module (for bugpoint use)"); -} - -bool BlockExtractorPass::runOnModule(Module &M) { - std::set<BasicBlock*> TranslatedBlocksToNotExtract; - for (unsigned i = 0, e = BlocksToNotExtract.size(); i != e; ++i) { - BasicBlock *BB = BlocksToNotExtract[i]; - Function *F = BB->getParent(); - - // Map the corresponding function in this module. - Function *MF = M.getFunction(F->getName()); - - // Figure out which index the basic block is in its function. - Function::iterator BBI = MF->begin(); - std::advance(BBI, std::distance(F->begin(), Function::iterator(BB))); - TranslatedBlocksToNotExtract.insert(BBI); - } - - // Now that we know which blocks to not extract, figure out which ones we WANT - // to extract. - std::vector<BasicBlock*> BlocksToExtract; - for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) - for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) - if (!TranslatedBlocksToNotExtract.count(BB)) - BlocksToExtract.push_back(BB); - - for (unsigned i = 0, e = BlocksToExtract.size(); i != e; ++i) - ExtractBasicBlock(BlocksToExtract[i]); - - return !BlocksToExtract.empty(); -} - /// ExtractMappedBlocksFromModule - Extract all but the specified basic blocks /// into their own functions. The only detail is that M is actually a module /// cloned from the one the BBs are in, so some mapping needs to be performed. @@ -351,13 +305,10 @@ bool BlockExtractorPass::runOnModule(Module &M) { Module *BugDriver::ExtractMappedBlocksFromModule(const std::vector<BasicBlock*> &BBs, Module *M) { - // Set the global list so that pass will be able to access it. - BlocksToNotExtract = BBs; - std::vector<const PassInfo*> PI; - PI.push_back(getPI(new BlockExtractorPass())); + // FIXME: BBs is actually ignored. See http://llvm.org/PR1775 + PI.push_back(getPI(createBlockExtractorPass(BBs))); Module *Ret = runPassesOn(M, PI); - BlocksToNotExtract.clear(); if (Ret == 0) { std::cout << "*** Basic Block extraction failed, please report a bug!\n"; M = swapProgramIn(M); |