1. 8c5ee71 Fix a bug introduced on r92564 where the name "Node" was already in use by Mips. by Bruno Cardoso Lopes · 16 years ago
  2. aaec205 Generalize mcasmstreamer data emission APIs to take an address space by Chris Lattner · 16 years ago
  3. 590d16b Do not extend extension results beyond the use of a PHI instruction at the start of a use block. A PHI use is expected to kill its source values. by Evan Cheng · 16 years ago
  4. 91093ec refactor code to be static functions instead of methods on AsmPrinter. by Chris Lattner · 16 years ago
  5. 8a6d7ac mcstreamerize AsmPrinter::EmitZeros, at least when emitting to the by Chris Lattner · 16 years ago
  6. 6113b3d add an MCAsmStreamer::EmitFill specialization of EmitFill that by Chris Lattner · 16 years ago
  7. ddf6bdd add a "MCStreamer::EmitFill" method, and move the default implementation by Chris Lattner · 16 years ago
  8. f03ffd1 remove MAI::ZeroDirectiveSuffix, which is only used by MASM, by Chris Lattner · 16 years ago
  9. e45ab8a For aligned load/store instructions, it's only required to know whether a by Jim Grosbach · 16 years ago
  10. c0404b3 optimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund Grimley Evans! by Chris Lattner · 16 years ago
  11. 9201b10 On pic function calls some arguments were marked dead and by Bruno Cardoso Lopes · 16 years ago
  12. ce8febe The change in r90189 adds a link in a directory outside the iPhone platform by Bob Wilson · 16 years ago
  13. ea98278 load f64 +0.0 in a cleaner way. This fix part of PR5445 by Bruno Cardoso Lopes · 16 years ago
  14. e5ebd5f Fix return registers for mips eabi by Bruno Cardoso Lopes · 16 years ago
  15. 4c8c668 mcstreamer'ize the rest of EmitGlobalVariable that is used on by Chris Lattner · 16 years ago
  16. 41aa25a don't let asm-verbose break the check-next lines in these tests. by Chris Lattner · 16 years ago
  17. 814819f stop using the .lcomm pseudoop on darwin, instead, directly use the by Chris Lattner · 16 years ago
  18. 258281d fix parsing .comm directives on systems which do not represent alignments by Chris Lattner · 16 years ago
  19. f4d9a55 only darwin has zerofill by Chris Lattner · 16 years ago
  20. 622b026 MDNodes are not expected to disappear or replaced by another MDNode, so there is no need to pay the cost of WeakVH and ValueMaps. by Devang Patel · 16 years ago
  21. c99fd87 Avoid including DebugInfo.h in AsmPrinter.h by Devang Patel · 16 years ago
  22. 8ad9a77 zap the ARM version of PrintGlobalVariable, which I missed. by Chris Lattner · 16 years ago
  23. 4ed5438 mc'ize some stuff, don't comment out .lcomm directive in -fverbose-asm mode. by Chris Lattner · 16 years ago
  24. 9744d61 factor this code better. by Chris Lattner · 16 years ago
  25. 74bfe21 Now that we have everything nicely factored (e.g. asmprinter is not by Chris Lattner · 16 years ago
  26. 074f837 use %object like other elf targets, gas accepts either. by Chris Lattner · 16 years ago
  27. 07c2bc0 simplify the mips target to print .size and .type for c strings by Chris Lattner · 16 years ago
  28. 41eb8b4 hookize the cygwin ".linkonce" directive. by Chris Lattner · 16 years ago
  29. 619ea85 more cleanups. Emit the .local directive even on cygwin/mingw. by Chris Lattner · 16 years ago
  30. cfd910e some cleanups by Chris Lattner · 16 years ago
  31. 7517b24 add a bool for whether .lcomm takes an alignment instead of basing this on "isdarwin". by Chris Lattner · 16 years ago
  32. 48d64ba hoist handling of external globals and special globals up to common code. by Chris Lattner · 16 years ago
  33. 71eae71 move production of .reference directives for static ctor/dtor list on by Chris Lattner · 16 years ago
  34. a756b1d Fix a crash in scalarrepl for memcpy/memmove where the source and destination by Bob Wilson · 16 years ago
  35. c1ef06a use BSSLocal classifier to identify 'lcomm' data instead of by Chris Lattner · 16 years ago
  36. ce8749e make TLOF subclassify BSS based on linkage type into private, external by Chris Lattner · 16 years ago
  37. 56b1319 now that elf weak bss symbols are handled correctly, simplify a bunch of code. by Chris Lattner · 16 years ago
  38. c7fbe90 fix a significant difference between llvm and gcc on ELF systems: by Chris Lattner · 16 years ago
  39. a3839bc introduce a section kind for common linkage. Use this to slightly by Chris Lattner · 16 years ago
  40. 129e187 there is no need to emit a .section above .comm on linux. by Chris Lattner · 16 years ago
  41. e1e0f48 Even more explanation. by Bill Wendling · 16 years ago
  42. 6e3be14 change an accessor to a predicate. by Chris Lattner · 16 years ago
  43. aac138e Cleanup handling of .zerofill on darwin: by Chris Lattner · 16 years ago
  44. 60a1774 Remove this fixme, looking at the linker source, all targets pad to 4 bytes. by Nate Begeman · 16 years ago
  45. 9a7313a remove extraneous ; by Chris Lattner · 16 years ago
  46. f54b852 Revert accident check-in from r93165. by Devang Patel · 16 years ago
  47. d3dc3cc Fix comment. by Eric Christopher · 16 years ago
  48. f609bb8 Fix r93758. Use isel patterns instead of c++ selection code to select rbit and make sure we pick different instructions for ARM vs. Thumb2. by Evan Cheng · 16 years ago
  49. f06c28a Test case for r93758. by Evan Cheng · 16 years ago
  50. 6457e63 Reverting. by Dale Johannesen · 16 years ago
  51. f082d7a Revert 93811 per request. by Dale Johannesen · 16 years ago
  52. 1b346b7 Enable code to emit dbg.declare as DEBUG_VALUE by Dale Johannesen · 16 years ago
  53. 6cead78 Add comment that MDNode::getFunction() is not to be used by performance-critical code (currently only used by AsmWriter) by Victor Hernandez · 16 years ago
  54. 74733a7 Make opt -O3 act more like clang -O3 etc., by making the inlining thresholds by Eli Friedman · 16 years ago
  55. 9cfb3ad Add some potentially interesting transformations to README. by Eli Friedman · 16 years ago
  56. 4881468 - Add getLSDAEncoding to the PowerPC backend. by Bill Wendling · 16 years ago
  57. 59780b8 make llvm-config more portable to windows versions of perl, by Chris Lattner · 16 years ago
  58. cd5adbb my instcombine transformations to make extension elimination more by Chris Lattner · 16 years ago
  59. 2122f69 Added a newline at the end of SMLoc.h by Sean Callanan · 16 years ago
  60. 76d76d5 Changed the comment in the file header for SMLoc to something more accurate. by Sean Callanan · 16 years ago
  61. 77f7989 Have FastISel handle llvm.trap(). by Eric Christopher · 16 years ago
  62. 1ae486a Split SMLoc out in its own header so that it can by Sean Callanan · 16 years ago
  63. 6a19947 Minor cleanup for jump table printing. Need a reference, not a pointer, for by Jim Grosbach · 16 years ago
  64. 1dafbe1 filecheckize this. by Chris Lattner · 16 years ago
  65. f088720 filecheckize by Chris Lattner · 16 years ago
  66. 569a7b9 remove a redundant test, filecheckize another. by Chris Lattner · 16 years ago
  67. 1ad0e8b Canonicalize -1 - x to ~x. by Evan Cheng · 16 years ago
  68. 2d53c21 update mkpatch, patch by Garrison Venn! by Chris Lattner · 16 years ago
  69. 756462b Make findDbgDeclare/findDbgGlobalDeclare local static functions; avoid Elts array by Victor Hernandez · 16 years ago
  70. 54630e1 Simplify MDNode::getFunction() and assertLocalFunction() by avoiding extra Function* variable and smallptrset since function-local metadata cannot be cyclic by Victor Hernandez · 16 years ago
  71. eb231ce The most significant encoding bit of GPR:$src or GPR:$dst was over-specified in by Johnny Chen · 16 years ago
  72. 3482c80 Patch by David Conrad: by Jim Grosbach · 16 years ago
  73. f9d5c5c While mapping llvm.dbg.declare intrinsic manually map its operand, if possible, by Devang Patel · 16 years ago
  74. b905b09 reject some invalid IR. We already assert and reject this from the by Chris Lattner · 16 years ago
  75. 097ea83 Add FIXME comment. by Bill Wendling · 16 years ago
  76. a8c1889 - Add a comment to the callback indicating that it's *extremely* not a good by Bill Wendling · 16 years ago
  77. 38812df Make printing of metadata more robust when function is not found (which is the normal situation for non function-local metadata) by Victor Hernandez · 16 years ago
  78. d58816f Don't try to build compiler-rt if it happens to be checked out into projects/ by Daniel Dunbar · 16 years ago
  79. 971fd79 Unnamed symbol index should be >= 1. This was lost during the mangler refactoring. Fixes PR6067. by Benjamin Kramer · 16 years ago
  80. 4e7e2f5 Fix refacto reported by Nicolas Geoffray. by Benjamin Kramer · 16 years ago
  81. 9fedc33 Emit spaces after commas in Neon register lists. This is more consistent by Bob Wilson · 16 years ago
  82. aad3036 switch x86 zerofill emission over to use MCStreamer. by Chris Lattner · 16 years ago
  83. 5957c84 Change CurrentFnSym to be a non-const pointer since asmprinter mutates it by Chris Lattner · 16 years ago
  84. 8cb9a3b remove the MAI argument to MCExpr::print and switch overthing to use << when printing them. by Chris Lattner · 16 years ago
  85. 950558a unbreak x86 jump tables with my previous patch. by Chris Lattner · 16 years ago
  86. 10b318b now that MCSymbol::print doesn't use it's MAI argument, we can by Chris Lattner · 16 years ago
  87. 6edec7b rename NameNeedsEscaping -> NameNeedsQuoting, eliminate the check by Chris Lattner · 16 years ago
  88. a81e241 Convert some of the dynamic opcode lookups into static ones. by Owen Anderson · 16 years ago
  89. 0bd58b0 stop the CBE from using Mangler::appendMangledName, which is a private function, it is mangling types, which don't matter how they are done. by Chris Lattner · 16 years ago
  90. 753fb62 fix uninit member, thanks to Benjamin Kramer for identifying the bug. by Chris Lattner · 16 years ago
  91. acd03ae Get MCSymbol out of the mangling business, and move all the logic by Chris Lattner · 16 years ago
  92. c7aa48d Really fix this. I checked that on ARM I get by Rafael Espindola · 16 years ago
  93. a7c65e0 reduce this test and convert to filecheck, hopefully the linux buildbot by Chris Lattner · 16 years ago
  94. ff24005 factor this code better how that the string version of getNameWithPrefix by Chris Lattner · 16 years ago
  95. c0dba72 now that mangler is in libtarget, it can use MCAsmInfo instead of clients by Chris Lattner · 16 years ago
  96. b56bf58 Don't create a (empty) output file, and don't warn about bitcode output by Dan Gohman · 16 years ago
  97. 1efd4fd5 Switch some functions to take Twines, eliminate uses of StringExtras.h. by Benjamin Kramer · 16 years ago
  98. 5b39620 Fix comment. by Owen Anderson · 16 years ago
  99. 3a4a832 The Neon "vtst" instruction takes a suffix that is the element size alone -- by Bob Wilson · 16 years ago
  100. 507d32a Fix an off-by-one error that caused the chain operand to be dropped from Neon by Bob Wilson · 16 years ago