[llvm-commits] [llvm] r68422 - /llvm/trunk/tools/bugpoint/CrashDebugger.cpp
Nick Lewycky
nicholas at mxc.ca
Sat Apr 4 02:39:36 PDT 2009
Author: nicholas
Date: Sat Apr 4 04:39:23 2009
New Revision: 68422
URL: http://llvm.org/viewvc/llvm-project?rev=68422&view=rev
Log:
CloneModule stores the BasicBlock mapping in ValueMap. There's no need to
recompute it. This fixes a O(n^2) in number of blocks when reducing a crash.
Modified:
llvm/trunk/tools/bugpoint/CrashDebugger.cpp
Modified: llvm/trunk/tools/bugpoint/CrashDebugger.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/CrashDebugger.cpp?rev=68422&r1=68421&r2=68422&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/CrashDebugger.cpp (original)
+++ llvm/trunk/tools/bugpoint/CrashDebugger.cpp Sat Apr 4 04:39:23 2009
@@ -21,6 +21,7 @@
#include "llvm/Pass.h"
#include "llvm/PassManager.h"
#include "llvm/ValueSymbolTable.h"
+#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/Analysis/Verifier.h"
#include "llvm/Support/CFG.h"
#include "llvm/Transforms/Scalar.h"
@@ -267,21 +268,9 @@
Module *M = CloneModule(BD.getProgram(), ValueMap);
// Convert list to set for fast lookup...
- std::set<BasicBlock*> Blocks;
- for (unsigned i = 0, e = BBs.size(); i != e; ++i) {
- // Convert the basic block from the original module to the new module...
- const Function *F = BBs[i]->getParent();
- Function *CMF = cast<Function>(ValueMap[F]);
- assert(CMF && "Function not in module?!");
- assert(CMF->getFunctionType() == F->getFunctionType() && "wrong type?");
- assert(CMF->getName() == F->getName() && "wrong name?");
-
- // Get the mapped basic block...
- Function::iterator CBI = CMF->begin();
- std::advance(CBI, std::distance(F->begin(),
- Function::const_iterator(BBs[i])));
- Blocks.insert(CBI);
- }
+ SmallPtrSet<BasicBlock*, 8> Blocks;
+ for (unsigned i = 0, e = BBs.size(); i != e; ++i)
+ Blocks.insert(cast<BasicBlock>(ValueMap[BBs[i]]));
std::cout << "Checking for crash with only these blocks:";
unsigned NumPrint = Blocks.size();
@@ -320,8 +309,8 @@
// have to take.
std::vector<std::pair<Function*, std::string> > BlockInfo;
- for (std::set<BasicBlock*>::iterator I = Blocks.begin(), E = Blocks.end();
- I != E; ++I)
+ for (SmallPtrSet<BasicBlock*, 8>::iterator I = Blocks.begin(),
+ E = Blocks.end(); I != E; ++I)
BlockInfo.push_back(std::make_pair((*I)->getParent(), (*I)->getName()));
// Now run the CFG simplify pass on the function...
More information about the llvm-commits
mailing list