mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Debug Info Finder: add processScope to actually handle the Scope.
Instead of just adding the scope to the list, we actually handle the scope. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186867 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0dcba2fadb
commit
fdd16bb918
@ -756,6 +756,8 @@ namespace llvm {
|
|||||||
/// processLocation - Process DILocation.
|
/// processLocation - Process DILocation.
|
||||||
void processLocation(DILocation Loc);
|
void processLocation(DILocation Loc);
|
||||||
|
|
||||||
|
void processScope(DIScope Scope);
|
||||||
|
|
||||||
/// addCompileUnit - Add compile unit into CUs.
|
/// addCompileUnit - Add compile unit into CUs.
|
||||||
bool addCompileUnit(DICompileUnit CU);
|
bool addCompileUnit(DICompileUnit CU);
|
||||||
|
|
||||||
|
@ -857,7 +857,7 @@ void DebugInfoFinder::processModule(const Module &M) {
|
|||||||
for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
|
for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
|
||||||
DIGlobalVariable DIG(GVs.getElement(i));
|
DIGlobalVariable DIG(GVs.getElement(i));
|
||||||
if (addGlobalVariable(DIG)) {
|
if (addGlobalVariable(DIG)) {
|
||||||
addScope(DIG.getContext());
|
processScope(DIG.getContext());
|
||||||
processType(DIG.getType());
|
processType(DIG.getType());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -897,7 +897,7 @@ void DebugInfoFinder::processLocation(DILocation Loc) {
|
|||||||
void DebugInfoFinder::processType(DIType DT) {
|
void DebugInfoFinder::processType(DIType DT) {
|
||||||
if (!addType(DT))
|
if (!addType(DT))
|
||||||
return;
|
return;
|
||||||
addScope(DT.getContext());
|
processScope(DT.getContext());
|
||||||
if (DT.isCompositeType()) {
|
if (DT.isCompositeType()) {
|
||||||
DICompositeType DCT(DT);
|
DICompositeType DCT(DT);
|
||||||
processType(DCT.getTypeDerivedFrom());
|
processType(DCT.getTypeDerivedFrom());
|
||||||
@ -915,6 +915,26 @@ void DebugInfoFinder::processType(DIType DT) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DebugInfoFinder::processScope(DIScope Scope) {
|
||||||
|
if (Scope.isType()) {
|
||||||
|
DIType Ty(Scope);
|
||||||
|
processType(Ty);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!addScope(Scope))
|
||||||
|
return;
|
||||||
|
if (Scope.isLexicalBlock()) {
|
||||||
|
DILexicalBlock LB(Scope);
|
||||||
|
processScope(LB.getContext());
|
||||||
|
} else if (Scope.isLexicalBlockFile()) {
|
||||||
|
DILexicalBlockFile LBF = DILexicalBlockFile(Scope);
|
||||||
|
processScope(LBF.getScope());
|
||||||
|
} else if (Scope.isNameSpace()) {
|
||||||
|
DINameSpace NS(Scope);
|
||||||
|
processScope(NS.getContext());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// processLexicalBlock
|
/// processLexicalBlock
|
||||||
void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
|
void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
|
||||||
DIScope Context = LB.getContext();
|
DIScope Context = LB.getContext();
|
||||||
@ -932,7 +952,7 @@ void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
|
|||||||
void DebugInfoFinder::processSubprogram(DISubprogram SP) {
|
void DebugInfoFinder::processSubprogram(DISubprogram SP) {
|
||||||
if (!addSubprogram(SP))
|
if (!addSubprogram(SP))
|
||||||
return;
|
return;
|
||||||
addScope(SP.getContext());
|
processScope(SP.getContext());
|
||||||
processType(SP.getType());
|
processType(SP.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user