summaryrefslogtreecommitdiffstats
path: root/llvm/docs
Commit message (Collapse)AuthorAgeFilesLines
* Fix PR1005Chris Lattner2006-11-202-2/+2
| | | | llvm-svn: 31881
* Fixed typoTanya Lattner2006-11-201-1/+1
| | | | llvm-svn: 31871
* Adding 1.9 release and removing references to cfrontendTanya Lattner2006-11-201-16/+16
| | | | llvm-svn: 31870
* Changing cfrontend dir to llvm-gcc3.4 as the example.Tanya Lattner2006-11-201-4/+4
| | | | llvm-svn: 31869
* Corrections from review.Reid Spencer2006-11-191-21/+21
| | | | llvm-svn: 31865
* Update a reference to the old setcc instruction.Reid Spencer2006-11-181-1/+1
| | | | llvm-svn: 31860
* For PR950:Reid Spencer2006-11-181-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 Korobeynikov2006-11-181-9/+11
| | | | | | list llvm-svn: 31847
* fix bugChris Lattner2006-11-181-1/+1
| | | | llvm-svn: 31846
* first draft of 1.9 release notesChris Lattner2006-11-181-222/+251
| | | | llvm-svn: 31845
* Cleaned up the document. Added "doc_code" divisions for code examples.Bill Wendling2006-11-161-199/+274
| | | | llvm-svn: 31784
* Add a link to the GEP FAQ.Reid Spencer2006-11-131-2/+2
| | | | llvm-svn: 31698
* Document new constant expr operators, rename bitconvert as bitcast.Reid Spencer2006-11-111-15/+29
| | | | llvm-svn: 31693
* Add a preview of two new conversion operators: ptrtoint and inttoptr. UpdateReid Spencer2006-11-111-4/+79
| | | | | | the defintion of bitconvert correspondingly. llvm-svn: 31688
* Post-review changes on conversion instructions.Reid Spencer2006-11-091-60/+55
| | | | llvm-svn: 31607
* Fix runaway <tt> element and section ordering.Reid Spencer2006-11-091-31/+31
| | | | llvm-svn: 31606
* Remove futurisms that won't be in our future.Reid Spencer2006-11-091-190/+0
| | | | llvm-svn: 31605
* One more time for indentation.Reid Spencer2006-11-091-0/+1
| | | | llvm-svn: 31604
* Fix indentation problem starting at GEP.Reid Spencer2006-11-091-1/+3
| | | | llvm-svn: 31603
* Document correct opcodes for post 1.9 release.Reid Spencer2006-11-081-10/+7
| | | | llvm-svn: 31566
* Update the instruction opcodes for release 1.9Reid Spencer2006-11-081-33/+35
| | | | llvm-svn: 31565
* For PR950:Reid Spencer2006-11-081-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 Spencer2006-11-081-29/+38
| | | | llvm-svn: 31532
* For PR950:Reid Spencer2006-11-081-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 Spencer2006-11-041-0/+5
| | | | llvm-svn: 31440
* For PR950:Reid Spencer2006-11-021-12/+56
| | | | | | Replace the REM instruction with UREM, SREM and FREM. llvm-svn: 31369
* Partial update for Release 1.9Reid Spencer2006-11-011-58/+24
| | | | llvm-svn: 31350
* Use doc_code class.Devang Patel2006-10-271-2/+2
| | | | llvm-svn: 31239
* Document removeModule().Devang Patel2006-10-271-0/+12
| | | | llvm-svn: 31237
* Document getAlignment()Devang Patel2006-10-271-0/+11
| | | | llvm-svn: 31234
* For PR950:Reid Spencer2006-10-261-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 Spencer2006-10-202-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 Anderson2006-10-181-0/+3
| | | | llvm-svn: 31032
* clarifyChris Lattner2006-10-151-4/+5
| | | | llvm-svn: 30966
* Document the VAArg, and vector instruction opcodes.Reid Spencer2006-10-151-2/+12
| | | | llvm-svn: 30965
* Clean-up of formatting and spelling.Bill Wendling2006-10-112-41/+41
| | | | llvm-svn: 30885
* Put code example inside of "doc_code" divisions.Bill Wendling2006-10-112-100/+377
| | | | llvm-svn: 30876
* Update documentaion of node annotation (coloring) in viewGraph.Jim Laskey2006-10-021-1/+13
| | | | llvm-svn: 30687
* Provide a gdb usage fix provided by Zhongzing Xu.Reid Spencer2006-09-281-1/+1
| | | | llvm-svn: 30645
* Make the LLVM Publications link point to /pubs/ since this has moved toReid Spencer2006-09-171-1/+1
| | | | | | its own page on the LLVM web site. llvm-svn: 30447
* Added some eye-candy for Subtarget type checkingAnton Korobeynikov2006-09-171-0/+20
| | | | | | Added X86 StdCall & FastCall calling conventions. Codegen will follow. llvm-svn: 30446
* Adding dllimport, dllexport and external weak linkage types.Anton Korobeynikov2006-09-142-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 Lewycky2006-09-141-0/+6
| | | | llvm-svn: 30313
* Correct the URL to the attrib.incl file.John Criswell2006-09-121-1/+1
| | | | llvm-svn: 30276
* Include the UIUC CS department attribution on the main doxygen page.John Criswell2006-09-111-0/+4
| | | | llvm-svn: 30247
* Missing anchorJim Laskey2006-09-091-1/+1
| | | | llvm-svn: 30227
* new powi intrinsicChris Lattner2006-09-081-3/+39
| | | | llvm-svn: 30175
* Warn people not to use GCC 4.1.1.Chris Lattner2006-09-071-0/+3
| | | | llvm-svn: 30147
* *** empty log message ***Bill Wendling2006-09-071-1/+1
| | | | llvm-svn: 30145
* Fixed my rotten Engrish grammar.Bill Wendling2006-09-071-6/+6
| | | | llvm-svn: 30144
OpenPOWER on IntegriCloud