Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 1 | //===-- ProgramInfo.cpp - Compute and cache info about a program ----------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 10 | // This file implements the ProgramInfo and related classes, by sorting through |
| 11 | // the loaded Module. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Debugger/ProgramInfo.h" |
| 16 | #include "llvm/Constants.h" |
| 17 | #include "llvm/DerivedTypes.h" |
| 18 | #include "llvm/Intrinsics.h" |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 19 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 4ab78e0 | 2004-07-29 17:15:38 +0000 | [diff] [blame] | 20 | #include "llvm/Instructions.h" |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 21 | #include "llvm/Module.h" |
| 22 | #include "llvm/Debugger/SourceFile.h" |
| 23 | #include "llvm/Debugger/SourceLanguage.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 24 | #include "llvm/Support/SlowOperationInformer.h" |
| 25 | #include "llvm/ADT/STLExtras.h" |
Reid Spencer | 954da37 | 2004-07-04 12:19:56 +0000 | [diff] [blame] | 26 | #include <iostream> |
| 27 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
| 30 | /// getGlobalVariablesUsing - Return all of the global variables which have the |
| 31 | /// specified value in their initializer somewhere. |
| 32 | static void getGlobalVariablesUsing(Value *V, |
| 33 | std::vector<GlobalVariable*> &Found) { |
| 34 | for (Value::use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) { |
| 35 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(*I)) |
| 36 | Found.push_back(GV); |
| 37 | else if (Constant *C = dyn_cast<Constant>(*I)) |
| 38 | getGlobalVariablesUsing(C, Found); |
| 39 | } |
| 40 | } |
| 41 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 42 | /// getNextStopPoint - Follow the def-use chains of the specified LLVM value, |
| 43 | /// traversing the use chains until we get to a stoppoint. When we do, return |
| 44 | /// the source location of the stoppoint. If we don't find a stoppoint, return |
| 45 | /// null. |
| 46 | static const GlobalVariable *getNextStopPoint(const Value *V, unsigned &LineNo, |
| 47 | unsigned &ColNo) { |
| 48 | // The use-def chains can fork. As such, we pick the lowest numbered one we |
| 49 | // find. |
| 50 | const GlobalVariable *LastDesc = 0; |
| 51 | unsigned LastLineNo = ~0; |
| 52 | unsigned LastColNo = ~0; |
| 53 | |
| 54 | for (Value::use_const_iterator UI = V->use_begin(), E = V->use_end(); |
| 55 | UI != E; ++UI) { |
| 56 | bool ShouldRecurse = true; |
| 57 | if (cast<Instruction>(*UI)->getOpcode() == Instruction::PHI) { |
| 58 | // Infinite loops == bad, ignore PHI nodes. |
| 59 | ShouldRecurse = false; |
| 60 | } else if (const CallInst *CI = dyn_cast<CallInst>(*UI)) { |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 62 | // If we found a stop point, check to see if it is earlier than what we |
| 63 | // already have. If so, remember it. |
Reid Spencer | 3ed469c | 2006-11-02 20:25:50 +0000 | [diff] [blame] | 64 | if (CI->getCalledFunction()) |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 65 | if (const DbgStopPointInst *SPI = dyn_cast<DbgStopPointInst>(CI)) { |
| 66 | unsigned CurLineNo = SPI->getLine(); |
| 67 | unsigned CurColNo = SPI->getColumn(); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 68 | const GlobalVariable *CurDesc = 0; |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 69 | const Value *Op = SPI->getContext(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 71 | if ((CurDesc = dyn_cast<GlobalVariable>(Op)) && |
| 72 | (LineNo < LastLineNo || |
| 73 | (LineNo == LastLineNo && ColNo < LastColNo))) { |
| 74 | LastDesc = CurDesc; |
| 75 | LastLineNo = CurLineNo; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 76 | LastColNo = CurColNo; |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 77 | } |
| 78 | ShouldRecurse = false; |
| 79 | } |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | // If this is not a phi node or a stopping point, recursively scan the users |
| 83 | // of this instruction to skip over region.begin's and the like. |
| 84 | if (ShouldRecurse) { |
| 85 | unsigned CurLineNo, CurColNo; |
| 86 | if (const GlobalVariable *GV = getNextStopPoint(*UI, CurLineNo,CurColNo)){ |
| 87 | if (LineNo < LastLineNo || (LineNo == LastLineNo && ColNo < LastColNo)){ |
| 88 | LastDesc = GV; |
| 89 | LastLineNo = CurLineNo; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 90 | LastColNo = CurColNo; |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | } |
| 94 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 95 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 96 | if (LastDesc) { |
| 97 | LineNo = LastLineNo != ~0U ? LastLineNo : 0; |
| 98 | ColNo = LastColNo != ~0U ? LastColNo : 0; |
| 99 | } |
| 100 | return LastDesc; |
| 101 | } |
| 102 | |
| 103 | |
| 104 | //===----------------------------------------------------------------------===// |
| 105 | // SourceFileInfo implementation |
| 106 | // |
| 107 | |
| 108 | SourceFileInfo::SourceFileInfo(const GlobalVariable *Desc, |
| 109 | const SourceLanguage &Lang) |
| 110 | : Language(&Lang), Descriptor(Desc) { |
| 111 | Version = 0; |
| 112 | SourceText = 0; |
| 113 | |
| 114 | if (Desc && Desc->hasInitializer()) |
| 115 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Desc->getInitializer())) |
| 116 | if (CS->getNumOperands() > 4) { |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 117 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(CS->getOperand(1))) |
| 118 | Version = CUI->getZExtValue(); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 119 | |
Jim Laskey | 21b6c9d | 2006-03-08 18:11:07 +0000 | [diff] [blame] | 120 | BaseName = CS->getOperand(3)->getStringValue(); |
| 121 | Directory = CS->getOperand(4)->getStringValue(); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 122 | } |
| 123 | } |
| 124 | |
| 125 | SourceFileInfo::~SourceFileInfo() { |
| 126 | delete SourceText; |
| 127 | } |
| 128 | |
| 129 | SourceFile &SourceFileInfo::getSourceText() const { |
| 130 | // FIXME: this should take into account the source search directories! |
Reid Spencer | 663601c | 2004-12-13 02:59:15 +0000 | [diff] [blame] | 131 | if (SourceText == 0) { // Read the file in if we haven't already. |
| 132 | sys::Path tmpPath; |
| 133 | if (!Directory.empty()) |
Reid Spencer | dd04df0 | 2005-07-07 23:21:43 +0000 | [diff] [blame] | 134 | tmpPath.set(Directory); |
| 135 | tmpPath.appendComponent(BaseName); |
Reid Spencer | c7f0832 | 2005-07-07 18:21:42 +0000 | [diff] [blame] | 136 | if (tmpPath.canRead()) |
Reid Spencer | 663601c | 2004-12-13 02:59:15 +0000 | [diff] [blame] | 137 | SourceText = new SourceFile(tmpPath.toString(), Descriptor); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 138 | else |
| 139 | SourceText = new SourceFile(BaseName, Descriptor); |
Reid Spencer | 663601c | 2004-12-13 02:59:15 +0000 | [diff] [blame] | 140 | } |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 141 | return *SourceText; |
| 142 | } |
| 143 | |
| 144 | |
| 145 | //===----------------------------------------------------------------------===// |
| 146 | // SourceFunctionInfo implementation |
| 147 | // |
| 148 | SourceFunctionInfo::SourceFunctionInfo(ProgramInfo &PI, |
| 149 | const GlobalVariable *Desc) |
| 150 | : Descriptor(Desc) { |
| 151 | LineNo = ColNo = 0; |
| 152 | if (Desc && Desc->hasInitializer()) |
| 153 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Desc->getInitializer())) |
| 154 | if (CS->getNumOperands() > 2) { |
| 155 | // Entry #1 is the file descriptor. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 156 | if (const GlobalVariable *GV = |
Reid Spencer | 518310c | 2004-07-18 00:44:37 +0000 | [diff] [blame] | 157 | dyn_cast<GlobalVariable>(CS->getOperand(1))) |
| 158 | SourceFile = &PI.getSourceFile(GV); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 159 | |
| 160 | // Entry #2 is the function name. |
Jim Laskey | 21b6c9d | 2006-03-08 18:11:07 +0000 | [diff] [blame] | 161 | Name = CS->getOperand(2)->getStringValue(); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | /// getSourceLocation - This method returns the location of the first stopping |
| 166 | /// point in the function. |
| 167 | void SourceFunctionInfo::getSourceLocation(unsigned &RetLineNo, |
| 168 | unsigned &RetColNo) const { |
| 169 | // If we haven't computed this yet... |
| 170 | if (!LineNo) { |
| 171 | // Look at all of the users of the function descriptor, looking for calls to |
| 172 | // %llvm.dbg.func.start. |
| 173 | for (Value::use_const_iterator UI = Descriptor->use_begin(), |
| 174 | E = Descriptor->use_end(); UI != E; ++UI) |
| 175 | if (const CallInst *CI = dyn_cast<CallInst>(*UI)) |
| 176 | if (const Function *F = CI->getCalledFunction()) |
| 177 | if (F->getIntrinsicID() == Intrinsic::dbg_func_start) { |
| 178 | // We found the start of the function. Check to see if there are |
| 179 | // any stop points on the use-list of the function start. |
| 180 | const GlobalVariable *SD = getNextStopPoint(CI, LineNo, ColNo); |
| 181 | if (SD) { // We found the first stop point! |
| 182 | // This is just a sanity check. |
| 183 | if (getSourceFile().getDescriptor() != SD) |
| 184 | std::cout << "WARNING: first line of function is not in the" |
| 185 | " file that the function descriptor claims it is in.\n"; |
| 186 | break; |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | RetLineNo = LineNo; RetColNo = ColNo; |
| 191 | } |
| 192 | |
| 193 | //===----------------------------------------------------------------------===// |
| 194 | // ProgramInfo implementation |
| 195 | // |
| 196 | |
Reid Spencer | 9d88d1a | 2004-12-13 17:01:53 +0000 | [diff] [blame] | 197 | ProgramInfo::ProgramInfo(Module *m) : M(m), ProgramTimeStamp(0,0) { |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 198 | assert(M && "Cannot create program information with a null module!"); |
Chris Lattner | 252ad03 | 2006-07-28 22:03:44 +0000 | [diff] [blame] | 199 | sys::FileStatus Stat; |
| 200 | if (!sys::Path(M->getModuleIdentifier()).getFileStatus(Stat)) |
| 201 | ProgramTimeStamp = Stat.getTimestamp(); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 202 | |
| 203 | SourceFilesIsComplete = false; |
| 204 | SourceFunctionsIsComplete = false; |
| 205 | } |
| 206 | |
| 207 | ProgramInfo::~ProgramInfo() { |
| 208 | // Delete cached information about source program objects... |
| 209 | for (std::map<const GlobalVariable*, SourceFileInfo*>::iterator |
| 210 | I = SourceFiles.begin(), E = SourceFiles.end(); I != E; ++I) |
| 211 | delete I->second; |
| 212 | for (std::map<const GlobalVariable*, SourceFunctionInfo*>::iterator |
| 213 | I = SourceFunctions.begin(), E = SourceFunctions.end(); I != E; ++I) |
| 214 | delete I->second; |
| 215 | |
| 216 | // Delete the source language caches. |
| 217 | for (unsigned i = 0, e = LanguageCaches.size(); i != e; ++i) |
| 218 | delete LanguageCaches[i].second; |
| 219 | } |
| 220 | |
| 221 | |
| 222 | //===----------------------------------------------------------------------===// |
| 223 | // SourceFileInfo tracking... |
| 224 | // |
| 225 | |
| 226 | /// getSourceFile - Return source file information for the specified source file |
| 227 | /// descriptor object, adding it to the collection as needed. This method |
| 228 | /// always succeeds (is unambiguous), and is always efficient. |
| 229 | /// |
| 230 | const SourceFileInfo & |
| 231 | ProgramInfo::getSourceFile(const GlobalVariable *Desc) { |
| 232 | SourceFileInfo *&Result = SourceFiles[Desc]; |
| 233 | if (Result) return *Result; |
| 234 | |
| 235 | // Figure out what language this source file comes from... |
| 236 | unsigned LangID = 0; // Zero is unknown language |
| 237 | if (Desc && Desc->hasInitializer()) |
| 238 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Desc->getInitializer())) |
| 239 | if (CS->getNumOperands() > 2) |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 240 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(CS->getOperand(2))) |
| 241 | LangID = CUI->getZExtValue(); |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 242 | |
| 243 | const SourceLanguage &Lang = SourceLanguage::get(LangID); |
| 244 | SourceFileInfo *New = Lang.createSourceFileInfo(Desc, *this); |
| 245 | |
| 246 | // FIXME: this should check to see if there is already a Filename/WorkingDir |
| 247 | // pair that matches this one. If so, we shouldn't create the duplicate! |
| 248 | // |
| 249 | SourceFileIndex.insert(std::make_pair(New->getBaseName(), New)); |
| 250 | return *(Result = New); |
| 251 | } |
| 252 | |
| 253 | |
| 254 | /// getSourceFiles - Index all of the source files in the program and return |
| 255 | /// a mapping of it. This information is lazily computed the first time |
| 256 | /// that it is requested. Since this information can take a long time to |
| 257 | /// compute, the user is given a chance to cancel it. If this occurs, an |
| 258 | /// exception is thrown. |
| 259 | const std::map<const GlobalVariable*, SourceFileInfo*> & |
| 260 | ProgramInfo::getSourceFiles(bool RequiresCompleteMap) { |
| 261 | // If we have a fully populated map, or if the client doesn't need one, just |
| 262 | // return what we have. |
| 263 | if (SourceFilesIsComplete || !RequiresCompleteMap) |
| 264 | return SourceFiles; |
| 265 | |
| 266 | // Ok, all of the source file descriptors (compile_unit in dwarf terms), |
| 267 | // should be on the use list of the llvm.dbg.translation_units global. |
| 268 | // |
| 269 | GlobalVariable *Units = |
| 270 | M->getGlobalVariable("llvm.dbg.translation_units", |
| 271 | StructType::get(std::vector<const Type*>())); |
| 272 | if (Units == 0) |
| 273 | throw "Program contains no debugging information!"; |
| 274 | |
| 275 | std::vector<GlobalVariable*> TranslationUnits; |
| 276 | getGlobalVariablesUsing(Units, TranslationUnits); |
| 277 | |
| 278 | SlowOperationInformer SOI("building source files index"); |
| 279 | |
| 280 | // Loop over all of the translation units found, building the SourceFiles |
| 281 | // mapping. |
| 282 | for (unsigned i = 0, e = TranslationUnits.size(); i != e; ++i) { |
| 283 | getSourceFile(TranslationUnits[i]); |
Chris Lattner | 148f440 | 2006-07-06 22:34:06 +0000 | [diff] [blame] | 284 | if (SOI.progress(i+1, e)) |
| 285 | throw "While building source files index, operation cancelled."; |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | // Ok, if we got this far, then we indexed the whole program. |
| 289 | SourceFilesIsComplete = true; |
| 290 | return SourceFiles; |
| 291 | } |
| 292 | |
| 293 | /// getSourceFile - Look up the file with the specified name. If there is |
| 294 | /// more than one match for the specified filename, prompt the user to pick |
| 295 | /// one. If there is no source file that matches the specified name, throw |
| 296 | /// an exception indicating that we can't find the file. Otherwise, return |
| 297 | /// the file information for that file. |
| 298 | const SourceFileInfo &ProgramInfo::getSourceFile(const std::string &Filename) { |
| 299 | std::multimap<std::string, SourceFileInfo*>::const_iterator Start, End; |
| 300 | getSourceFiles(); |
| 301 | tie(Start, End) = SourceFileIndex.equal_range(Filename); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 303 | if (Start == End) throw "Could not find source file '" + Filename + "'!"; |
| 304 | const SourceFileInfo &SFI = *Start->second; |
| 305 | ++Start; |
| 306 | if (Start == End) return SFI; |
| 307 | |
| 308 | throw "FIXME: Multiple source files with the same name not implemented!"; |
| 309 | } |
| 310 | |
| 311 | |
| 312 | //===----------------------------------------------------------------------===// |
| 313 | // SourceFunctionInfo tracking... |
| 314 | // |
| 315 | |
| 316 | |
| 317 | /// getFunction - Return function information for the specified function |
| 318 | /// descriptor object, adding it to the collection as needed. This method |
| 319 | /// always succeeds (is unambiguous), and is always efficient. |
| 320 | /// |
| 321 | const SourceFunctionInfo & |
| 322 | ProgramInfo::getFunction(const GlobalVariable *Desc) { |
| 323 | SourceFunctionInfo *&Result = SourceFunctions[Desc]; |
| 324 | if (Result) return *Result; |
| 325 | |
| 326 | // Figure out what language this function comes from... |
| 327 | const GlobalVariable *SourceFileDesc = 0; |
| 328 | if (Desc && Desc->hasInitializer()) |
| 329 | if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Desc->getInitializer())) |
| 330 | if (CS->getNumOperands() > 0) |
Reid Spencer | 518310c | 2004-07-18 00:44:37 +0000 | [diff] [blame] | 331 | if (const GlobalVariable *GV = |
| 332 | dyn_cast<GlobalVariable>(CS->getOperand(1))) |
| 333 | SourceFileDesc = GV; |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 334 | |
| 335 | const SourceLanguage &Lang = getSourceFile(SourceFileDesc).getLanguage(); |
| 336 | return *(Result = Lang.createSourceFunctionInfo(Desc, *this)); |
| 337 | } |
| 338 | |
| 339 | |
| 340 | // getSourceFunctions - Index all of the functions in the program and return |
| 341 | // them. This information is lazily computed the first time that it is |
| 342 | // requested. Since this information can take a long time to compute, the user |
| 343 | // is given a chance to cancel it. If this occurs, an exception is thrown. |
| 344 | const std::map<const GlobalVariable*, SourceFunctionInfo*> & |
| 345 | ProgramInfo::getSourceFunctions(bool RequiresCompleteMap) { |
| 346 | if (SourceFunctionsIsComplete || !RequiresCompleteMap) |
| 347 | return SourceFunctions; |
| 348 | |
| 349 | // Ok, all of the source function descriptors (subprogram in dwarf terms), |
| 350 | // should be on the use list of the llvm.dbg.translation_units global. |
| 351 | // |
| 352 | GlobalVariable *Units = |
| 353 | M->getGlobalVariable("llvm.dbg.globals", |
| 354 | StructType::get(std::vector<const Type*>())); |
| 355 | if (Units == 0) |
| 356 | throw "Program contains no debugging information!"; |
| 357 | |
| 358 | std::vector<GlobalVariable*> Functions; |
| 359 | getGlobalVariablesUsing(Units, Functions); |
| 360 | |
| 361 | SlowOperationInformer SOI("building functions index"); |
| 362 | |
| 363 | // Loop over all of the functions found, building the SourceFunctions mapping. |
| 364 | for (unsigned i = 0, e = Functions.size(); i != e; ++i) { |
| 365 | getFunction(Functions[i]); |
Chris Lattner | 148f440 | 2006-07-06 22:34:06 +0000 | [diff] [blame] | 366 | if (SOI.progress(i+1, e)) |
| 367 | throw "While functions index, operation cancelled."; |
Chris Lattner | 2eacf26 | 2004-01-05 05:25:10 +0000 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | // Ok, if we got this far, then we indexed the whole program. |
| 371 | SourceFunctionsIsComplete = true; |
| 372 | return SourceFunctions; |
| 373 | } |