| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 | ||||
| * | Change MachineInstrBuilder::addReg() to take a flag instead of a list of | Bill Wendling | 2009-05-13 | 1 | -1/+1 | 
| | | | | | | | | | | | | | booleans. This gives a better indication of what the "addReg()" is doing. Remembering what all of those booleans mean isn't easy, especially if you aren't spending all of your time in that code. I took Jakob's suggestion and made it illegal to pass in "true" for the flag. This should hopefully prevent any unintended misuse of this (by reverting to the old way of using addReg()). llvm-svn: 71722 | ||||
| * | Add some more documentation for x86 special address spaces. | Dan Gohman | 2009-05-05 | 1 | -4/+26 | 
| | | | | | llvm-svn: 71012 | ||||
| * | Add basic support for code generation of | Chris Lattner | 2009-05-05 | 1 | -4/+6 | 
| | | | | | | | addrspace(257) -> FS relative on x86. Patch by Zoltan Varga! llvm-svn: 70992 | ||||
| * | ISD::ADD_PARTS is gone; use ISD::SMUL_LOHI as an example instead. | Dan Gohman | 2009-04-22 | 1 | -1/+1 | 
| | | | | | llvm-svn: 69804 | ||||
| * | More obsessive reformatting. Fixed some validation errors. | Bill Wendling | 2009-04-15 | 1 | -1009/+1045 | 
| | | | | | llvm-svn: 69130 | ||||
| * | Add some documentation for address-space-based access to the segment registers. | Nate Begeman | 2009-01-26 | 1 | -1/+22 | 
| | | | | | llvm-svn: 62986 | ||||
| * | Removed warnings from HTML 4.01 validator: trailing slashes in <br> and <img> | Misha Brukman | 2008-12-11 | 1 | -1/+1 | 
| | | | | | | | tags are not needed in HTML, only XML. llvm-svn: 60885 | ||||
| * | Global replace of yellow W3C "valid HTML/CSS" icons with blue ones. | Misha Brukman | 2008-12-11 | 1 | -2/+2 | 
| | | | | | llvm-svn: 60880 | ||||
| * | Delete some spurious characters. | Dan Gohman | 2008-11-24 | 1 | -1/+1 | 
| | | | | | llvm-svn: 59964 | ||||
| * | Fix some "</p>"s. | Dan Gohman | 2008-11-24 | 1 | -2/+2 | 
| | | | | | llvm-svn: 59963 | ||||
| * | Some documentation for LegalizeTypes. | Dan Gohman | 2008-11-24 | 1 | -54/+78 | 
| | | | | | llvm-svn: 59962 | ||||
| * | HTML syntax fixes. | Dan Gohman | 2008-10-14 | 1 | -1/+1 | 
| | | | | | llvm-svn: 57503 | ||||
| * | Fix a typo. | Dan Gohman | 2008-10-03 | 1 | -1/+1 | 
| | | | | | llvm-svn: 56986 | ||||
| * | Add more documentation advertising the -view-*-dags options. | Dan Gohman | 2008-09-10 | 1 | -10/+21 | 
| | | | | | llvm-svn: 56073 | ||||
| * | Rename SDOperand to SDValue. | Dan Gohman | 2008-07-27 | 1 | -1/+1 | 
| | | | | | llvm-svn: 54128 | ||||
| * | Fix an error in the two-address example. | Dan Gohman | 2008-06-13 | 1 | -2/+2 | 
| | | | | | llvm-svn: 52253 | ||||
| * | Wrap MVT::ValueType in a struct to get type safety | Duncan Sands | 2008-06-06 | 1 | -1/+2 | 
| | | | | | | | | | | | | | | | | | and better control the abstraction. Rename the type to MVT. To update out-of-tree patches, the main thing to do is to rename MVT::ValueType to MVT, and rewrite expressions like MVT::getSizeInBits(VT) in the form VT.getSizeInBits(). Use VT.getSimpleVT() to extract a MVT::SimpleValueType for use in switch statements (you will get an assert failure if VT is an extended value type - these shouldn't exist after type legalization). This results in a small speedup of codegen and no new testsuite failures (x86-64 linux). llvm-svn: 52044 | ||||
| * | Fix example to be valid LLVM assembly. | Matthijs Kooijman | 2008-06-04 | 1 | -3/+3 | 
| | | | | | llvm-svn: 51942 | ||||
| * | Add documentation for tail call optimization to CodeGenerator.html. Add a link | Arnold Schwaighofer | 2008-05-14 | 1 | -0/+45 | 
| | | | | | | | referring to it to LangRef.html. llvm-svn: 51097 | ||||
| * | Rename MRegisterInfo to TargetRegisterInfo. | Dan Gohman | 2008-02-10 | 1 | -15/+14 | 
| | | | | | llvm-svn: 46930 | ||||
| * | update a couple of references to SSARegMap. | Chris Lattner | 2007-12-31 | 1 | -5/+4 | 
| | | | | | llvm-svn: 45468 | ||||
| * | Make it more clear that some things that can't be done in .td files can | Dan Gohman | 2007-12-13 | 1 | -7/+7 | 
| | | | | | | | | still be done in the LLVM code generator. And update the summary for the X86 target. llvm-svn: 45013 | ||||
| * | Document the -view-sunit-dags option. | Dan Gohman | 2007-10-15 | 1 | -1/+5 | 
| | | | | | llvm-svn: 43015 | ||||
| * | LLVM does not use the old style simple isel any more. | Evan Cheng | 2007-10-08 | 1 | -5/+2 | 
| | | | | | llvm-svn: 42758 | ||||
| * | first pass of nomenclature changes in .html files | Gabor Greif | 2007-07-06 | 1 | -1/+1 | 
| | | | | | llvm-svn: 37956 | ||||
| * | Adding credit for PPC changes. | Jim Laskey | 2007-03-14 | 1 | -2/+3 | 
| | | | | | llvm-svn: 35101 | ||||
| * | Pass html validation. | Jim Laskey | 2006-12-15 | 1 | -18/+17 | 
| | | | | | llvm-svn: 32598 | ||||
| * | Start of PowerPC info. | Jim Laskey | 2006-12-14 | 1 | -0/+222 | 
| | | | | | llvm-svn: 32578 | ||||
| * | Clean-up of formatting and spelling. | Bill Wendling | 2006-10-11 | 1 | -3/+5 | 
| | | | | | llvm-svn: 30885 | ||||
| * | Put code example inside of "doc_code" divisions. | Bill Wendling | 2006-10-11 | 1 | -9/+18 | 
| | | | | | llvm-svn: 30876 | ||||
| * | Added some eye-candy for Subtarget type checking | Anton Korobeynikov | 2006-09-17 | 1 | -0/+20 | 
| | | | | | | | Added X86 StdCall & FastCall calling conventions. Codegen will follow. llvm-svn: 30446 | ||||
| * | *** empty log message *** | Bill Wendling | 2006-09-07 | 1 | -1/+1 | 
| | | | | | llvm-svn: 30145 | ||||
| * | Fixed my rotten Engrish grammar. | Bill Wendling | 2006-09-07 | 1 | -6/+6 | 
| | | | | | llvm-svn: 30144 | ||||
| * | Cleaned up some of the grammar in the Live Intervals section. Removed the | Bill Wendling | 2006-09-06 | 1 | -147/+37 | 
| | | | | | | | | huge honking FIXME comment. I'll address the "Live Intervals Analysis" section soon. llvm-svn: 30129 | ||||
| * | First draft of the "Live Interval Analysis" section. This is the "Live | Bill Wendling | 2006-09-04 | 1 | -0/+188 | 
| | | | | | | | Variable Analysis" pass. llvm-svn: 30106 | ||||
| * | Fixed formatting problem. | Bill Wendling | 2006-09-01 | 1 | -1/+0 | 
| | | | | | llvm-svn: 30033 | ||||
| * | Added documentation Fernando Magno Quintao Pereira wrote for the register | Bill Wendling | 2006-09-01 | 1 | -3/+341 | 
| | | | | | | | allocator. (First draft) llvm-svn: 30031 | ||||
| * | Spell naively with the i-Umlaut... | Bill Wendling | 2006-08-28 | 1 | -2/+2 | 
| | | | | | llvm-svn: 29939 | ||||
| * | Messed up and put a "To be written" in a section that was written. | Bill Wendling | 2006-08-28 | 1 | -1/+0 | 
| | | | | | llvm-svn: 29938 | ||||
| * | Added some preliminary text to the TargetJITInfo class section. | Bill Wendling | 2006-08-28 | 1 | -300/+302 | 
| | | | | | | | | Fixed some inconsistencies with format. Corrected some of the text. Put code inside of "code" div tags. llvm-svn: 29937 | ||||
| * | Remove V9 | Chris Lattner | 2006-04-20 | 1 | -11/+0 | 
| | | | | | llvm-svn: 27886 | ||||
| * | Changes docs for llvm.cs.uiuc.edu -> llvm.org | Reid Spencer | 2006-03-14 | 1 | -1/+1 | 
| | | | | | llvm-svn: 26746 | ||||
| * | Fix spelling of 'separate'. | Jeff Cohen | 2005-10-24 | 1 | -1/+1 | 
| | | | | | llvm-svn: 23971 | ||||
| * | Apparently, people object to floating pointers. Picky picky. | Chris Lattner | 2005-10-17 | 1 | -1/+1 | 
| | | | | | llvm-svn: 23770 | ||||
| * | As requested, a blurb on sub-targets. | Jim Laskey | 2005-10-17 | 1 | -1/+5 | 
| | | | | | llvm-svn: 23769 | ||||
| * | fix some grammar-o's I noticed | Chris Lattner | 2005-10-17 | 1 | -7/+7 | 
| | | | | | llvm-svn: 23768 | ||||

