1. eb490a7 Teach ScalarEvolution to make use of no-overflow flags when by Dan Gohman · 15 years ago
  2. 6c1980b Convert a few more uses of llvm/Support/Streams.h to raw_ostream. by Dan Gohman · 15 years ago
  3. fef8bb2 Instead of eagerly creating new SCEVs to replace all SCEVs that are by Dan Gohman · 15 years ago
  4. b140f49 I've lost my mind. PR4572 has not been fixed. by Evan Cheng · 15 years ago
  5. fc2a3ed Make AliasAnalysis and related classes use getAnalysisIfAvailable<TargetData>(). by Dan Gohman · 15 years ago
  6. d5b385c One more getName -> getNameStr by Daniel Dunbar · 15 years ago
  7. 3c91f36 Another TODO. by Evan Cheng · 15 years ago
  8. f595d6d Add a missing ilist_node.h #include to SparseBitVector, and add a very short by Jeffrey Yasskin · 15 years ago
  9. 66ac531 Change Thumb2 jumptable codegen to one that uses two level jumps: by Evan Cheng · 15 years ago
  10. 4711326 MemoryObject - Abstract base class for contiguous addressable memory. by Sean Callanan · 15 years ago
  11. b2fa93d Remove a duplicated test. by Evan Cheng · 15 years ago
  12. ce63ffb More migration to raw_ostream, the water has dried up around the iostream hole. by Daniel Dunbar · 15 years ago
  13. 90daf4d ARM code emitter can't handle Thumb2 instructions yet. So don't even try. by Evan Cheng · 15 years ago
  14. 26fe866 Tweak, raw_ostream is a ostream, not iostream replacement by Daniel Dunbar · 15 years ago
  15. 961f585 Fix build for GCC 4.0? by Daniel Dunbar · 15 years ago
  16. 7cdf01d Fix compile with 4.4 (I hope?); PR4617. by Daniel Dunbar · 15 years ago
  17. 0baa25d Forward-declare raw_ostream. by Andreas Bolka · 15 years ago
  18. eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 15 years ago
  19. e8530a3 CodingStandards: Emphasize use of raw_ostream more. - Chris, please approve. by Daniel Dunbar · 15 years ago
  20. 67efc56 AliasAnalysis wants sizes in address-units, not bits. by Dan Gohman · 15 years ago
  21. caca2b6 Forgot this test earlier. by Evan Cheng · 15 years ago
  22. 0bc1161 Fix these tests. by Evan Cheng · 15 years ago
  23. 4e9bac3 Fix assert assembling zero-argument constant GEP. by Eli Friedman · 15 years ago
  24. 0b6afa8 Uh. It would be useful to actually print the operand. by Evan Cheng · 15 years ago
  25. fbd3d4a fix some predicates by Chris Lattner · 15 years ago
  26. 0d4960c3 change SectionKindForGlobal from being a public (and by Chris Lattner · 15 years ago
  27. 40efc25 Disable my constant island pass optimization (to make use soimm more effectively). It caused infinite looping on lencod. by Evan Cheng · 15 years ago
  28. a1a491c Move insertps tests to sse41 combo test file, convert to filecheck by Eric Christopher · 15 years ago
  29. b303504 make SectionKindForGlobal target independent, and therefore non-virtual. by Chris Lattner · 15 years ago
  30. 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 · 15 years ago
  31. f20f250 we already know the sectionkind when invoking SelectSectionForGlobal, by Chris Lattner · 15 years ago
  32. 7420ab2 make SectionForGlobal non-virtual, add a hook for pic16 to do its "address=" hack. by Chris Lattner · 15 years ago
  33. 731b5d9 Fix this condition I accidentally inverted. by Dan Gohman · 15 years ago
  34. 78d1264 Add support for promoting SETCC operations. by Jakob Stoklund Olesen · 15 years ago
  35. 7894762 Make sure thumb2 jumptable entries are aligned. by Evan Cheng · 15 years ago
  36. 23606e3 Clean up. by Evan Cheng · 15 years ago
  37. c324ecb Replace use of std::set with SmallPtrSet. by Evan Cheng · 15 years ago
  38. 02a436c Convert several more passes to use getAnalysisIfAvailable<TargetData>() by Dan Gohman · 15 years ago
  39. 6b118a2 Add specific classes for Add, Sub, and Mul, for convenience. by Dan Gohman · 15 years ago
  40. 7c023d6 start refactoring pic16 section selection logic. by Chris Lattner · 15 years ago
  41. 2dcafe4 move ELF-specific code into ELFTargetAsmInfo. by Chris Lattner · 15 years ago
  42. e5ca0ac tidy up by Chris Lattner · 15 years ago
  43. 27f3065 split the ELF-specific section flag inference-from-name code out by Chris Lattner · 15 years ago
  44. 8adc547 make SectionFlagsForGlobal a private static function instead of a public by Chris Lattner · 15 years ago
  45. 104bbd1 move a method up in the file, GV is always non-null, so remove a check. by Chris Lattner · 15 years ago
  46. 3df6d5d There is no need to pass the name into lib/Target/TargetAsmInfo.cpp by Chris Lattner · 15 years ago
  47. d0418ce remove a use of SectionFlagsForGlobal. by Chris Lattner · 15 years ago
  48. 895c9ed Another getName -> getNameStr by Daniel Dunbar · 15 years ago
  49. a717b7b More move to raw_ostream. by Daniel Dunbar · 15 years ago
  50. 1cd1d98 Move more to raw_ostream, provide support for writing MachineBasicBlock, by Daniel Dunbar · 15 years ago
  51. b95c2fd Move more to raw_ostream. by Daniel Dunbar · 15 years ago
  52. 3f0e830 Move to raw_ostream. by Daniel Dunbar · 15 years ago
  53. f6ccee5 Switch to getNameStr(). by Daniel Dunbar · 15 years ago
  54. 82a29b6 Allow llvm_report_error to accept a Twine. by Daniel Dunbar · 15 years ago
  55. 23ed527 Remove unused member functions. by Eli Friedman · 15 years ago
  56. 050578f Fix constructor types by Daniel Dunbar · 15 years ago
  57. 8218f6f Update CMake by Daniel Dunbar · 15 years ago
  58. 2538f7a Add Twine ADT. - Not currently used. by Daniel Dunbar · 15 years ago
  59. f631a68 Convert a test to FileCheck. by Evan Cheng · 15 years ago
  60. eed05b8 hoist section name uniquing logic up to the top-level SectionForGlobal by Chris Lattner · 15 years ago
  61. 78717cb Implement getSectionPrefixForUniqueGlobal to return null, indicating that by Chris Lattner · 15 years ago
  62. 57743ef reduce indentation by Chris Lattner · 15 years ago
  63. 796131e simplify code by making special case more obvious by Chris Lattner · 15 years ago
  64. f76280d the 'isWeakForLinker' code is common between functions and globals, hoist it by Chris Lattner · 15 years ago
  65. 55acc68 Replace UniqueSectionForGlobal with getSectionPrefixForUniqueGlobal. by Chris Lattner · 15 years ago
  66. 837f332 document SectionFlags::Named better and make it more easily greppable by by Chris Lattner · 15 years ago
  67. 686177d fix indentation. by Chris Lattner · 15 years ago
  68. c440cc7 use section flags more correctly. by Chris Lattner · 15 years ago
  69. 7da9559 Switch to raw_ostream. by Daniel Dunbar · 15 years ago
  70. e2663d0 fix a mysterious and scary failure on test/CodeGen/X86/cstring.ll by Chris Lattner · 15 years ago
  71. fb3431a reduce api exposure: clients shouldn't call SectionKindForGlobal directly. by Chris Lattner · 15 years ago
  72. 083a1e0 make Constant::getRelocationInfo return an enum, as suggested by Duncan. by Chris Lattner · 15 years ago
  73. ad733cd remove more bits of small section support. by Chris Lattner · 15 years ago
  74. d94061f remove more remnants of small section support. by Chris Lattner · 15 years ago
  75. 013e6b6 Remove SectionKind::Small*. This was only used on mips, and is apparently by Chris Lattner · 15 years ago
  76. 865763b Thumb2 should use the register scavenger. by Evan Cheng · 15 years ago
  77. d1e5db6 Fix whitespace. by Dan Gohman · 15 years ago
  78. d3ff304 Give SCEVAddRecExpr no-signed-overflow and no-unsigned-overflow flags. by Dan Gohman · 15 years ago
  79. 2f1b153 Give the SCEV class a SubclassData field. by Dan Gohman · 15 years ago
  80. a271d36 Fix whitespace. by Dan Gohman · 15 years ago
  81. b74bb1a FLDD, FLDS, FCPYD, FCPYS, FSTD, FSTS, VMOVD, VMOVQ maps to the same instructions on all sub-targets. by Evan Cheng · 15 years ago
  82. e23e097 Add tests for handling of globals and tls on the XCore. These currently fail by Richard Osborne · 15 years ago
  83. 5bd6839 Privatize the ConstantVector tables. by Owen Anderson · 15 years ago
  84. fbd6687 Update insertps handling based on feedback. Move to a v4f32 style by Eric Christopher · 15 years ago
  85. d2cb3d2 Remove the IA-64 backend. by Dan Gohman · 15 years ago
  86. 5ff58b5 Correctly handle the Thumb-2 imm8 addrmode. Specialize frame index elimination more exactly for Thumb-2 to get better code gen. by David Goodwin · 15 years ago
  87. 74e5210 Added a 2+-byte NOP instruction to the Intel tables, by Sean Callanan · 15 years ago
  88. 006c77d Privatize the ConstantStruct table. by Owen Anderson · 15 years ago
  89. ed0e2ad by David Greene · 15 years ago
  90. eee839d Thumb2 does not allow the use of "pc" register as part of the load / store address. by Evan Cheng · 15 years ago
  91. 535c9c3 Fixing unittests on 32-bit Darwin, using 0x...ULL instead of 0x...U . by Reid Kleckner · 15 years ago
  92. 10b4fc5 Re-committing r76828 with the JIT memory manager changes now that the build by Reid Kleckner · 15 years ago
  93. 50340f6 "fix" PR4612, which is a crash on: %0 = malloc [3758096384 x i32] by Chris Lattner · 15 years ago
  94. 17e4aa7 Fix PR4614: the Intel C compiler defines _GNUC__ by Duncan Sands · 15 years ago
  95. daf2212 Revert r75581: it causes massive breakage in the Ada by Duncan Sands · 15 years ago
  96. bc8d813 Switch ValueSymbolTable to StringRef based API. by Daniel Dunbar · 15 years ago
  97. e6c42dd Add llvm::Value::getNameRef, for help in API migration. by Daniel Dunbar · 15 years ago
  98. 8f51a62 Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests for by Reid Kleckner · 15 years ago
  99. d3d9d66 Fix up ARM constant island pass for Thumb2. by Evan Cheng · 15 years ago
  100. 81c102b Since we have moved unified assembly, switch to ADR instruction instead of a the difficult-to-read .set + add syntax to materialize pc-relative address. by Evan Cheng · 15 years ago