1. 9c6c3a0 Emit human readable names for c/c++ functions. Avoid emitting linkage name if it matches regular name. by Devang Patel · 15 years ago
  2. 199c3d6 Roll out ASTContext::getTypeSizeInChars(), replacing instances of by Ken Dyck · 15 years ago
  3. f5f7d86 Get rid of FixedWidthIntType, as suggested by Chris and Eli. by Anders Carlsson · 15 years ago
  4. 23e92c0 adjust for llvm api changes. by Chris Lattner · 15 years ago
  5. d5b8902 this form of SetDebugLocation is about to go away, add some #includes that by Chris Lattner · 15 years ago
  6. 840943d Improve on my previous fix for debug information. Rather than by Douglas Gregor · 15 years ago
  7. 2101a82 Teach debug info generation to handle TemplateSpecializationType, by Douglas Gregor · 15 years ago
  8. f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
  9. 155fd79 Use StringRef in CGDebugInfo::EmitFunctionStart. by Benjamin Kramer · 15 years ago
  10. 47daf68 Use Path.makeAbsolute() and make a constant std::string a const char*. by Benjamin Kramer · 15 years ago
  11. e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
  12. 20f12a2 Add rudimentary support for member pointers to CGDebugInfo. by Anders Carlsson · 15 years ago
  13. 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
  14. 7362162 Use StringRef (again) in DebugInfo interface. by Devang Patel · 15 years ago
  15. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  16. e705641 revert r88963. by Devang Patel · 15 years ago
  17. 9464ec4 Use TrackingVH to hold forward decl. This one is for RecordType. by Devang Patel · 15 years ago
  18. 14d6365 Parallel fix to r88951: use TrackingVH to hold forward decl. by Eli Friedman · 15 years ago
  19. 1468ac7 Fix valgrind uninitialized error. by Eli Friedman · 15 years ago
  20. ffffb03 Use TrackingVH to hold forward decl. by Devang Patel · 15 years ago
  21. 5b6117a Canonicalize the type before trying to create a debug type. by Anders Carlsson · 15 years ago
  22. 0dd57c6 Have CGDebugInfo::getOrCreateType cache the QualType instead of having every ConvertType overload do it. by Anders Carlsson · 15 years ago
  23. 8fae060 Do not store DIDescriptor directly into a container. Store MDNode directly, through TrackingVH. by Devang Patel · 15 years ago
  24. 23908b8 "Attach debug info with llvm instructions" mode was enabled a month ago. Now make it permanent and remove old way of inserting intrinsics to encode debug info for locations and types. by Devang Patel · 15 years ago
  25. 11169ad Use getNameAsCString() instead of getName().data() by Devang Patel · 15 years ago
  26. 2811ccf Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 15 years ago
  27. ab71ff5 Do not use StringRef while using DebugInfo interface. by Devang Patel · 15 years ago
  28. ebf16e8 Do not eagerly set stop point for arguments. This misleads the debugger in identifying beginning of function body. Instead, create new location to attach with llvm.dbg.declare. This location is only used to find the context of the variable by the code generator, and it is not used to emit line number info. by Devang Patel · 15 years ago
  29. a020380 Attach location info with llvm.dbg.declare. by Devang Patel · 15 years ago
  30. ba578cb Revert r86315 and add Type::FixedWidthInt to the FIXME cases. by Anders Carlsson · 15 years ago
  31. e468611 Do not assert if debug info for certain type is not generated. by Devang Patel · 15 years ago
  32. 0284fdc Do not emit linkage name for global variables. It confuses gdb, because it picks up AT_MIPS_linkage_name and ignores AT_name. by Devang Patel · 15 years ago
  33. a031b35 Simplify the debug info code, handle lvalue references and template specializations. by Anders Carlsson · 15 years ago
  34. ba397fe Handle QualifiedNameType and SubstTemplateTypeParmType types in CGDebugInfo::CreateTypeNode. by Anders Carlsson · 15 years ago
  35. bfe6995 Don't assert when trying to generate debug info for vector types. This needs to be fixed eventually... by Anders Carlsson · 15 years ago
  36. b938118 Instead of returning a null DIType for unhandled types, assert. by Anders Carlsson · 15 years ago
  37. 2e09db7 Enable debug info for global variables at -O1+ by Devang Patel · 15 years ago
  38. 91cc815 Fixup the return type of functions. by Mike Stump · 15 years ago
  39. ca80a5f Do not eagerly cache DITypes because it allows real struct type to be shadowed by forward declared struct type. by Devang Patel · 15 years ago
  40. f6a39b7 Encode global variable name in debug info. by Devang Patel · 15 years ago
  41. 46a617a Remove the ConstantArrayType subtypes. This information is preserved in the by John McCall · 15 years ago
  42. 2d7bc3e Few targets like PIC16 mangle the names of global variables, so retrieve the name by Sanjiv Gupta · 15 years ago
  43. 7c173cb Encode long double. by Devang Patel · 15 years ago
  44. d8945d6 Allow customization for the producer information in the debug output. by Mike Stump · 15 years ago
  45. 6e461bf InsertSubprogramStart if ATTACH_DEBUG_INFO_TO_AN_INSN is not defined. by Devang Patel · 15 years ago
  46. bbd9fa4 Add support to attach debug info to an instruction. This is not yet enabled. by Devang Patel · 15 years ago
  47. 979ec2e Set appropriate context for a global variable while emitting debug info. by Devang Patel · 15 years ago
  48. 3d363c5 More magic pixie dust. by Mike Stump · 15 years ago
  49. 944e705 Fix up debug information for block pointers a bit more. by Mike Stump · 15 years ago
  50. b289b3f Implement a FIXME. This improves codegen just a tad. by Mike Stump · 15 years ago
  51. b1a6e68 Improve debugging information for BlockDeclRefExpr. WIP. Given this by Mike Stump · 15 years ago
  52. a180529 Fix an infinite loop arising when trying to generate debug information by John McCall · 15 years ago
  53. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  54. fd47b31 Fix some typos. WIP. Large alignments don't work yet. by Mike Stump · 15 years ago
  55. 39605b4 Improve debug info generation for __block variables. by Mike Stump · 15 years ago
  56. 65f13c3 Ok, an AssertingVH definitely doesn't work for now because we free our cache after the optimizer may have hacked on the module. Use a WeakVH instead. by Daniel Dunbar · 15 years ago
  57. 23e81ba Switch CGDebugInfo type cache to using an AssertingVH. by Daniel Dunbar · 15 years ago
  58. 03faac3 Factor out CGDebugInfo::CreateTypeNode method. - No functionality change. by Daniel Dunbar · 15 years ago
  59. 5a86217 Be sure to use the correct version instead of inventing the wrong one. by Mike Stump · 15 years ago
  60. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  61. 7da2431 Basic support for representing elaborated type specifiers by John McCall · 15 years ago
  62. 49a8b98 Rename DIBlock as DILexicalBlock. by Devang Patel · 15 years ago
  63. 1bb8a45 Introduce LocInfoType which is a Sema-specific implementation detail. by Argyrios Kyrtzidis · 15 years ago
  64. 5a6bfe3 Do now overflow while calulating upper bound for zero sized array. by Devang Patel · 15 years ago
  65. 6c1fddf Use DICompositeType->replaceAllUsesWith() by Devang Patel · 15 years ago
  66. 0ce73f6 Use DICompositeType->replaceAllUsesWith(). by Devang Patel · 15 years ago
  67. 19cc4ab Revert r75641. by Anders Carlsson · 15 years ago
  68. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  69. 6dba432 Revert 75648 for now. It is causing test failures. by Devang Patel · 15 years ago
  70. 991b515 [llvm up] adjust to match mainline. by Chris Lattner · 15 years ago
  71. 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 15 years ago
  72. a1a5e8a Revert r75614 which depend on r75610 (for LLVM), which was reverted. by Daniel Dunbar · 15 years ago
  73. 127bf31 use new name for method. by Chris Lattner · 15 years ago
  74. 61b5f3e Use LLVM mangler to get mangled name for debug info entry. by Devang Patel · 15 years ago
  75. 9df4bb3 Update debug info generation for ObjCObjectPointer changes. by Daniel Dunbar · 15 years ago
  76. fe09eab Update debug info type cache after fwd decl is replaced by real decl. by Devang Patel · 15 years ago
  77. 0ae3d60 Fix comment. by Devang Patel · 15 years ago
  78. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  79. 563a03b Fix a problem that Eli noticed, and that Doug helped me fix. by Anders Carlsson · 15 years ago
  80. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  81. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  82. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  83. 72240d7 Revrt PR4228 fix for now. by Devang Patel · 15 years ago
  84. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  85. d1b3c2d First step toward fixing <rdar://problem/6613046> refactor clang objc type representation. by Steve Naroff · 15 years ago
  86. 9983169 It is possible that main input file does not have any symbol with debug info. To handle this edge case, always create main compile unit first. by Devang Patel · 15 years ago
  87. d249e1d1f Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 15 years ago
  88. ca308df Use .data() instead of &...[0]. - Just SmallVectors this time. by Daniel Dunbar · 15 years ago
  89. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  90. d86d336 Debug info: Initialize runtime language field correctly for Objective-C by Daniel Dunbar · 15 years ago
  91. 9bc093c Enhance debug information for block literals. Radar 6867696 by Mike Stump · 15 years ago
  92. bbd53af We need to specify the "linkage name" to the subprogram now that we by Daniel Dunbar · 15 years ago
  93. a289393 Make sure not to include the LLVM asm prefix in function names for debug info. by Daniel Dunbar · 15 years ago
  94. d37d9b5 fix some more cases where we'd emit a file with a line of 0 for implicit by Chris Lattner · 15 years ago
  95. 9e55b8a Do not generate bogus location info for DW_TAG_inheritance by Chris Lattner · 15 years ago
  96. 650cea9 Fix generated debug info for decls with no location (which include self/_cmd by Chris Lattner · 15 years ago
  97. 3189e4b PR4143: don't crash generating debug info for incomplete enum types. by Eli Friedman · 15 years ago
  98. ac7c814 When creating a dwarf record type for an objc interface, make sure to propagate by Chris Lattner · 15 years ago
  99. b95ee58 capture whether optimizations are enabled or not in debug info by Chris Lattner · 15 years ago
  100. 4c2577a encode the version of the objc runtime into the dwarf compile unit. rdar://6848435, by Chris Lattner · 15 years ago