aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-07-30 18:25:15 +0000
committerDevang Patel <dpatel@apple.com>2009-07-30 18:25:15 +0000
commit98c65173bb27e1df4ebe87f8c864d6dc197209ca (patch)
treea3f3a609229cb6f2f64ef6ff3f78e3cf93d8d182 /include
parent48018e08f0d47331e72e5dcfcde2173217091b0e (diff)
downloadexternal_llvm-98c65173bb27e1df4ebe87f8c864d6dc197209ca.zip
external_llvm-98c65173bb27e1df4ebe87f8c864d6dc197209ca.tar.gz
external_llvm-98c65173bb27e1df4ebe87f8c864d6dc197209ca.tar.bz2
s/DebugInfoEnumerator/DebugInfoFinder/g
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/DebugInfo.h31
1 files changed, 15 insertions, 16 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h
index 1049f6d..f35bbc1 100644
--- a/include/llvm/Analysis/DebugInfo.h
+++ b/include/llvm/Analysis/DebugInfo.h
@@ -612,32 +612,31 @@ namespace llvm {
/// DebugInfoEnumrator - This object collects DebugInfo from
/// the module.
- class DebugInfoEnumerator {
+ class DebugInfoFinder {
public:
- /// EnumerateModule - Enumerate entire module and collect debug info
+ /// processModule - Process entire module and collect debug info
/// anchors.
- void enumerateModule(Module &M);
+ void processModule(Module &M);
private:
- /// enumerateType - Enumerate DIType.
- /// for a type.
- void enumerateType(DIType DT);
+ /// processType - Process DIType.
+ void processType(DIType DT);
- /// enumerateSubprogram - Enumberate DISubprogram.
- void enumerateSubprogram(DISubprogram SP);
+ /// processSubprogram - Enumberate DISubprogram.
+ void processSubprogram(DISubprogram SP);
- /// enumerateStopPoint - Enumerate DbgStopPointInst.
- void enumerateStopPoint(DbgStopPointInst *SPI);
+ /// processStopPoint - Process DbgStopPointInst.
+ void processStopPoint(DbgStopPointInst *SPI);
- /// enumerateFuncStart - Enumberate DbgFuncStartInst.
- void enumerateFuncStart(DbgFuncStartInst *FSI);
+ /// processFuncStart - Process DbgFuncStartInst.
+ void processFuncStart(DbgFuncStartInst *FSI);
- /// enumerateRegionStart - Enumerate DbgRegionStart.
- void enumerateRegionStart(DbgRegionStartInst *DRS);
+ /// processRegionStart - Process DbgRegionStart.
+ void processRegionStart(DbgRegionStartInst *DRS);
- /// enumerateRegionEnd - Enumerate DbgRegionEnd.
- void enumerateRegionEnd(DbgRegionEndInst *DRE);
+ /// processRegionEnd - Process DbgRegionEnd.
+ void processRegionEnd(DbgRegionEndInst *DRE);
/// addCompileUnit - Add compile unit into CUs.
bool addCompileUnit(DICompileUnit CU);