1. 4413b50 Fix a typo. by David Greene · 13 years ago
  2. 112d959 Document Multidefs by David Greene · 13 years ago
  3. c7d93be Tell people using the tutorial how to make it actually work. by David Chisnall · 13 years ago
  4. b3c4e26 Remove last references to hotpatch. by Rafael Espindola · 13 years ago
  5. 25456ef Add the returns_twice attribute to LLVM. by Rafael Espindola · 13 years ago
  6. f16e2d4 some 3.0 API notes by Torok Edwin · 13 years ago
  7. 90d6ec5 Add a note on removing LLVMC. by Eric Christopher · 13 years ago
  8. 100a371 Remove incorrect passage. by Bill Wendling · 13 years ago
  9. ab15bf7 Add FCA to the lexicon. by Bill Wendling · 13 years ago
  10. 2477102 Remove some not-really-correct wording. by Bill Wendling · 13 years ago
  11. a69d998 Fix grammar. by Bill Wendling · 13 years ago
  12. 99aa6b0 Remove dead table entry. by Bill Wendling · 13 years ago
  13. 2a6b073 Some minor (and more involved) cleanups. No real context changes. by Bill Wendling · 13 years ago
  14. b0387f9 Duncan owns dragonegg too, it's all his fault :) by Chris Lattner · 13 years ago
  15. 5d8f43f Resynch intro to section with copyright section. by Chris Lattner · 13 years ago
  16. e5a7896 Remove mention of llvm-gcc and llvm-g++. -Ministry of Truth by Bill Wendling · 13 years ago
  17. 3c05196 Remove some missed references to dead intrinsics. by Bill Wendling · 13 years ago
  18. 4a065dd Update the EH doc to reflect the new EH model. by Bill Wendling · 13 years ago
  19. 78d0835 More llvmc bits. Spotted by Benjamin on IRC. by Eric Christopher · 13 years ago
  20. eae5a13 Remove more of llvmc and dependencies. by Eric Christopher · 13 years ago
  21. f22e672 X86 has asterisk-free inline asm support now. by Jakob Stoklund Olesen · 13 years ago
  22. bed95e0 Remove obsolete .pod files. by Bill Wendling · 13 years ago
  23. 88816ec Fix up the formating and change llvm-gcc to clang. by Bill Wendling · 13 years ago
  24. ea55c83 Remove mention of llvm-gcc/llvm-g++ from doc. by Bill Wendling · 13 years ago
  25. 4e0a55d Add -rfunc and -rglob options to llvm-extract to support regular by Chad Rosier · 13 years ago
  26. e4481d8 s/SequeuentiallyConsistent/SequentiallyConsistent/g by Nick Lewycky · 13 years ago
  27. 5366ca4 Fix verb tense agreement. by Nick Lewycky · 13 years ago
  28. 9b4a2ac Update docs to reflect recent addition of new CompileUnit elements. by Devang Patel · 13 years ago
  29. 4a544a7 Split the init.trampoline intrinsic, which currently combines GCC's by Duncan Sands · 13 years ago
  30. cb8d8fa Update the CMake documentation to the correct variables. by Chandler Carruth · 13 years ago
  31. f940a1a Remove the old tail duplication pass. It is not used and is unable to update by Rafael Espindola · 13 years ago
  32. 2ac6b01 Preliminary documentation in docs/SegmentedStacks.html. by Rafael Espindola · 13 years ago
  33. d36d2db Update docs: Bugpoint understands -O[123] by Tobias Grosser · 13 years ago
  34. c264b2f Some minor updates to atomic acquire/release docs in LangRef. by Eli Friedman · 13 years ago
  35. 3395fe1 Fix an example in the documentation. Patch by Sanjoy Das! by Rafael Espindola · 13 years ago
  36. 2026de2 docs/ReleaseNotes.html: Mention that Windows 2000 will not be supported any more. by NAKAMURA Takumi · 13 years ago
  37. 234bccd Some minor wording updates and cross-linking for atomic docs. Explicitly note that we don't try to portably define what volatile in LLVM IR means. by Eli Friedman · 13 years ago
  38. 93d39be Do not use named md nodes to track variables that are completely optimized. This does not scale while doing LTO with debug info. New approach is to include list of variables in the subprogram info directly. by Devang Patel · 13 years ago
  39. e865c03 Fixed some punctuation. Sentences can be combined with semi-colons but not by John Criswell · 13 years ago
  40. 94c7ddb Until now all debug info MDNodes referred to a root MDNode, a compile unit. This simplified handling of these needs in dwarf writer. However, one side effect of this is that during link time optimization all these MDNodes are _not_ uniqued. In other words there will be N number of MDNodes describing "int", "char" and all other types, which would suddenly grow when each object file starts using libraries like STL. by Devang Patel · 13 years ago
  41. 6326a42 Add a finalize() hook, that'll let DIBuilder construct compile unit lazily. by Devang Patel · 13 years ago
  42. 266246c Fix the getelementptr description so it is extremely clear that array indices passed to getelementptr are signed. by Eli Friedman · 13 years ago
  43. f03bb26 Move "atomic" and "volatile" designations on instructions after the opcode by Eli Friedman · 13 years ago
  44. 91a44dd Some reorganization of atomic docs. Added explicit section for NonAtomic. Added example for illegal non-atomic operation. by Eli Friedman · 13 years ago
  45. e6e8826 Initial commit of the 'landingpad' instruction. by Bill Wendling · 13 years ago
  46. c513309 apparently variable naming conventions never got added, document the by Chris Lattner · 13 years ago
  47. 9a5ffbf minor typo by Chris Lattner · 13 years ago
  48. aa175c3 fix one reference that slipped through, thanks Eli by Chris Lattner · 13 years ago
  49. 2c38d65 add new accessors to reflect new terminology in struct types. by Chris Lattner · 13 years ago
  50. 3c757ef docs/GettingStarted.html: [Git] Add instructions how to generate patchset with Git. by NAKAMURA Takumi · 13 years ago
  51. 7a362f4 docs/GettingStarted.html: [Git] Mention branch.master.rebase for the tracking branch. by NAKAMURA Takumi · 13 years ago
  52. 24ad111 docs/GettingStarted.html: [Git] Split the subsubsection for committer's section. by NAKAMURA Takumi · 13 years ago
  53. b5bb29c docs: Update HTML markup(s). by NAKAMURA Takumi · 13 years ago
  54. 3cc8482 docs/llvm.css: Introduce <blockquote><pre>. It may be used as blockquoted "doc_code". by NAKAMURA Takumi · 13 years ago
  55. 79d7de7 Misc atomic doc tweaks; reordering operations across Acquire/Release can be beneficial. by Eli Friedman · 13 years ago
  56. d577a06 Fix up this paragraph (including a nasty typo). by Eli Friedman · 13 years ago
  57. a1b953b Clarify the definition of SequentiallyConsistent operations. by Andrew Trick · 13 years ago
  58. 5093fe6 Fix mismatched tag. by Eli Friedman · 13 years ago
  59. 1bf4ad4 Revision to Atomics guide, per Chris's comments. by Eli Friedman · 13 years ago
  60. dceb002 PTX: Add basic documentation to CodeGenerator.html by Justin Holewinski · 13 years ago
  61. e2d8cf7 Changes per Jeffrey's comments. by Eli Friedman · 13 years ago
  62. 8fa281a Fix minor typo. by Eli Friedman · 13 years ago
  63. 21006d4 Representation of 'atomic load' and 'atomic store' in IR. by Eli Friedman · 13 years ago
  64. 138515d First draft of the practical guide to atomics. by Eli Friedman · 13 years ago
  65. bf13ee1 Clean up the grammar for the landingpad instruction. by Bill Wendling · 13 years ago
  66. 2905c32 Fix typo found by John. by Bill Wendling · 13 years ago
  67. f42e9b2 Reword. by Jay Foad · 13 years ago
  68. 2626dba Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets. by Bill Wendling · 13 years ago
  69. e4ad50b Go back to the old definition. It's not clear that a 'resume' can be 'outlined' from the function with the landing pad for all platforms. by Bill Wendling · 13 years ago
  70. b7a0135 Explain how clauses are applied. by Bill Wendling · 13 years ago
  71. f78faf8 Add the documentation for the 'landingpad' instruction. Improve the 'invoke' by Bill Wendling · 13 years ago
  72. 6445ecb no need to count the terminators. by Chris Lattner · 13 years ago
  73. 086da7e Duncan's english is better than mine. :-) by Bill Wendling · 13 years ago
  74. 1600525 Remove the LLVMBuildUnwind C API function. by Bill Wendling · 13 years ago
  75. 74699fd I am the code owner for Clang's IR generation; this has been true by John McCall · 13 years ago
  76. 101c81d Minor wording tweak for memory model. by Eli Friedman · 13 years ago
  77. 4d7ce32 Fix a typo. by Roman Divacky · 13 years ago
  78. af75f0c Fix some validation errors. by Bill Wendling · 13 years ago
  79. 0246bb7 Fix some validation errors. by Bill Wendling · 13 years ago
  80. dccc03b Add the 'resume' instruction for the new EH rewrite. by Bill Wendling · 13 years ago
  81. 10c6d12 Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338, by Bill Wendling · 13 years ago
  82. ff03048 LangRef and basic memory-representation/reading/writing for 'cmpxchg' and by Eli Friedman · 13 years ago
  83. 772fe17 Merge the contents from exception-handling-rewrite to the mainline. by Bill Wendling · 13 years ago
  84. 0a2a306 Update document listing DIVariable elements to reflect recent changes. by Devang Patel · 13 years ago
  85. 194229e Fix a typo. by Bill Wendling · 13 years ago
  86. 5acaeb5 Updating stale documentation on regalloc modes. by Andrew Trick · 13 years ago
  87. b3aa471 Clean up the HTML here a bit. by Bill Wendling · 13 years ago
  88. 75471d6 Describe the reasoning for compact unwind in better terms. Thanks to Nick Kledzik for the description. by Bill Wendling · 13 years ago
  89. 47f3513 Initial implementation of 'fence' instruction, the new C++0x-style replacement for llvm.memory.barrier. by Eli Friedman · 13 years ago
  90. f3379da 80 columns. by Nick Lewycky · 13 years ago
  91. 3ef750d Fix some typos. by Bill Wendling · 13 years ago
  92. 66bc5c6 An initial description of the compact unwind encoding. by Bill Wendling · 13 years ago
  93. fbff0ec Add uwtable to the langref. by Rafael Espindola · 13 years ago
  94. a920310 Convert GetElementPtrInst to use ArrayRef. by Jay Foad · 13 years ago
  95. 628ed39 clarify that opaque is actually a struct type, PR10430 by Chris Lattner · 13 years ago
  96. ec8f1ea how about that, StringRef doesn't allow any mutation, thanks to by Chris Lattner · 13 years ago
  97. 6682746 add section to ToC by Chris Lattner · 13 years ago
  98. 3b4f417 write the long-overdue strings section of the data structure guide. by Chris Lattner · 13 years ago
  99. 7314a20 move the section for string-like containers to follow the section for sequential containers. by Chris Lattner · 13 years ago
  100. 0a2a60a Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to use ArrayRef. by Jay Foad · 13 years ago