1. 2b1b331 privatize more stuff, eliminate vtables. by Chris Lattner · 15 years ago
  2. 105d697 reprivatize now that DwarfWriter is gone. by Chris Lattner · 15 years ago
  3. 6d73378 prune #includes, MMI can never be null by Chris Lattner · 15 years ago
  4. 74e41f9 prune #includes, realize the MMI can never be null. by Chris Lattner · 15 years ago
  5. 493c976 finally blast DwarfWriter away. by Chris Lattner · 15 years ago
  6. 49cd664 change AsmPrinter to use DwarfDebug/DwarfException directly by Chris Lattner · 15 years ago
  7. ea76186 trim some spurious references to DwarfWriter. SDIsel really doesn't by Chris Lattner · 15 years ago
  8. 994cb12 eliminate DwarfDebug::shouldEmit, which is the same now as MMI::hasDebugInfo by Chris Lattner · 15 years ago
  9. 6342b41 fix a regression on 2009-08-17-DebugInfo.m by Chris Lattner · 15 years ago
  10. ba79d72 selection dag doesn't need DwarfWriter, remove some tendrils. by Chris Lattner · 15 years ago
  11. d850ac7 fastisel doesn't need DwarfWriter, remove some tendricles. by Chris Lattner · 15 years ago
  12. 90429c4 just have all targets create the DwarfWriter. by Chris Lattner · 15 years ago
  13. 505e868 nuke DwarfPrinter by Chris Lattner · 15 years ago
  14. 84ac8b7 make DwarfException not inherit from DwarfPrinter. by Chris Lattner · 15 years ago
  15. a37d538 change SizeOf to take AsmPrinter instead of TargetData, by Chris Lattner · 15 years ago
  16. d38fee8 1) make DIE take AsmPrinter instead of DwarfPrinter. by Chris Lattner · 15 years ago
  17. 02b86b9 Move EmitFrameMoves into AsmPrinter. by Chris Lattner · 15 years ago
  18. 786d17a simplify code and reduce indentation. by Chris Lattner · 15 years ago
  19. 6189ed1 now that the magic is dispelled, move EmitSectionOffset to AsmPrinter. by Chris Lattner · 15 years ago
  20. 3d22513 eliminate the magic AbsoluteDebugSectionOffsets MAI hook, by Chris Lattner · 15 years ago
  21. be15beb only emit section labels if we have debug info, fixing a few regtest failures. by Chris Lattner · 15 years ago
  22. 4ad1efe I was wrong, ocaml isn't referencing 'Ldata_begin', so remove it. by Chris Lattner · 15 years ago
  23. a33b2a1 add some assertions to EmitSectionOffset. by Chris Lattner · 15 years ago
  24. 11b8f30 stop emitting some dead L labels. by Chris Lattner · 15 years ago
  25. 9c69e28553 Store an use the symbols emitted at the start of the debug by Chris Lattner · 15 years ago
  26. fa070b0 remove the didInitial ivar, rename emitInitial to be more by Chris Lattner · 15 years ago
  27. 2e3ebed simplify EmitSectionOffset a little bit, improve comments. by Chris Lattner · 15 years ago
  28. 83d1618 The "IsSmall" argument to EmitSectionOffset is always true, by Chris Lattner · 15 years ago
  29. f88dce1 eliminate the "isEH" argument to EmitSectionOffset. by Chris Lattner · 15 years ago
  30. 0887fa0 isAbsoluteEHSectionOffsets always returns false, eliminate it by Chris Lattner · 15 years ago
  31. d2af785 move some more stuff to asmprinter. by Chris Lattner · 15 years ago
  32. 9be4913 simplify some code. by Chris Lattner · 15 years ago
  33. ca6190b move EmitEncodingByte to AsmPrinter. by Chris Lattner · 15 years ago
  34. 7a101f4 move EmitCFAByte to AsmPrinter. by Chris Lattner · 15 years ago
  35. a643718 inline EmitDifference away. by Chris Lattner · 15 years ago
  36. af8df26 resolve a fixme. by Chris Lattner · 15 years ago
  37. c021572 move gettemplabel and getdwlabel to AsmPrinter and rename them for consistency. by Chris Lattner · 15 years ago
  38. 7e1a8f8 move uleb/sleb printing into AsmPrinter from DwarfPrinter. by Chris Lattner · 15 years ago
  39. 17fedf2 more interface cleanup make some helpers static functions. by Chris Lattner · 15 years ago
  40. 3f53c83 clean up the asmprinter header and privatize some stuff. by Chris Lattner · 15 years ago
  41. 65eeaad use stringref instead of strtol to avoid errno gymnastics. by Chris Lattner · 15 years ago
  42. 736e31d split inline asm support out to its own .cpp file. by Chris Lattner · 15 years ago
  43. 2851995 inline processDebugLoc and simplify it. by Chris Lattner · 15 years ago
  44. dfa107e minor tidying. by Chris Lattner · 15 years ago
  45. 300a4c5 clean up the asmprinter interface a bit, rename a few by Chris Lattner · 15 years ago
  46. 9d1c1ad remove TargetMachine.h #include, also, TRI isn't used frequently by Chris Lattner · 15 years ago
  47. e00b59f lazily allocate the GCMetadataPrinters map and remove DenseMap by Chris Lattner · 15 years ago
  48. b23569a Momentous day: remove the "O" member from AsmPrinter. Now all by Chris Lattner · 15 years ago
  49. de0f339 now that all operand printing happens to specified streams, we can by Chris Lattner · 15 years ago
  50. 75f5072 remove the raw_ostream from various dwarf printing things. by Chris Lattner · 15 years ago
  51. 7d73c7f mcize the gc metadata printing stuff. by Chris Lattner · 15 years ago
  52. 0b9bdb4 use EmitRawText instead of O in DwarfPrinter. by Chris Lattner · 15 years ago
  53. c75c028 fix PrintAsmOperand and PrintAsmMemoryOperand to pass down by Chris Lattner · 15 years ago
  54. d32c8a5 change this back too by Chris Lattner · 15 years ago
  55. e1783ca check in what I tested. :( by Chris Lattner · 15 years ago
  56. c1e0b76 MMI is always available, rename O -> OS in printInlineAsm. by Chris Lattner · 15 years ago
  57. d374087 fix an ugly wart in the MCInstPrinter api where the by Chris Lattner · 15 years ago
  58. 35c33bd change a ton of code to not implicitly use the "O" raw_ostream by Chris Lattner · 15 years ago
  59. 20adc9d Reapply address space patch after fixing an issue in MemCopyOptimizer. by Mon P Wang · 15 years ago
  60. 0c08d09 asmstreamerize the .size directive for function bodies, force clients by Chris Lattner · 15 years ago
  61. fd60b8b emit the cygwin stub thing through mcstreamer. by Chris Lattner · 15 years ago
  62. 58bc4dd add a twine form of MCStreamer::EmitRawText, and mc'ize by Chris Lattner · 15 years ago
  63. f94f8dc start moving towards emitting inline asm statements with by Chris Lattner · 15 years ago
  64. 91bead7 add a new EmitInlineAsm function to asmprinter to handle inline asm. by Chris Lattner · 15 years ago
  65. 47b7e5d mc'ize comment printing around file scope inline asm. by Chris Lattner · 15 years ago
  66. 5c8aa95 by David Greene · 15 years ago
  67. 7249ef0 Skip debug info when looking for existing EH calls at the beginning of a block. by Dale Johannesen · 15 years ago
  68. fd91920 Fix anachronism. by Benjamin Kramer · 15 years ago
  69. 42f95ca fix the llvm-x86_64-linux buildbot. by Chris Lattner · 15 years ago
  70. 457c6c5 remove empty file. by Chris Lattner · 15 years ago
  71. a4f2bb0 stop using DebugLoc::getUnknownLoc() by Chris Lattner · 15 years ago
  72. de4845c Switch the code generator (except the JIT) onto the new DebugLoc by Chris Lattner · 15 years ago
  73. f28f8bc Correctly lower memset / memcpy of undef. It should be a nop. PR6767. by Evan Cheng · 15 years ago
  74. cf5862d Revert 100204. It broke a bunch of tests and apparently changed what passes are run during codegen. by Evan Cheng · 15 years ago
  75. d0327f8 Update CMake. by Benjamin Kramer · 15 years ago
  76. 434bd85 by David Greene · 15 years ago
  77. e754d3f Revert r100191 since it breaks objc in clang by Mon P Wang · 15 years ago
  78. e33c848 Reapply address space patch after fixing an issue in MemCopyOptimizer. by Mon P Wang · 15 years ago
  79. db8771a After trivial coalescing, the MI being visited may have become a copy. Avoid adding it to CSE hash table since copies aren't being considered for CSE and they may be deleted. by Evan Cheng · 15 years ago
  80. 93d6a7e Teach AnalyzeBranch, RemoveBranch and the branch by Dale Johannesen · 15 years ago
  81. 1d8f83d Revert r100143. by Eric Christopher · 15 years ago
  82. c8e7764 Revert r100117. by Devang Patel · 15 years ago
  83. 8ef3acb by David Greene · 15 years ago
  84. 24c20e2 Do not eagerly record known previous location. DBG_VALUE may not cause a new label due to one or other reason. by Devang Patel · 15 years ago
  85. 6cdb7e2 Skip checking preferred alignment of GVs defined in other translation units all together. by Evan Cheng · 15 years ago
  86. 94107ba - Avoid using floating point stores to implement memset unless the value is zero. by Evan Cheng · 15 years ago
  87. 58c7aa6 Skip instructions until new scope is seen. by Devang Patel · 15 years ago
  88. 8935d90 Cosmetic changes. Update comment, rename a local variable. by Devang Patel · 15 years ago
  89. 255f20f Fix sdisel memcpy, memset, memmove lowering: by Evan Cheng · 15 years ago
  90. e543d16 Reapply r100056. It doesn't look like it's the one that's causing a failure. by Bill Wendling · 15 years ago
  91. 9e9cca4 Revert r100056. It was causing a failure on MSVC. by Bill Wendling · 15 years ago
  92. f8df814 Reverting 100048; it broke two Frontend debug info tests. by Stuart Hastings · 15 years ago
  93. bbd51cd Rewrite CorrectExtraCFGEdges() to make it more understandable. by Bill Wendling · 15 years ago
  94. a88cb38 Debug info can now properly represent functions inside classes inside other functions. Partial fix for Radar 7424645. by Stuart Hastings · 15 years ago
  95. bbb88db Reduce string trashing. by Benjamin Kramer · 15 years ago
  96. 345ef34 DwarfDebug: Allocate DIEValues with a BumpPtrAllocator. Most of them are by Benjamin Kramer · 15 years ago
  97. cfd3188 reduce indentation by Chris Lattner · 15 years ago
  98. 1d65ba7 tidy up by Chris Lattner · 15 years ago
  99. ff741ab MI != 0 is checked in the assert right above this. by Chris Lattner · 15 years ago
  100. 14d750d use the isDebugValue() predicate and pop_back_val() by Chris Lattner · 15 years ago