1. 87de649 Handle corner case where clang-cc is invoked directly to compile preprocessed source file without -main-file-name. In this case, CDDebugInfo is not able identify correct main source file becase SM.isFromMainFile() returns true for locations from header files as well as locations from main source file. by Devang Patel · 15 years ago
  2. b700377 implement debug info for _Complex. by Chris Lattner · 15 years ago
  3. 446c619 Appropriately set file name and directory name in debug info compile units. by Devang Patel · 15 years ago
  4. 9ca36b6 Add support to emit debug info for objective-c interfaces. by Devang Patel · 15 years ago
  5. 9c85ba3 reimplement debug info generation in terms of DebugInfo.h instead of by Chris Lattner · 16 years ago
  6. 960627d Avoid redundant cast<>s / simplify type dispatch. by Daniel Dunbar · 16 years ago
  7. 86cd8af privatize some methods. by Chris Lattner · 16 years ago
  8. 45d196b Move IRBuilder type definition to common file. - No functionality change. by Daniel Dunbar · 16 years ago
  9. bea06e4 Quick fix for PR2950, infinite loop generating debug info for by Daniel Dunbar · 16 years ago
  10. 3845f86 Formatting tweaks. - No functionality change. by Daniel Dunbar · 16 years ago
  11. 2104bf9 Map compilation units using FileEntry pointers instead of by Daniel Dunbar · 16 years ago
  12. 2284ac9 Debug info bug fix, function start wasn't getting generated correctly by Daniel Dunbar · 16 years ago
  13. 66031a5 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 16 years ago
  14. 58bf610 Update for IRBuilder template change (update LLVM!) by Daniel Dunbar · 16 years ago
  15. 85e3568 update to make IRBuilder API change. by Chris Lattner · 16 years ago
  16. 507de85 Generate debug descriptors for array types while generating the debug info. by Sanjiv Gupta · 16 years ago
  17. f58c27a Create debug type descriptors for aggregate/enum types. by Sanjiv Gupta · 16 years ago
  18. 686226b Emit debug information for global and static variables when -g is specified. by Sanjiv Gupta · 16 years ago
  19. cc9b163 Emit parameter and local variable debug information with -g. by Sanjiv Gupta · 16 years ago
  20. 32ea35f A couple minor fixes to make debug info usable for arbitrary code: don't by Eli Friedman · 16 years ago
  21. 1c6a38b Generate subprogram debug info with -g. by Sanjiv Gupta · 16 years ago
  22. 3f2af10 Make debugging information usable. This is barebones, but it makes -g by Eli Friedman · 16 years ago
  23. e8b9f5b Added -g command line options to clang for generating source level debug information. This patch currently enables generation of line number debug information (stoppoints) and region begin/end debug information. The new files CGDebugInfo.h and CGDebugInfo.cpp implements the debug info manager class CGDebugInfo. by Sanjiv Gupta · 16 years ago