[llvm] r207732 - Speculatively roll back r207724-r207726, which are code cleanup changes and
Richard Smith
richard-llvm at metafoo.co.uk
Wed Apr 30 17:46:59 PDT 2014
Author: rsmith
Date: Wed Apr 30 19:46:58 2014
New Revision: 207732
URL: http://llvm.org/viewvc/llvm-project?rev=207732&view=rev
Log:
Speculatively roll back r207724-r207726, which are code cleanup changes and
appear to be breaking a bootstrapped build of compiler-rt.
Modified:
llvm/trunk/include/llvm/CodeGen/LexicalScopes.h
llvm/trunk/lib/CodeGen/LexicalScopes.cpp
Modified: llvm/trunk/include/llvm/CodeGen/LexicalScopes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LexicalScopes.h?rev=207732&r1=207731&r2=207732&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LexicalScopes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LexicalScopes.h Wed Apr 30 19:46:58 2014
@@ -25,7 +25,6 @@
#include "llvm/IR/Metadata.h"
#include "llvm/IR/ValueHandle.h"
#include <utility>
-#include <memory>
namespace llvm {
class MachineInstr;
@@ -90,8 +89,7 @@ public:
/// findAbstractScope - Find an abstract scope or return NULL.
LexicalScope *findAbstractScope(const MDNode *N) {
- auto I = AbstractScopeMap.find(N);
- return I != AbstractScopeMap.end() ? I->second.get() : nullptr;
+ return AbstractScopeMap.lookup(N);
}
/// findInlinedScope - Find an inlined scope for the given DebugLoc or return
@@ -102,8 +100,7 @@ public:
/// findLexicalScope - Find regular lexical scope or return NULL.
LexicalScope *findLexicalScope(const MDNode *N) {
- auto I = LexicalScopeMap.find(N);
- return I != LexicalScopeMap.end() ? I->second.get() : nullptr;
+ return LexicalScopeMap.lookup(N);
}
/// dump - Print data structures to dbgs().
@@ -137,7 +134,7 @@ private:
/// LexicalScopeMap - Tracks the scopes in the current function. Owns the
/// contained LexicalScope*s.
- DenseMap<const MDNode *, std::unique_ptr<LexicalScope>> LexicalScopeMap;
+ DenseMap<const MDNode *, LexicalScope *> LexicalScopeMap;
/// InlinedLexicalScopeMap - Tracks inlined function scopes in current
/// function.
@@ -145,7 +142,7 @@ private:
/// AbstractScopeMap - These scopes are not included LexicalScopeMap.
/// AbstractScopes owns its LexicalScope*s.
- DenseMap<const MDNode *, std::unique_ptr<LexicalScope>> AbstractScopeMap;
+ DenseMap<const MDNode *, LexicalScope *> AbstractScopeMap;
/// AbstractScopesList - Tracks abstract scopes constructed while processing
/// a function.
Modified: llvm/trunk/lib/CodeGen/LexicalScopes.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LexicalScopes.cpp?rev=207732&r1=207731&r2=207732&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LexicalScopes.cpp (original)
+++ llvm/trunk/lib/CodeGen/LexicalScopes.cpp Wed Apr 30 19:46:58 2014
@@ -33,6 +33,8 @@ LexicalScopes::~LexicalScopes() { reset(
void LexicalScopes::reset() {
MF = nullptr;
CurrentFnLexicalScope = nullptr;
+ DeleteContainerSeconds(LexicalScopeMap);
+ DeleteContainerSeconds(AbstractScopeMap);
InlinedLexicalScopeMap.clear();
AbstractScopesList.clear();
}
@@ -122,8 +124,7 @@ LexicalScope *LexicalScopes::findLexical
if (IA)
return InlinedLexicalScopeMap.lookup(DebugLoc::getFromDILocation(IA));
- auto I = LexicalScopeMap.find(Scope);
- return I != LexicalScopeMap.end() ? I->second.get() : nullptr;
+ return LexicalScopeMap.lookup(Scope);
}
/// getOrCreateLexicalScope - Find lexical scope for the given DebugLoc. If
@@ -151,39 +152,35 @@ LexicalScope *LexicalScopes::getOrCreate
D = DIDescriptor(Scope);
}
- auto IterBool = LexicalScopeMap.insert(
- std::make_pair(Scope, std::unique_ptr<LexicalScope>()));
- auto &MapValue = *IterBool.first;
- if (!IterBool.second)
- return MapValue.second.get();
+ LexicalScope *WScope = LexicalScopeMap.lookup(Scope);
+ if (WScope)
+ return WScope;
LexicalScope *Parent = nullptr;
if (D.isLexicalBlock())
Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope));
- MapValue.second =
- make_unique<LexicalScope>(Parent, DIDescriptor(Scope), nullptr, false);
+ WScope = new LexicalScope(Parent, DIDescriptor(Scope), nullptr, false);
+ LexicalScopeMap.insert(std::make_pair(Scope, WScope));
if (!Parent && DIDescriptor(Scope).isSubprogram() &&
DISubprogram(Scope).describes(MF->getFunction()))
- CurrentFnLexicalScope = MapValue.second.get();
+ CurrentFnLexicalScope = WScope;
- return MapValue.second.get();
+ return WScope;
}
/// getOrCreateInlinedScope - Find or create an inlined lexical scope.
LexicalScope *LexicalScopes::getOrCreateInlinedScope(MDNode *Scope,
MDNode *InlinedAt) {
- auto IterBool = LexicalScopeMap.insert(
- std::make_pair(InlinedAt, std::unique_ptr<LexicalScope>()));
- auto &MapValue = *IterBool.first;
- if (!IterBool.second)
- return MapValue.second.get();
+ LexicalScope *InlinedScope = LexicalScopeMap.lookup(InlinedAt);
+ if (InlinedScope)
+ return InlinedScope;
DebugLoc InlinedLoc = DebugLoc::getFromDILocation(InlinedAt);
- MapValue.second =
- make_unique<LexicalScope>(getOrCreateLexicalScope(InlinedLoc),
- DIDescriptor(Scope), InlinedAt, false);
- InlinedLexicalScopeMap[InlinedLoc] = MapValue.second.get();
- return MapValue.second.get();
+ InlinedScope = new LexicalScope(getOrCreateLexicalScope(InlinedLoc),
+ DIDescriptor(Scope), InlinedAt, false);
+ InlinedLexicalScopeMap[InlinedLoc] = InlinedScope;
+ LexicalScopeMap[InlinedAt] = InlinedScope;
+ return InlinedScope;
}
/// getOrCreateAbstractScope - Find or create an abstract lexical scope.
@@ -193,11 +190,9 @@ LexicalScope *LexicalScopes::getOrCreate
DIDescriptor Scope(N);
if (Scope.isLexicalBlockFile())
Scope = DILexicalBlockFile(Scope).getScope();
- auto IterBool = AbstractScopeMap.insert(
- std::make_pair(N, std::unique_ptr<LexicalScope>()));
- auto &MapEntry = *IterBool.first;
- if (!IterBool.second)
- return MapEntry.second.get();
+ LexicalScope *AScope = AbstractScopeMap.lookup(N);
+ if (AScope)
+ return AScope;
LexicalScope *Parent = nullptr;
if (Scope.isLexicalBlock()) {
@@ -205,11 +200,11 @@ LexicalScope *LexicalScopes::getOrCreate
DIDescriptor ParentDesc = DB.getContext();
Parent = getOrCreateAbstractScope(ParentDesc);
}
- MapEntry.second =
- make_unique<LexicalScope>(Parent, DIDescriptor(N), nullptr, true);
+ AScope = new LexicalScope(Parent, DIDescriptor(N), nullptr, true);
+ AbstractScopeMap[N] = AScope;
if (DIDescriptor(N).isSubprogram())
- AbstractScopesList.push_back(MapEntry.second.get());
- return MapEntry.second.get();
+ AbstractScopesList.push_back(AScope);
+ return AScope;
}
/// constructScopeNest
More information about the llvm-commits
mailing list