mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Use a DenseMap instead of an std::map, speeding up the testcase in PR2368 by about a third.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51565 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -87,7 +87,7 @@ namespace {
|
|||||||
SetVector<Instruction*> &AffectedValues);
|
SetVector<Instruction*> &AffectedValues);
|
||||||
|
|
||||||
Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
|
Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
|
||||||
std::map<DomTreeNode*, Value*> &Phis);
|
DenseMap<DomTreeNode*, Value*> &Phis);
|
||||||
|
|
||||||
/// inLoop - returns true if the given block is within the current loop
|
/// inLoop - returns true if the given block is within the current loop
|
||||||
bool inLoop(BasicBlock* B) {
|
bool inLoop(BasicBlock* B) {
|
||||||
@@ -143,7 +143,7 @@ void LCSSA::ProcessInstruction(Instruction *Instr,
|
|||||||
++NumLCSSA; // We are applying the transformation
|
++NumLCSSA; // We are applying the transformation
|
||||||
|
|
||||||
// Keep track of the blocks that have the value available already.
|
// Keep track of the blocks that have the value available already.
|
||||||
std::map<DomTreeNode*, Value*> Phis;
|
DenseMap<DomTreeNode*, Value*> Phis;
|
||||||
|
|
||||||
DomTreeNode *InstrNode = DT->getNode(Instr->getParent());
|
DomTreeNode *InstrNode = DT->getNode(Instr->getParent());
|
||||||
|
|
||||||
@@ -247,7 +247,7 @@ void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
|
|||||||
/// GetValueForBlock - Get the value to use within the specified basic block.
|
/// GetValueForBlock - Get the value to use within the specified basic block.
|
||||||
/// available values are in Phis.
|
/// available values are in Phis.
|
||||||
Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
|
Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
|
||||||
std::map<DomTreeNode*, Value*> &Phis) {
|
DenseMap<DomTreeNode*, Value*> &Phis) {
|
||||||
// If there is no dominator info for this BB, it is unreachable.
|
// If there is no dominator info for this BB, it is unreachable.
|
||||||
if (BB == 0)
|
if (BB == 0)
|
||||||
return UndefValue::get(OrigInst->getType());
|
return UndefValue::get(OrigInst->getType());
|
||||||
|
Reference in New Issue
Block a user