| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | PTX: Add basic documentation to CodeGenerator.html | Justin Holewinski | 2011-08-11 | 1 | -0/+65 |
| | | | | | llvm-svn: 137315 | ||||
| * | Fix a typo. | Roman Divacky | 2011-08-01 | 1 | -1/+1 |
| | | | | | llvm-svn: 136646 | ||||
| * | Updating stale documentation on regalloc modes. | Andrew Trick | 2011-07-26 | 1 | -7/+13 |
| | | | | | llvm-svn: 136112 | ||||
| * | Describe the reasoning for compact unwind in better terms. Thanks to Nick ↵ | Bill Wendling | 2011-07-26 | 1 | -19/+23 |
| | | | | | | | Kledzik for the description. llvm-svn: 136064 | ||||
| * | Fix some typos. | Bill Wendling | 2011-07-25 | 1 | -4/+6 |
| | | | | | llvm-svn: 135956 | ||||
| * | An initial description of the compact unwind encoding. | Bill Wendling | 2011-07-25 | 1 | -1/+109 |
| | | | | | llvm-svn: 135955 | ||||
| * | document thiscall, PR9101 | Chris Lattner | 2011-05-22 | 1 | -5/+8 |
| | | | | | llvm-svn: 131873 | ||||
| * | Document the automatic alias printing of InstAliases. | Bill Wendling | 2011-05-04 | 1 | -0/+5 |
| | | | | | llvm-svn: 130889 | ||||
| * | docs: Introduce cascading style <div> and <p> continued on <h[2-5]>. | NAKAMURA Takumi | 2011-04-23 | 1 | -115/+102 |
| | | | | | | | | | | | | | | | | | | <h2>Section Example</h2> <div> <!-- h2+div is applied --> <p>Section preamble.</p> <h3>Subsection Example</h3> <p> <!-- h3+p is applied --> Subsection body </p> <!-- End of section body --> </div> FIXME: Care H5 better. llvm-svn: 130040 | ||||
| * | docs: Use <Hn> as Heading elements instead of <DIV class="doc_foo">. | NAKAMURA Takumi | 2011-04-18 | 1 | -151/+152 |
| | | | | | | | | | | H1 ... doc_title H2 ... doc_section H3 ... doc_subsection H4 ... doc_subsubsection llvm-svn: 129736 | ||||
| * | Fix typo. | Jay Foad | 2011-04-13 | 1 | -1/+1 |
| | | | | | llvm-svn: 129437 | ||||
| * | docs: Canonicalize URLs. | NAKAMURA Takumi | 2011-04-09 | 1 | -1/+1 |
| | | | | | llvm-svn: 129181 | ||||
| * | Trivial typo fixes. | Jay Foad | 2011-04-06 | 1 | -1/+1 |
| | | | | | llvm-svn: 128996 | ||||
| * | Finish up the first draft of the release notes. | Chris Lattner | 2011-04-06 | 1 | -1/+1 |
| | | | | | | | improvements are welcome, please commit any changes directly to SVN. llvm-svn: 128992 | ||||
| * | Don't document exactly how virtual registers are represented as integers. Code | Jakob Stoklund Olesen | 2011-01-08 | 1 | -11/+18 |
| | | | | | | | | | | shouldn't depend directly on that. Give an example of how to iterate over all virtual registers in a function without depending on the representation. llvm-svn: 123099 | ||||
| * | Update the target feature matrix to reflect some new features in the MBlaze ↵ | Wesley Peck | 2010-12-20 | 1 | -4/+4 |
| | | | | | | | backend. llvm-svn: 122276 | ||||
| * | Update the Target Feature Matrix for Mips | Bruno Cardoso Lopes | 2010-12-19 | 1 | -4/+4 |
| | | | | | llvm-svn: 122203 | ||||
| * | further fixes. | Chris Lattner | 2010-12-13 | 1 | -2/+2 |
| | | | | | llvm-svn: 121657 | ||||
| * | fix typo | Chris Lattner | 2010-12-12 | 1 | -1/+1 |
| | | | | | llvm-svn: 121620 | ||||
| * | no alpha jit support. | Chris Lattner | 2010-11-14 | 1 | -1/+1 |
| | | | | | llvm-svn: 119052 | ||||
| * | add (and document) the ability for alias results to have | Chris Lattner | 2010-11-06 | 1 | -2/+10 |
| | | | | | | | | | fixed physical registers. Start moving fp comparison aliases to the .td file (which default to using %st1 if nothing is specified). llvm-svn: 118352 | ||||
| * | generalize alias support to allow the result of an alias to | Chris Lattner | 2010-11-06 | 1 | -1/+9 |
| | | | | | | | | add fixed immediate values. Move the aad and aam aliases to use this, and document it. llvm-svn: 118350 | ||||
| * | document instalias. | Chris Lattner | 2010-11-06 | 1 | -0/+49 |
| | | | | | llvm-svn: 118335 | ||||
| * | Validate HTML. | Benjamin Kramer | 2010-10-30 | 1 | -13/+13 |
| | | | | | llvm-svn: 117847 | ||||
| * | add missing tag | Chris Lattner | 2010-10-30 | 1 | -0/+2 |
| | | | | | llvm-svn: 117846 | ||||
| * | fix typos and some serious bugs in feature handling (but not for | Chris Lattner | 2010-10-30 | 1 | -1/+1 |
| | | | | | | | | cases that are currently exercised). Thanks to Frits van Bommel for the great review! llvm-svn: 117840 | ||||
| * | Implement (and document!) support for MnemonicAlias's to have Requires | Chris Lattner | 2010-10-30 | 1 | -3/+15 |
| | | | | | | | | | | | | directives, allowing things like this: def : MnemonicAlias<"pop", "popl">, Requires<[In32BitMode]>; def : MnemonicAlias<"pop", "popq">, Requires<[In64BitMode]>; Move the rest of the X86 MnemonicAliases over to the .td file. llvm-svn: 117830 | ||||
| * | implement (and document!) the first kind of MC assembler alias, which | Chris Lattner | 2010-10-30 | 1 | -3/+52 |
| | | | | | | | | just remaps one mnemonic to another. Convert a few of the X86 aliases from .cpp to .td code. llvm-svn: 117815 | ||||
| * | clarify that not having the ".o file writing" feature | Chris Lattner | 2010-10-28 | 1 | -0/+4 |
| | | | | | | | | doesn't mean that you can't get a .o file. Apparently this is confusing :) llvm-svn: 117523 | ||||
| * | Update target feature matrix for CellSPU | Kalle Raiskila | 2010-10-25 | 1 | -4/+4 |
| | | | | | llvm-svn: 117255 | ||||
| * | Update target feature matrix for Blackfin. | Jakob Stoklund Olesen | 2010-10-24 | 1 | -4/+4 |
| | | | | | llvm-svn: 117245 | ||||
| * | Updating target feature matrix to indicate current MBlaze status. | Wesley Peck | 2010-10-24 | 1 | -4/+4 |
| | | | | | llvm-svn: 117244 | ||||
| * | broken link | Chris Lattner | 2010-10-24 | 1 | -1/+1 |
| | | | | | llvm-svn: 117232 | ||||
| * | add a big table with target features. | Chris Lattner | 2010-10-24 | 1 | -1/+274 |
| | | | | | llvm-svn: 117230 | ||||
| * | random cruft in my tree. | Chris Lattner | 2010-09-21 | 1 | -2/+19 |
| | | | | | llvm-svn: 114387 | ||||
| * | add some documentation for the most important MC-level classes along with | Chris Lattner | 2010-09-11 | 1 | -24/+243 |
| | | | | | | | an overview of mc and the idea of the code emission phase. llvm-svn: 113707 | ||||
| * | Stack slot access methods are in TargetInstrInfo. | Jakob Stoklund Olesen | 2010-08-31 | 1 | -2/+2 |
| | | | | | llvm-svn: 112653 | ||||
| * | Remove the local register allocator. | Jakob Stoklund Olesen | 2010-06-15 | 1 | -13/+13 |
| | | | | | | | Please use the fast allocator instead. llvm-svn: 106051 | ||||
| * | Revert r103213. It broke several sections of live website. | mike-m | 2010-05-07 | 1 | -0/+2169 |
| | | | | | llvm-svn: 103219 | ||||
| * | Overhauled llvm/clang docs builds. Closes PR6613. | mike-m | 2010-05-06 | 1 | -2169/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTE: 2nd part changeset for cfe trunk to follow. *** PRE-PATCH ISSUES ADDRESSED - clang api docs fail build from objdir - clang/llvm api docs collide in install PREFIX/ - clang/llvm main docs collide in install - clang/llvm main docs have full of hard coded destination assumptions and make use of absolute root in static html files; namely CommandGuide tools hard codes a website destination for cross references and some html cross references assume website root paths *** IMPROVEMENTS - bumped Doxygen from 1.4.x -> 1.6.3 - splits llvm/clang docs into 'main' and 'api' (doxygen) build trees - provide consistent, reliable doc builds for both main+api docs - support buid vs. install vs. website intentions - support objdir builds - document targets with 'make help' - correct clean and uninstall operations - use recursive dir delete only where absolutely necessary - added call function fn.RMRF which safeguards against botched 'rm -rf'; if any target (or any variable is evaluated) which attempts to remove any dirs which match a hard-coded 'safelist', a verbose error will be printed and make will error-stop. llvm-svn: 103213 | ||||
| * | Fix a grammaro. | Bob Wilson | 2010-04-09 | 1 | -1/+1 |
| | | | | | llvm-svn: 100877 | ||||
| * | Docuemntation corrections from John Myers. | Dan Gohman | 2010-03-25 | 1 | -2/+2 |
| | | | | | llvm-svn: 99454 | ||||
| * | add support, testcases, and dox for the new GHC calling | Chris Lattner | 2010-03-11 | 1 | -1/+2 |
| | | | | | | | convention. Patch by David Terei! llvm-svn: 98212 | ||||
| * | Add documentation on sibling call optimization. Rename tailcall2.ll test to ↵ | Evan Cheng | 2010-03-08 | 1 | -0/+45 |
| | | | | | | | sibcall.ll. llvm-svn: 97980 | ||||
| * | Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul, | Dan Gohman | 2010-03-02 | 1 | -3/+3 |
| | | | | | | | respectively. llvm-svn: 97531 | ||||
| * | Update the -tailcallopt description to match djg's improvements to the calling | Jeffrey Yasskin | 2010-01-11 | 1 | -5/+0 |
| | | | | | | | convention. llvm-svn: 93167 | ||||
| * | x86 uses 5 operands for most memory refs now. | Chris Lattner | 2009-10-10 | 1 | -6/+9 |
| | | | | | llvm-svn: 83733 | ||||
| * | Update documentation for the -f change. | Dan Gohman | 2009-08-25 | 1 | -3/+3 |
| | | | | | llvm-svn: 79996 | ||||
| * | Remove the IA-64 backend. | Dan Gohman | 2009-07-24 | 1 | -3/+3 |
| | | | | | llvm-svn: 76920 | ||||
| * | x86_64 was completely missing from the target triples supported by the X86 code | Torok Edwin | 2009-06-15 | 1 | -0/+2 |
| | | | | | | | generator! llvm-svn: 73385 | ||||

