1. f40761d remove a densemap from TargetAsmInfo that was uniquing the targetflags strings, by Chris Lattner · 16 years ago
  2. 6468b44 simplify SectionFlagsForGlobal, even though I want to kill it. by Chris Lattner · 16 years ago
  3. 37088b3 make SectionKind keep track of whether a global had an explicit by Chris Lattner · 16 years ago
  4. 2b421da simplify this code now that SectionKind knows if a global is weak or not. by Chris Lattner · 16 years ago
  5. 4c50922 make SectionKind know whether a symbol is weak or not in addition by Chris Lattner · 16 years ago
  6. 37939c9 Make the kind actually be private. by Chris Lattner · 16 years ago
  7. 2ceb60a rename Mergable -> Mergeable and Writable -> Writeable by Chris Lattner · 16 years ago
  8. 94809c3 two files I missed in the last commit. by Chris Lattner · 16 years ago
  9. 2c5815d remove a bunch of helper functions, just use SectionKind::get instead. by Chris Lattner · 16 years ago
  10. 5c2f789 simplify getSectionForMergableConstant to take a SectionKind. by Chris Lattner · 16 years ago
  11. f153272 precreate 4/8/16 byte mergable sections to simplify code. by Chris Lattner · 16 years ago
  12. 8ca5209 introduce specialized mergable const sectionkinds for elements of size 4/8/16 to by Chris Lattner · 16 years ago
  13. 7f88a20 improve the default impl of getSectionForMergableConstant by by Chris Lattner · 16 years ago
  14. af89a96 make elf targets correctly handle constant pool entries that require relocations. by Chris Lattner · 16 years ago
  15. e346e18 Rearrange all the SectionKinds and structure them into a hierarchical by Chris Lattner · 16 years ago
  16. d6b06b1 Update target registration description in Writing An LLVM Backend, and add by Daniel Dunbar · 16 years ago
  17. 77454a2 Sort list of targets in --version. by Daniel Dunbar · 16 years ago
  18. 8977d08 Factor commonality in triple match routines into helper template for registering by Daniel Dunbar · 16 years ago
  19. 8c2f1d7 Oops, forgot XCore. Sorry XCore! by Daniel Dunbar · 16 years ago
  20. 6337f15 Update for API change. by Daniel Dunbar · 16 years ago
  21. 38b77f8 fix isReadOnly predicate to not include data that has to be by Chris Lattner · 16 years ago
  22. f276990 remove a dead enum case. by Chris Lattner · 16 years ago
  23. a14d225 Update Triple to use StringRef/Twine based APIs. by Daniel Dunbar · 16 years ago
  24. d61918f Add StringRef::{slice, split}, two convenient string operations which are simple by Daniel Dunbar · 16 years ago
  25. abb477f put normal data into .data instead of .data.rel on elf systems. by Chris Lattner · 16 years ago
  26. ad6c153 Remove unused header by Daniel Dunbar · 16 years ago
  27. fa27ff2 Kill Target specific ModuleMatchQuality stuff. by Daniel Dunbar · 16 years ago
  28. a5881e3 Add TargetRegistry::lookupTarget. by Daniel Dunbar · 16 years ago
  29. 13b9251 eliminate a pointless switch stmt. by Chris Lattner · 16 years ago
  30. 30c4a3b finish simplifying DarwinTargetAsmInfo::SelectSectionForGlobal by Chris Lattner · 16 years ago
  31. c993250 Some clients rely on getName{Start,End} not returning 0, even if the length is by Daniel Dunbar · 16 years ago
  32. 499027f Rewrite getName{Start,End,Len} in terms of getName(), instead of vice-versa. by Daniel Dunbar · 16 years ago
  33. e3577da simplify DarwinTargetAsmInfo::SelectSectionForGlobal a bit by Chris Lattner · 16 years ago
  34. d601239 simplify some predicates, add isMergableString() by Chris Lattner · 16 years ago
  35. 07f6903 Simplify. by Daniel Dunbar · 16 years ago
  36. 8bb9e48 Add support for ARM Neon VREV instructions. by Bob Wilson · 16 years ago
  37. 3f53fa9 Remove Value::setName(const char*, unsigned). by Daniel Dunbar · 16 years ago
  38. d1319ef Remove Value::setName(const char*). by Daniel Dunbar · 16 years ago
  39. 03d7651 Remove Value::{isName, getNameRef}. by Daniel Dunbar · 16 years ago
  40. 460d51e make SectionKind be a first-class pod struct instead of just an enum. by Chris Lattner · 16 years ago
  41. 7d50913 Added a test and fixed a bug in BumpPtrAllocator relating to large alignment by Reid Kleckner · 16 years ago
  42. b4fc419 this is (unfortunately) several changes mixed together: by Chris Lattner · 16 years ago
  43. 4f05591 document some invariants. by Chris Lattner · 16 years ago
  44. 10cf6a6 add the most expedient hack to fix PR4619, along with a testcase. by Chris Lattner · 16 years ago
  45. 7e77f79 Fix a few comments to say "backedge-taken count" instead of "trip count". by Dan Gohman · 16 years ago
  46. bc3d77a SCEV objects are no longer reference-counted. by Dan Gohman · 16 years ago
  47. 72efa18 Update comments to new-style syntax. by Dan Gohman · 16 years ago
  48. 19378d6 When attempting to sign-extend an addrec by interpreting by Dan Gohman · 16 years ago
  49. 996b9d6 Remove spurious semicolons. by Dan Gohman · 16 years ago
  50. 8a8bd3d Convert DOUT to DEBUG. by Andreas Bolka · 16 years ago
  51. d6fd377 Simplify JIT target selection. by Daniel Dunbar · 16 years ago
  52. e0d12d5 Mark attributes of return insn correctly. It was being assumed safe to delete in isSafeToDelete (a thing checked-in 76281). by Sanjiv Gupta · 16 years ago
  53. 6dc8286 remove this test. It is currently failing because we now emit the string by Chris Lattner · 16 years ago
  54. dced9fb eventually we should describe string options in the data structures section by Chris Lattner · 16 years ago
  55. 81187ae minor tweaks. by Chris Lattner · 16 years ago
  56. 0c795d6 Add new helpers for registering targets. - Less boilerplate == good. by Daniel Dunbar · 16 years ago
  57. 92ccf70 Finish migrating VMCore to StringRef/Twine based APIs. by Daniel Dunbar · 16 years ago
  58. 8b5ee82 Ok, "most clients should be unaffected" was a lie. Add notes on upgrading. by Daniel Dunbar · 16 years ago
  59. 6e0d1cb Initial update to VMCore to use Twines for string arguments. by Daniel Dunbar · 16 years ago
  60. a66297a Fix 80-col violations. by Eric Christopher · 16 years ago
  61. a3500da Move ExtractElementInst to ::Create instead of new. Update all uses. by Eric Christopher · 16 years ago
  62. 4df605b Update to new syntax. by Dan Gohman · 16 years ago
  63. 06388ae Rewrite examples to use DEBUG instead of DOUT. by Daniel Dunbar · 16 years ago
  64. c7423af 80 col violation. by Evan Cheng · 16 years ago
  65. fd87a54 Convert a few more things to use raw_ostream. by Dan Gohman · 16 years ago
  66. c6b54d5 Get rid of a couple of unnecessary getOpcode calls. by Evan Cheng · 16 years ago
  67. eb490a7 Teach ScalarEvolution to make use of no-overflow flags when by Dan Gohman · 16 years ago
  68. 6c1980b Convert a few more uses of llvm/Support/Streams.h to raw_ostream. by Dan Gohman · 16 years ago
  69. fef8bb2 Instead of eagerly creating new SCEVs to replace all SCEVs that are by Dan Gohman · 16 years ago
  70. b140f49 I've lost my mind. PR4572 has not been fixed. by Evan Cheng · 16 years ago
  71. fc2a3ed Make AliasAnalysis and related classes use getAnalysisIfAvailable<TargetData>(). by Dan Gohman · 16 years ago
  72. d5b385c One more getName -> getNameStr by Daniel Dunbar · 16 years ago
  73. 3c91f36 Another TODO. by Evan Cheng · 16 years ago
  74. f595d6d Add a missing ilist_node.h #include to SparseBitVector, and add a very short by Jeffrey Yasskin · 16 years ago
  75. 66ac531 Change Thumb2 jumptable codegen to one that uses two level jumps: by Evan Cheng · 16 years ago
  76. 4711326 MemoryObject - Abstract base class for contiguous addressable memory. by Sean Callanan · 16 years ago
  77. b2fa93d Remove a duplicated test. by Evan Cheng · 16 years ago
  78. ce63ffb More migration to raw_ostream, the water has dried up around the iostream hole. by Daniel Dunbar · 16 years ago
  79. 90daf4d ARM code emitter can't handle Thumb2 instructions yet. So don't even try. by Evan Cheng · 16 years ago
  80. 26fe866 Tweak, raw_ostream is a ostream, not iostream replacement by Daniel Dunbar · 16 years ago
  81. 961f585 Fix build for GCC 4.0? by Daniel Dunbar · 16 years ago
  82. 7cdf01d Fix compile with 4.4 (I hope?); PR4617. by Daniel Dunbar · 16 years ago
  83. 0baa25d Forward-declare raw_ostream. by Andreas Bolka · 16 years ago
  84. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 16 years ago
  85. e8530a3 CodingStandards: Emphasize use of raw_ostream more. - Chris, please approve. by Daniel Dunbar · 16 years ago
  86. 67efc56 AliasAnalysis wants sizes in address-units, not bits. by Dan Gohman · 16 years ago
  87. caca2b6 Forgot this test earlier. by Evan Cheng · 16 years ago
  88. 0bc1161 Fix these tests. by Evan Cheng · 16 years ago
  89. 4e9bac3 Fix assert assembling zero-argument constant GEP. by Eli Friedman · 16 years ago
  90. 0b6afa8 Uh. It would be useful to actually print the operand. by Evan Cheng · 16 years ago
  91. fbd3d4a fix some predicates by Chris Lattner · 16 years ago
  92. 0d4960c3 change SectionKindForGlobal from being a public (and by Chris Lattner · 16 years ago
  93. 40efc25 Disable my constant island pass optimization (to make use soimm more effectively). It caused infinite looping on lencod. by Evan Cheng · 16 years ago
  94. a1a491c Move insertps tests to sse41 combo test file, convert to filecheck by Eric Christopher · 16 years ago
  95. b303504 make SectionKindForGlobal target independent, and therefore non-virtual. by Chris Lattner · 16 years ago
  96. 49f8468 Add a workaround for Darwin assembler bug where it's not setting the thumb bit in Thumb2 jumptable entries. We now pass Olden. by Evan Cheng · 16 years ago
  97. f20f250 we already know the sectionkind when invoking SelectSectionForGlobal, by Chris Lattner · 16 years ago
  98. 7420ab2 make SectionForGlobal non-virtual, add a hook for pic16 to do its "address=" hack. by Chris Lattner · 16 years ago
  99. 731b5d9 Fix this condition I accidentally inverted. by Dan Gohman · 16 years ago
  100. 78d1264 Add support for promoting SETCC operations. by Jakob Stoklund Olesen · 16 years ago