summaryrefslogtreecommitdiffstats
path: root/llvm/docs/LangRef.html
Commit message (Collapse)AuthorAgeFilesLines
...
* Tweak the descriptions of the new 'const' and 'pure' attributes.Duncan Sands2007-11-141-7/+7
| | | | llvm-svn: 44132
* Document pure/const parameter attributesAnton Korobeynikov2007-11-141-0/+9
| | | | llvm-svn: 44111
* Add support for vector remainder operations.Dan Gohman2007-11-051-3/+8
| | | | llvm-svn: 43744
* Put correct link in exampleBill Wendling2007-10-221-3/+2
| | | | llvm-svn: 43216
* Don't mention -enable-unsafe-fp-math in LangRef.html, as that option isDan Gohman2007-10-171-9/+3
| | | | | | assumed to globally mutate the spec. llvm-svn: 43078
* Document the new llvm.sin, llvm.cos, and llvm.pow intrinsics. FeedbackDan Gohman2007-10-151-4/+136
| | | | | | is welcome! llvm-svn: 43007
* Fixing a typo. Found by Kevin André!Gordon Henriksen2007-10-141-1/+1
| | | | llvm-svn: 42956
* Clarify that shifts that are too large are undefined.Chris Lattner2007-10-031-3/+19
| | | | llvm-svn: 42588
* remove extraneous tagChris Lattner2007-10-031-1/+1
| | | | llvm-svn: 42581
* remove misleading documentation: LLVM has no atomic support yet.Chris Lattner2007-10-031-302/+1
| | | | llvm-svn: 42580
* Document new sqrt and powi handling.Dale Johannesen2007-10-021-4/+14
| | | | llvm-svn: 42540
* Validation fixesBill Wendling2007-09-221-4/+3
| | | | llvm-svn: 42225
* fix bugs in the manualChris Lattner2007-09-221-10/+2
| | | | llvm-svn: 42221
* Correct names.Tanya Lattner2007-09-221-5/+5
| | | | llvm-svn: 42219
* Fix typo.Tanya Lattner2007-09-221-2/+2
| | | | llvm-svn: 42217
* One last fix to get name correct.Tanya Lattner2007-09-211-1/+1
| | | | llvm-svn: 42216
* Fix silly typo.Tanya Lattner2007-09-211-3/+2
| | | | llvm-svn: 42215
* Update annotation intrinsic with more details.Tanya Lattner2007-09-211-3/+13
| | | | llvm-svn: 42214
* Adding support for __builtin_annotation with an intrinsic called ↵Tanya Lattner2007-09-211-0/+37
| | | | | | llvm.annotation. This is similar to llvm.var.annotation but is applied to expressions. llvm-svn: 42211
* gcroot must take concrete types, not arbitrary types.Chris Lattner2007-09-211-8/+7
| | | | | | clean up intrinsic descriptions in langref a bit. llvm-svn: 42194
* Fold the adjust_trampoline intrinsic intoDuncan Sands2007-09-111-46/+21
| | | | | | | init_trampoline. There is now only one trampoline intrinsic. llvm-svn: 41841
* Fix description of the call instruction. There are two types, with one beingNick Lewycky2007-09-081-9/+15
| | | | | | optional. llvm-svn: 41785
* Implement review feedback on trampoline documentation.Duncan Sands2007-08-221-6/+4
| | | | llvm-svn: 41304
* Describe the global/local naming convention.Reid Spencer2007-08-071-11/+13
| | | | llvm-svn: 40890
* This is the patch to provide clean intrinsic function overloading support in ↵Chandler Carruth2007-08-041-35/+44
| | | | | | | | LLVM. It cleans up the intrinsic definitions and generally smooths the process for more complicated intrinsic writing. It will be used by the upcoming atomic intrinsics as well as vector and float intrinsics in the future. This also changes the syntax for llvm.bswap, llvm.part.set, llvm.part.select, and llvm.ct* intrinsics. They are automatically upgraded by both the LLVM ASM reader and the bitcode reader. The test cases have been updated, with special tests added to ensure the automatic upgrading is supported. llvm-svn: 40807
* fp2uint -> fptouiReid Spencer2007-07-311-8/+8
| | | | llvm-svn: 40633
* Forget to add 'nest' to the list of parameterDuncan Sands2007-07-271-0/+3
| | | | | | attributes. llvm-svn: 40565
* Support for trampolines, except for X86 codegen which isDuncan Sands2007-07-271-0/+105
| | | | | | still under discussion. llvm-svn: 40549
* No longer referencing "shared memory" as this can confuse people. The memory is Chandler Carruth2007-07-201-13/+13
| | | | | | | clearly shared between processors if these instructions are being used, no further specification of what type of memory is necessary. llvm-svn: 40118
* Silly HTMLReid Spencer2007-07-201-1/+3
| | | | llvm-svn: 40117
* Fix validation errors.Reid Spencer2007-07-201-16/+10
| | | | llvm-svn: 40116
* This introduces the atomic operation intrinsics into the documentation. This is Chandler Carruth2007-07-201-0/+305
| | | | | | | a preview for the intrinsics that are going to be implemented over the next few weeks. llvm-svn: 40115
* For PR1553:Reid Spencer2007-07-191-8/+8
| | | | | | | | Change the keywords for the zext and sext parameter attributes to be zeroext and signext so they don't conflict with the keywords for the instructions of the same name. This gets around the ambiguity. llvm-svn: 40069
* Fix the documentation for llvm.sqrt so that sqrt(0) has defined behavior,Dan Gohman2007-07-161-1/+1
| | | | | | which appears to be the intent. llvm-svn: 39922
* remove obsolete noteChris Lattner2007-07-131-5/+0
| | | | llvm-svn: 39825
* fix some bugs in the manualChris Lattner2007-07-131-2/+2
| | | | llvm-svn: 39822
* first pass of nomenclature changes in .html filesGabor Greif2007-07-061-3/+3
| | | | llvm-svn: 37956
* Update docs for llvm.var.annotation intrinsic.Tanya Lattner2007-06-181-3/+4
| | | | llvm-svn: 37635
* Add local var annotation intrinsic.Tanya Lattner2007-06-151-0/+50
| | | | llvm-svn: 37603
* one final bugfixChris Lattner2007-06-121-1/+1
| | | | llvm-svn: 37558
* modernize exampleChris Lattner2007-06-121-5/+5
| | | | llvm-svn: 37557
* wording fix noticed by Ivan NovickChris Lattner2007-06-081-1/+1
| | | | llvm-svn: 37519
* update to match latest changesChris Lattner2007-06-061-3/+3
| | | | llvm-svn: 37474
* Commit first round work of PR1373. "noalias" is now fully supported inZhou Sheng2007-06-051-0/+3
| | | | | | | VMCore, BitCode, and Assembly. Documentation and test case paramattrs.ll updated also. llvm-svn: 37432
* more fixes to C code.Chris Lattner2007-05-291-3/+3
| | | | llvm-svn: 37339
* Fixed some formatting.Bill Wendling2007-05-291-8/+9
| | | | llvm-svn: 37338
* Fix for PR1452. Removed "define" keyword from the C code. Added "<divBill Wendling2007-05-291-45/+85
| | | | | | class="doc_code">" to code examples. llvm-svn: 37335
* remove contradiction owen noticedChris Lattner2007-05-241-7/+2
| | | | llvm-svn: 37327
* Update for arbitrary precision integer types.Reid Spencer2007-05-161-8/+48
| | | | llvm-svn: 37109
* The wrapping behavior of part_set is not desirable. Adjust theReid Spencer2007-05-141-6/+6
| | | | | | documentation to describe the desired behavior. llvm-svn: 37036
OpenPOWER on IntegriCloud