Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix PR1005 | Chris Lattner | 2006-11-20 | 2 | -2/+2 |
| | | | | llvm-svn: 31881 | ||||
* | Fixed typo | Tanya Lattner | 2006-11-20 | 1 | -1/+1 |
| | | | | llvm-svn: 31871 | ||||
* | Adding 1.9 release and removing references to cfrontend | Tanya Lattner | 2006-11-20 | 1 | -16/+16 |
| | | | | llvm-svn: 31870 | ||||
* | Changing cfrontend dir to llvm-gcc3.4 as the example. | Tanya Lattner | 2006-11-20 | 1 | -4/+4 |
| | | | | llvm-svn: 31869 | ||||
* | Corrections from review. | Reid Spencer | 2006-11-19 | 1 | -21/+21 |
| | | | | llvm-svn: 31865 | ||||
* | Update a reference to the old setcc instruction. | Reid Spencer | 2006-11-18 | 1 | -1/+1 |
| | | | | llvm-svn: 31860 | ||||
* | For PR950: | Reid Spencer | 2006-11-18 | 1 | -48/+162 |
| | | | | | | | Documentation preview of the upcoming icmp and fcmp instructions that will replace the various setcc instructions. llvm-svn: 31859 | ||||
* | Movind newly-intorudced dll* linkage stuff & windows CC to "supported" | Anton Korobeynikov | 2006-11-18 | 1 | -9/+11 |
| | | | | | | list llvm-svn: 31847 | ||||
* | fix bug | Chris Lattner | 2006-11-18 | 1 | -1/+1 |
| | | | | llvm-svn: 31846 | ||||
* | first draft of 1.9 release notes | Chris Lattner | 2006-11-18 | 1 | -222/+251 |
| | | | | llvm-svn: 31845 | ||||
* | Cleaned up the document. Added "doc_code" divisions for code examples. | Bill Wendling | 2006-11-16 | 1 | -199/+274 |
| | | | | llvm-svn: 31784 | ||||
* | Add a link to the GEP FAQ. | Reid Spencer | 2006-11-13 | 1 | -2/+2 |
| | | | | llvm-svn: 31698 | ||||
* | Document new constant expr operators, rename bitconvert as bitcast. | Reid Spencer | 2006-11-11 | 1 | -15/+29 |
| | | | | llvm-svn: 31693 | ||||
* | Add a preview of two new conversion operators: ptrtoint and inttoptr. Update | Reid Spencer | 2006-11-11 | 1 | -4/+79 |
| | | | | | | the defintion of bitconvert correspondingly. llvm-svn: 31688 | ||||
* | Post-review changes on conversion instructions. | Reid Spencer | 2006-11-09 | 1 | -60/+55 |
| | | | | llvm-svn: 31607 | ||||
* | Fix runaway <tt> element and section ordering. | Reid Spencer | 2006-11-09 | 1 | -31/+31 |
| | | | | llvm-svn: 31606 | ||||
* | Remove futurisms that won't be in our future. | Reid Spencer | 2006-11-09 | 1 | -190/+0 |
| | | | | llvm-svn: 31605 | ||||
* | One more time for indentation. | Reid Spencer | 2006-11-09 | 1 | -0/+1 |
| | | | | llvm-svn: 31604 | ||||
* | Fix indentation problem starting at GEP. | Reid Spencer | 2006-11-09 | 1 | -1/+3 |
| | | | | llvm-svn: 31603 | ||||
* | Document correct opcodes for post 1.9 release. | Reid Spencer | 2006-11-08 | 1 | -10/+7 |
| | | | | llvm-svn: 31566 | ||||
* | Update the instruction opcodes for release 1.9 | Reid Spencer | 2006-11-08 | 1 | -33/+35 |
| | | | | llvm-svn: 31565 | ||||
* | For PR950: | Reid Spencer | 2006-11-08 | 1 | -17/+52 |
| | | | | | | | | This patch converts the old SHR instruction into two instructions, AShr (Arithmetic) and LShr (Logical). The Shr instructions now are not dependent on the sign of their operands. llvm-svn: 31542 | ||||
* | Fix the section headings. | Reid Spencer | 2006-11-08 | 1 | -29/+38 |
| | | | | llvm-svn: 31532 | ||||
* | For PR950: | Reid Spencer | 2006-11-08 | 1 | -32/+404 |
| | | | | | | | Early commit of the documentation for new conversion instructions for easier review. llvm-svn: 31531 | ||||
* | Add a note about warnings from the GNU ld 2.16.X linker. | Reid Spencer | 2006-11-04 | 1 | -0/+5 |
| | | | | llvm-svn: 31440 | ||||
* | For PR950: | Reid Spencer | 2006-11-02 | 1 | -12/+56 |
| | | | | | | Replace the REM instruction with UREM, SREM and FREM. llvm-svn: 31369 | ||||
* | Partial update for Release 1.9 | Reid Spencer | 2006-11-01 | 1 | -58/+24 |
| | | | | llvm-svn: 31350 | ||||
* | Use doc_code class. | Devang Patel | 2006-10-27 | 1 | -2/+2 |
| | | | | llvm-svn: 31239 | ||||
* | Document removeModule(). | Devang Patel | 2006-10-27 | 1 | -0/+12 |
| | | | | llvm-svn: 31237 | ||||
* | Document getAlignment() | Devang Patel | 2006-10-27 | 1 | -0/+11 |
| | | | | llvm-svn: 31234 | ||||
* | For PR950: | Reid Spencer | 2006-10-26 | 1 | -12/+58 |
| | | | | | | | | Make necessary changes to support DIV -> [SUF]Div. This changes llvm to have three division instructions: signed, unsigned, floating point. The bytecode and assembler are bacwards compatible, however. llvm-svn: 31195 | ||||
* | For PR950: | Reid Spencer | 2006-10-20 | 2 | -17/+12 |
| | | | | | | | | This patch implements the first increment for the Signless Types feature. All changes pertain to removing the ConstantSInt and ConstantUInt classes in favor of just using ConstantInt. llvm-svn: 31063 | ||||
* | Add LCSSA to the LLVM lexicon. | Owen Anderson | 2006-10-18 | 1 | -0/+3 |
| | | | | llvm-svn: 31032 | ||||
* | clarify | Chris Lattner | 2006-10-15 | 1 | -4/+5 |
| | | | | llvm-svn: 30966 | ||||
* | Document the VAArg, and vector instruction opcodes. | Reid Spencer | 2006-10-15 | 1 | -2/+12 |
| | | | | llvm-svn: 30965 | ||||
* | Clean-up of formatting and spelling. | Bill Wendling | 2006-10-11 | 2 | -41/+41 |
| | | | | llvm-svn: 30885 | ||||
* | Put code example inside of "doc_code" divisions. | Bill Wendling | 2006-10-11 | 2 | -100/+377 |
| | | | | llvm-svn: 30876 | ||||
* | Update documentaion of node annotation (coloring) in viewGraph. | Jim Laskey | 2006-10-02 | 1 | -1/+13 |
| | | | | llvm-svn: 30687 | ||||
* | Provide a gdb usage fix provided by Zhongzing Xu. | Reid Spencer | 2006-09-28 | 1 | -1/+1 |
| | | | | llvm-svn: 30645 | ||||
* | Make the LLVM Publications link point to /pubs/ since this has moved to | Reid Spencer | 2006-09-17 | 1 | -1/+1 |
| | | | | | | its own page on the LLVM web site. llvm-svn: 30447 | ||||
* | 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 | ||||
* | Adding dllimport, dllexport and external weak linkage types. | Anton Korobeynikov | 2006-09-14 | 2 | -6/+44 |
| | | | | | | | | | DLL* linkages got full (I hope) codegeneration support in C & both x86 assembler backends. External weak linkage added for future use, we don't provide any codegeneration, etc. support for it. llvm-svn: 30374 | ||||
* | Document new --enable-valgrind option. | Nick Lewycky | 2006-09-14 | 1 | -0/+6 |
| | | | | llvm-svn: 30313 | ||||
* | Correct the URL to the attrib.incl file. | John Criswell | 2006-09-12 | 1 | -1/+1 |
| | | | | llvm-svn: 30276 | ||||
* | Include the UIUC CS department attribution on the main doxygen page. | John Criswell | 2006-09-11 | 1 | -0/+4 |
| | | | | llvm-svn: 30247 | ||||
* | Missing anchor | Jim Laskey | 2006-09-09 | 1 | -1/+1 |
| | | | | llvm-svn: 30227 | ||||
* | new powi intrinsic | Chris Lattner | 2006-09-08 | 1 | -3/+39 |
| | | | | llvm-svn: 30175 | ||||
* | Warn people not to use GCC 4.1.1. | Chris Lattner | 2006-09-07 | 1 | -0/+3 |
| | | | | llvm-svn: 30147 | ||||
* | *** 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 |