1. 54e01d0 add missing space. by Chris Lattner · 15 years ago
  2. 3a9fe06 add some comments, add a dyn_cast method. by Chris Lattner · 15 years ago
  3. f341a47 When forming sentinels for empty/tombstone, make sure to respect the by Chris Lattner · 15 years ago
  4. ba315c1 add helper method. by Chris Lattner · 15 years ago
  5. 2491e46 Add a simple type-safe bit-mangling pointer union class. This allows by Chris Lattner · 15 years ago
  6. 540db8b Allow a specific PointerIntPair instance to use a specific Pointer trait: by Chris Lattner · 15 years ago
  7. 911c8b2 Add a PointerLikeTypeTraits specialization for uintptr_t by Chris Lattner · 15 years ago
  8. aab3d88 Value* only has 2 bits free as well. by Chris Lattner · 15 years ago
  9. e30173a Replace the PointerLikeTypeTraits::getNumLowBitsAvailable by Chris Lattner · 15 years ago
  10. 8ee1b5e rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for by Chris Lattner · 15 years ago
  11. 6a0dcc1 now that you can put a PointerIntPair in a SmallPtrSet, remove some by Chris Lattner · 15 years ago
  12. 4d4177b teach SmallPtrSet that PointerIntPair is "basically a pointer". by Chris Lattner · 15 years ago
  13. e75fd69 Enable tail call optimization for functions that return a struct (bug 3664) and for functions that return types that need extending (e.g i1). by Arnold Schwaighofer · 15 years ago
  14. 1717f3a declare everything as class to avoid angering the VC++ gods. by Chris Lattner · 15 years ago
  15. 6de6030 add a traits class for SmallPtrSet that allows us to stick things that are by Chris Lattner · 15 years ago
  16. 0b0cd91 Optimize some 64-bit multiplication by constants into two lea's or one lea + shl since imulq is slow (latency 5). e.g. by Evan Cheng · 15 years ago
  17. e8b6410 move a large method out of line. by Chris Lattner · 15 years ago
  18. d257f7d "ghostify" the ilist<Function> sentinel by Gabor Greif · 15 years ago
  19. 5c1f715 Allow invertable -xno- style optins as well. by Mike Stump · 15 years ago
  20. 9c01f2d Revert r67844. This fixes the llvm-gcc-4.2 build on Darwin. by Dan Gohman · 15 years ago
  21. 76d3838 Reapply r66415, which was reverted in r66426 for by Duncan Sands · 15 years ago
  22. d50d32b -write-graph now can be used with -o. by Mikhail Glushenkov · 15 years ago
  23. 42bf74b CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose. by Evan Cheng · 15 years ago
  24. 16581bf Use a SmallPtrSet instead of std::set. by Dale Johannesen · 15 years ago
  25. 2824a65 Fix PR3391 and PR3864. Reg allocator infinite looping. by Evan Cheng · 15 years ago
  26. 3974667 Add a new bit to SUnit to record whether a node has implicit physreg by Dan Gohman · 15 years ago
  27. f49f0cd Clarify a comment. by Dan Gohman · 15 years ago
  28. b45088c Make getOperandNumForIncomingValue and getOperandNumForIncomingBlock by Dan Gohman · 15 years ago
  29. fb11288 Model inline asm constraint which ties an input to an output register as machine operand TIED_TO constraint. This eliminated the need to pre-allocate registers for these. This also allows register allocator can eliminate the unneeded copies. by Evan Cheng · 15 years ago
  30. dae2206 Fix PR3860 by correcting a predicate. by Chris Lattner · 15 years ago
  31. 4cc2b85 add method to access a template argument. by Chris Lattner · 15 years ago
  32. 64da940 Factorize out a concept - no functionality change. by Duncan Sands · 15 years ago
  33. 3ee87b6 add some inline methods for infix operators on sparse vectors, by Chris Lattner · 15 years ago
  34. 697cbbf For inline asm output operand that matches an input. Encode the input operand index in the high bits. by Evan Cheng · 15 years ago
  35. bc65ca8 Added option to enable generating less precise mad (multiply addition) by Mon P Wang · 15 years ago
  36. 48fe635 Fix the Win32 VS2008 build: by Sebastian Redl · 15 years ago
  37. a24752f Added MachineInstr::isRegTiedToDefOperand to check for two-addressness. by Evan Cheng · 15 years ago
  38. 56e04a8 SADDO and UADDO are commutative. by Dan Gohman · 15 years ago
  39. 1f67ce4 Clear the cached cost when removing a function in by Dale Johannesen · 15 years ago
  40. 3751f56 Add a liveness analysis pass for LLVM IR values. This computes by Dan Gohman · 15 years ago
  41. b372c11 Add BUILTIN_EXPECT Support/Compiler macro. by Daniel Dunbar · 15 years ago
  42. c39b80f raw_ostream: Return '*this' explicitly (instead of implicitly via by Daniel Dunbar · 15 years ago
  43. d17d74b raw_ostream: Rework implementation of unbuffered streams so outputting by Daniel Dunbar · 15 years ago
  44. 89a66a9 raw_ostream: Replace flush_impl with write_impl, which takes data to by Daniel Dunbar · 15 years ago
  45. cf2a2c6 raw_ostream: Lift out flush_nonempty. by Daniel Dunbar · 15 years ago
  46. de75d7f Add slow path for single character write, and use exclusively for by Daniel Dunbar · 15 years ago
  47. 9a507cd Revert r66920. It was causing failures in the self-hosting buildbot (in release by Bill Wendling · 15 years ago
  48. 14ea1ec Fix FastISel's assumption that i1 values are always zero-extended by Dan Gohman · 15 years ago
  49. b14cda3 Second installment of "BasicBlock operands to the back" changes. by Gabor Greif · 15 years ago
  50. 1606e8e Fix some significant problems with constant pools that resulted in unnecessary paddings between constant pool entries, larger than necessary alignments (e.g. 8 byte alignment for .literal4 sections), and potentially other issues. by Evan Cheng · 15 years ago
  51. 0582ae9 Oops...I committed too much. by Bill Wendling · 15 years ago
  52. c7a09ab Temporarily XFAIL this test. by Bill Wendling · 15 years ago
  53. 7e07c00 cosmetic change, in preparation of future change by Gabor Greif · 15 years ago
  54. bcf8ea9 raw_ostream: unbuffered streams weren't being immediately flushed on by Daniel Dunbar · 15 years ago
  55. ae5a20a Rearrange operands of the BranchInst, to be able to by Gabor Greif · 15 years ago
  56. 40a07a4 Fully initialize all ivars, fixing PR3790, patch by Edwin Torok! by Chris Lattner · 15 years ago
  57. e889d83 Add StringMap::lookup. by Daniel Dunbar · 15 years ago
  58. f9abd7e Add a -no-implicit-float flag. This acts like -soft-float, but may generate by Bill Wendling · 15 years ago
  59. 1d98870 Make Print callable from a pass's print method: add const qualifier. No by Torok Edwin · 15 years ago
  60. 4dc2b39 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 15 years ago
  61. 5f4ee1f Remove the one-definition-rule version of extern_weak by Duncan Sands · 15 years ago
  62. a2e6435 Two coalescer fixes in one. by Evan Cheng · 15 years ago
  63. 535f390 Changed Allocate to use size_t instead of unsigned. by Mon P Wang · 15 years ago
  64. 7f3030c Add an explicit keyword. by Dan Gohman · 15 years ago
  65. cabb383 Fixed rounding up EltSize by Mon P Wang · 15 years ago
  66. 20cb462 Give Op<N>() AppleScript-like semantics, i.e. for negative N it indexes relative to op_end. by Gabor Greif · 15 years ago
  67. 163ba3f Refine the Dwarf writer timers so that they measure exception writing and debug by Bill Wendling · 15 years ago
  68. 91b8b80 Add a timer to the DwarfWriter pass that measures the total time it takes to by Bill Wendling · 15 years ago
  69. e77e434 PR3478: raw_ostream should not buffer stderr by Daniel Dunbar · 15 years ago
  70. 7af9248 Add C++ marker. by Daniel Dunbar · 15 years ago
  71. ff7d0e9 Global variables don't have a corresponding llvm.dbg.declare, yet it is possible by Torok Edwin · 15 years ago
  72. 3e0cc26 wire up support for emitting "special" values from inline asm by Chris Lattner · 15 years ago
  73. 23e528b Add helper pass to remove llvm.dbg.declare intrinsics. by Devang Patel · 15 years ago
  74. 1dfe6a0 make the Op<N> methods protected, how it was intended to be by Gabor Greif · 15 years ago
  75. 9aaa079 Revert r66415. It's causing failures during bootstrap builds: by Bill Wendling · 15 years ago
  76. 1a6d31a Add a constructor for BuildVectorSDNode and revert the temporary workaround by Bob Wilson · 15 years ago
  77. 5c3e7b1 in builds without asserts we do not need to allocate the Next pointer in "ghostly" sentinels by Gabor Greif · 15 years ago
  78. bf65de1 Regenerate. by Nick Lewycky · 15 years ago
  79. 59fad7d Remove configurey-fu to autodetect hash_map and hash_set now that they are by Nick Lewycky · 15 years ago
  80. 319e632 make GlobalValue::removeDeadConstantUsers() const. by Chris Lattner · 15 years ago
  81. d7168dd reimplement AliasSetTracker in terms of DenseMap instead of hash_map, by Chris Lattner · 15 years ago
  82. f9f7da8 add a #include to improve portability to windows, as requested by by Chris Lattner · 15 years ago
  83. ccbdc7a Pass in a std::string when getting the names of debugging things. This cuts down by Bill Wendling · 15 years ago
  84. dfe964c change the MemIntrinsic get/setAlignment method to take an unsigned by Chris Lattner · 15 years ago
  85. 3ce5e88 Introduce a new MemTransferInst pseudo class, which is a common by Chris Lattner · 15 years ago
  86. 464bb78 Fix misaligned whitespace. No functionality change. by Nick Lewycky · 15 years ago
  87. 0acf6b0 Remove some duplication. by Mikhail Glushenkov · 15 years ago
  88. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 15 years ago
  89. 0dd2a6a simplify the way how traits get hold of the symbol table by Gabor Greif · 15 years ago
  90. 7afd3e1 further simplifications arising from peruse of the more declarative interface by Gabor Greif · 15 years ago
  91. b547a18 Remove the burden of dealing with list offsets by Gabor Greif · 15 years ago
  92. 1779f22 Add IRBuilder::CreateConstGEP{1, 2}_{32, 64}. by Daniel Dunbar · 15 years ago
  93. f56ec64 Add Module::getNamedValue; use to normalize access to Module symbol by Daniel Dunbar · 15 years ago
  94. 2ee7f83 Add default constructor to SDNode to make gcc 3.4.6 happy. by Tanya Lattner · 15 years ago
  95. 312e234 some nits noticed by Duncan by Chris Lattner · 15 years ago
  96. 224cef6 fix header comment and include guard. by Chris Lattner · 15 years ago
  97. 57c0383 add a bunch more passes to the C bindings (PR3734), patch by Lennart Augustsson! by Chris Lattner · 15 years ago
  98. d6f1658 Sprinkle some PrettyStackEntry magic into the passmanager. With this, we now by Chris Lattner · 15 years ago
  99. abab81f do not close friendship with every odd class by Gabor Greif · 15 years ago
  100. c79e118 Add "check/remove dbg var" helper routines. by Devang Patel · 15 years ago