1. a9a4225 simplify code by using IntrinsicInst. by Chris Lattner · 15 years ago
  2. 0461c0a Add new TargetInstrDesc::hasImplicitUseOfPhysReg and by Chris Lattner · 15 years ago
  3. f5b6bc7 add some optimizations for strncpy/strncat and factor some by Chris Lattner · 15 years ago
  4. c6fa3ff Revert r68847. It breaks the build on non-Darwin targets, with this message by Dan Gohman · 15 years ago
  5. 2057532 Keep track of inlined functions and their locations. This information is collected when nested llvm.dbg.func.start intrinsics are seen. (Right now, inliner removes nested llvm.dbg.func.start intrinisics during inlining.) by Devang Patel · 15 years ago
  6. dbf1e2b move a target-specific test into its directory so it isn't run if you by Chris Lattner · 15 years ago
  7. 7e0fc8a Fixed spelling. by Misha Brukman · 15 years ago
  8. 03f0a2f DebugLabelFolder ruthlessly deletes redundant labels. However, sometimes the redundant labels is referenced by debug info somewhere else. This patch provies a way so that dwarf writer can mark labels as used. by Devang Patel · 15 years ago
  9. ec15bbf Clean up a bunch of whitespace issues and fix a comment typo. by Bob Wilson · 15 years ago
  10. 6818985 Don't install the libLLVMHello.dylib example. by Bill Wendling · 15 years ago
  11. fa72236 Add compatibility_version and current_version flags when creating dylibs. by Bill Wendling · 15 years ago
  12. 82934f2 Don't run "dsymutils" on .a files. by Bill Wendling · 15 years ago
  13. 296185c fix two problems with machine sinking: by Chris Lattner · 15 years ago
  14. 0355862 Now that register classes have names, include the name in debug output. by Dan Gohman · 15 years ago
  15. 5c5f5a2 fix a broken assertion in ilist_iterator, which caused it to crash in the by Chris Lattner · 15 years ago
  16. b357f04 fix typo, patch by Shlomi Fish! by Chris Lattner · 15 years ago
  17. a3613be Added code to handle spilling and reloading of FSRs. by Sanjiv Gupta · 15 years ago
  18. dbcfb30 Don't fold a load if the other operand is a TLS address. by Rafael Espindola · 15 years ago
  19. cb8c477 Cleanup. Remove redundant llvm:: , we don't need them since we're inside by Nick Lewycky · 15 years ago
  20. 3584a47 Add a new Type::getPointerTo method, which is shorthand for by Chris Lattner · 15 years ago
  21. b9fc360 Add utility function to IRBuilder that takes the difference between two by Nick Lewycky · 15 years ago
  22. 5b28f86 Regenerate. by Nick Lewycky · 15 years ago
  23. c2406f2 a few fixes to "addrspace(256) is reference offset of GS segment register". by Chris Lattner · 15 years ago
  24. 7d16e85 Pass in the std::string parameter instead of returning it by value. by Bill Wendling · 15 years ago
  25. a6f02fb Constify getter methods. by Bill Wendling · 15 years ago
  26. fc16657 Remove the obsolete SelectionDAG::getNodeValueTypes and simplify by Dan Gohman · 15 years ago
  27. 1688406 Change the NumVTs field from short to int, since there's no by Dan Gohman · 15 years ago
  28. f34be82 StringMap<DIE*>::iterator::first() returns a pointer to the first character of by Bill Wendling · 15 years ago
  29. 9238385 Silence unused variable warning. by Devang Patel · 15 years ago
  30. c30aa7b ignore register zero in isRegTiedToUseOperand, following the example of by Chris Lattner · 15 years ago
  31. 3ca15c9 Give register alias checking the hash table treatment too. by Owen Anderson · 15 years ago
  32. 972bbac Use a StringMap instead of std::map for storing std::string->DIE* maps. This by Bill Wendling · 15 years ago
  33. b396992 llvm.dbg.func_start also defines beginning of function scope. by Devang Patel · 15 years ago
  34. 29c0e3d Revert r68708. It was causing this failure in the self-hosting buildbot: by Bill Wendling · 15 years ago
  35. d9df501 Fix pr3954. The register scavenger asserts for inline assembly with by Bob Wilson · 15 years ago
  36. 37831d0 The way we are trying to figure out banksel immediate operand may yield different results for different type of insns. This will eventually need to be changed but currently let us prevent the crash in cases of incorrect detection of banksel operand. by Sanjiv Gupta · 15 years ago
  37. 0c8382c reg0 references are not real registers. This fixes a crash on the by Chris Lattner · 15 years ago
  38. 685cb17 Make sure to rebuild dependencies for the `check' and `unittests' targets so by Misha Brukman · 15 years ago
  39. e206b1d Arguments to indirect calls were being passed incorrectly. They are not fixed to start after return value. by Sanjiv Gupta · 15 years ago
  40. a1cd83a Fix code size computation on x86-64, patch by Zoltan Varga! by Chris Lattner · 15 years ago
  41. 56946ed add an accessor method, patch by John McCall! by Chris Lattner · 15 years ago
  42. 6e2a46a r68576 unconverd a bug in PIC16 port (Thanks to Dan Gohman) where we were custom lowering an ADD to ADDC. by Sanjiv Gupta · 15 years ago
  43. 57fc82d Generalize ExtendUsesToFormExtLoad to be usable for ANY_EXTEND, by Dan Gohman · 15 years ago
  44. 7d770be Convert TargetRegisterInfo's super-register checking to use a pre-computed hash table just like subregister checking does. by Owen Anderson · 15 years ago
  45. 49a4ba9 Fix pointer casting problem. by Nick Lewycky · 15 years ago
  46. 8e5c0da Don't copy the operand of a SwitchInst into virtual registers as by Dan Gohman · 15 years ago
  47. 349ba49 Fix grammaros in comments. by Dan Gohman · 15 years ago
  48. b9ca608 Fixed compiler warning. by Misha Brukman · 15 years ago
  49. 6ddf2c1 Add sys::Path::makeAbsolute(). by Daniel Dunbar · 15 years ago
  50. 2eb65e2 Fix BitstreamReader's GetCurrentBitNo to return the correct bit number, and stop JumpToBit from covering up its mistakes by Douglas Gregor · 15 years ago
  51. 75b2738 If subprogram type is not tagged as DW_TAG_subroutine_type then use it directly as a return value type. by Devang Patel · 15 years ago
  52. 094fad3 Re-apply 68552. Tested by bootstrapping llvm-gcc and using that to build llvm. by Rafael Espindola · 15 years ago
  53. 83593a3 Add testcase for PR3795. by Bob Wilson · 15 years ago
  54. 2c7dab1 Fix PR3795: Apply Dan's suggested fix for by Bob Wilson · 15 years ago
  55. 47a4edc Accommodate empty string for build type. This was previously causing an error by Ted Kremenek · 15 years ago
  56. 0648f54 Use 8 instead of CHAR_BIT by Douglas Gregor · 15 years ago
  57. 3d0355b Soft float support for FREM. by Duncan Sands · 15 years ago
  58. e3bc46e * Fixed calls to APInt ctor to work for negative values on Darwin/x86 by Misha Brukman · 15 years ago
  59. b7e7886 Add BitstreamWriter::GetCurrentBitNo, to report where we are in the output bitstream by Douglas Gregor · 15 years ago
  60. 7beb1ec Soft float support for undef. Reported by Xerxes Rånby. by Duncan Sands · 15 years ago
  61. 8ef2b89 Avoid a hard coded constant. by Rafael Espindola · 15 years ago
  62. c1fa70c Emit .line debug directives for stoppoints. The debug location is retrieved by the MachineInstr itself, rather than by custom handling the DBG_STOPPOINT nodes. by Sanjiv Gupta · 15 years ago
  63. ddfa57b Instcombine should not promote whole computation trees to "strange" by Chris Lattner · 15 years ago
  64. 7836fc1 Handle indirect function calls. by Sanjiv Gupta · 15 years ago
  65. bd6de0a disable this code for now, re-breaking PR2975, but fixing by Chris Lattner · 15 years ago
  66. 00a7b52 Remove AllowInverse: it leaks memory and is not the right by Chris Lattner · 15 years ago
  67. 4da69c7 Fully escape the grep string for this test. by Dan Gohman · 15 years ago
  68. ac03132 Update this test for recent codegen improvements. CodeGen is now by Dan Gohman · 15 years ago
  69. a118c2e change printStringChar to emit characters as unsigned char instead of char, by Chris Lattner · 15 years ago
  70. 97121ba Implement support for using modeling implicit-zero-extension on x86-64 by Dan Gohman · 15 years ago
  71. a49a671 Revert prev. patch for now. by Devang Patel · 15 years ago
  72. 044b534 Temporarily revert r68552. This was causing a failure in the self-hosting LLVM by Bill Wendling · 15 years ago
  73. caf6129 Right now DBG_LABEL are required for llvm.dbg.region_start and llvm.dbg.region_end in non-fast mode also. by Devang Patel · 15 years ago
  74. 2a6411b Reduce code duplication on the TLS implementation. by Rafael Espindola · 15 years ago
  75. 4fd5528 Don't attempt to handle aggregate argument values in FastISel; let by Dan Gohman · 15 years ago
  76. 30eae3c PR2985 / <rdar://problem/6584986> by Jim Grosbach · 15 years ago
  77. f23e809 Remove ccc now. Radar 6737767 by Mike Stump · 15 years ago
  78. 68c405d fix style. by Torok Edwin · 15 years ago
  79. a0bd810 Use 'name' instead of 'href'. by Bill Wendling · 15 years ago
  80. b1a61bd Fix verification failure. by Bill Wendling · 15 years ago
  81. f159402 Offer an explanation of why building LLVM-GCC with objdir == srcdir doesn't by Bill Wendling · 15 years ago
  82. 290235f Another reformatting. No change in docs. by Bill Wendling · 15 years ago
  83. eb55f3e Another attempt at fixing PR2975. by Torok Edwin · 15 years ago
  84. ce8f9fe fix comment to reflect the implementation I ended up settling on. by Chris Lattner · 15 years ago
  85. 62ce3b3 fix rdar://6762290, a crash compiling cxx filt with clang. by Chris Lattner · 15 years ago
  86. ae7dd80 Add an API for the bitstream reader to read blobs and return by Chris Lattner · 15 years ago
  87. 683b08c remove empty section by Chris Lattner · 15 years ago
  88. 75b8eb2 Add svn:ignore properties. by Dan Gohman · 15 years ago
  89. 3f75d31 stub out code for reading record with blobs as blobs. Not active yet. by Chris Lattner · 15 years ago
  90. 123f384 allow clients to look up abbrev id's by Chris Lattner · 15 years ago
  91. 298a82d Add a new EmitRecordWithBlob API that allows a blob to be emitted by Chris Lattner · 15 years ago
  92. dcd006b add a new Blob encoding abbreviation for bitcode files that emits by Chris Lattner · 15 years ago
  93. 8f34346 Handle 'a' modifier in ARM inline assembly. Patch by Richard Pennington. by Bob Wilson · 15 years ago
  94. 30910bf split ReadAbbreviatedLiteral out of ReadAbbreviatedField. by Chris Lattner · 15 years ago
  95. 86bc23d reduce indentation with early-out by Chris Lattner · 15 years ago
  96. 96153a4 simplify code a bit. by Chris Lattner · 15 years ago
  97. 4072879 simplify to reduce indentation. by Chris Lattner · 15 years ago
  98. 5ce1b11 revert r68457, its crashing in make check. by Torok Edwin · 15 years ago
  99. e2a466b Teach llvm-bcanalyzer to skip over the header we use on LLVM IR files. by Chris Lattner · 15 years ago
  100. 59d5f83 fix (part of) memory leak on shutdown. See PR2975. by Torok Edwin · 15 years ago