summaryrefslogtreecommitdiffstats
path: root/llvm/docs
Commit message (Collapse)AuthorAgeFilesLines
* Support for Hexagon backend.Tony Linthicum2012-04-131-0/+2
| | | | llvm-svn: 154692
* Add DFA generator for VLIW targets to ReleaseNotes.html and CREDITS.TXT.Anshuman Dasgupta2012-04-121-0/+6
| | | | llvm-svn: 154590
* Express the number of ULPs in fpaccuracy metadata as a real rather than aDuncan Sands2012-04-101-4/+4
| | | | | | rational number, eg as 2.5 rather than 5, 2. OK'd by Peter Collingbourne. llvm-svn: 154387
* Clarify that fpaccuracy metadata is giving the compiler permission to use aDuncan Sands2012-04-091-2/+4
| | | | | | less accurate method. llvm-svn: 154319
* Formatting changes. Don't put spaces in front of some code, which only makes ↵Bill Wendling2012-04-081-70/+68
| | | | | | it look 'off'. llvm-svn: 154282
* Target/X86/MCTargetDesc/X86MCAsmInfo.cpp: Enable DwarfCFI (aka DW2) on Cygming.NAKAMURA Takumi2012-04-071-0/+1
| | | | | | | Cygwin-1.7 supports dw2. Some recent mingw distros support one, too. I have confirmed test-suite/SingleSource/Benchmarks/Shootout-C++/except.cpp can pass on Cygwin. llvm-svn: 154247
* Add a line number for the scope of the function (starting at the firstEric Christopher2012-04-031-0/+1
| | | | | | | | | | brace) so that we get more accurate line number information about the declaration of a given function and the line where the function first starts. Part of rdar://11026482 llvm-svn: 153916
* Drop O4 from the llc manpage, it was removed in r70445.Benjamin Kramer2012-03-291-1/+1
| | | | llvm-svn: 153684
* llvm/docs/*.html: Fix markups.NAKAMURA Takumi2012-03-2713-22/+52
| | | | llvm-svn: 153508
* docs/lit: Add some notes on the lit test run output format.Daniel Dunbar2012-03-261-0/+47
| | | | llvm-svn: 153450
* Update documentation for old api changes.Eric Christopher2012-03-261-33/+70
| | | | | | Fixes PR12050 llvm-svn: 153424
* s/restrict/describe/Rafael Espindola2012-03-251-1/+1
| | | | | | Thanks Duncan. llvm-svn: 153411
* Continue cleanup of LIT, getting rid of the remaining artifacts from dejagnuEli Bendersky2012-03-251-0/+3
| | | | | | | | | | | | | | * Removed test/lib/llvm.exp - it is no longer needed * Deleted the dg.exp reading code from test/lit.cfg. There are no dg.exp files left in the test suite so this code is no longer required. test/lit.cfg is now much shorter and clearer * Removed a lot of duplicate code in lit.local.cfg files that need access to the root configuration, by adding a "root" attribute to the TestingConfig object. This attribute is dynamically computed to provide the same information as was previously provided by the custom getRoot functions. * Documented the config.root attribute in docs/CommandGuide/lit.pod llvm-svn: 153408
* Add a small release not about the range metadata.Rafael Espindola2012-03-241-0/+2
| | | | llvm-svn: 153391
* First part of PR12251. Add documentation and verifier support for the rangeRafael Espindola2012-03-241-0/+34
| | | | | | metadata. llvm-svn: 153359
* Remove the C backend.Eric Christopher2012-03-232-14/+1
| | | | llvm-svn: 153307
* Explicitly close optionally closed <li> tags.Nick Lewycky2012-03-231-25/+25
| | | | llvm-svn: 153296
* Add a release note for r145714.Nick Lewycky2012-03-211-0/+31
| | | | llvm-svn: 153224
* This clause (although matching parts of the implementation) can't be correct.Nick Lewycky2012-03-181-2/+1
| | | | | | Thanks to Eli for noticing the discrepancy. llvm-svn: 153011
* clarify the coding standards a bit.Chris Lattner2012-03-161-32/+32
| | | | llvm-svn: 152957
* docs: Update TestingGuide to change recommended practice to using LNT to driveDaniel Dunbar2012-03-152-327/+405
| | | | | | the test-suite. llvm-svn: 152860
* Some typos in lit command guideEli Bendersky2012-03-141-4/+4
| | | | llvm-svn: 152712
* Update the "hello world" example to resemble what we currently output.Bill Wendling2012-03-141-15/+15
| | | | | | Also do some minor reformatting. llvm-svn: 152707
* Typo in lit command guideEli Bendersky2012-03-141-1/+1
| | | | llvm-svn: 152702
* Add profiling support for Intel Parallel Amplifier XE (VTune) for JITted ↵Eli Bendersky2012-03-131-0/+13
| | | | | | | | | | | code in LLVM. Also refactor the existing OProfile profiling code to reuse the same interfaces with the VTune profiling code. In addition, unit tests for the profiling interfaces were added. This patch was prepared by Andrew Kaylor and Daniel Malea, and reviewed in the llvm-commits list by Jim Grosbach llvm-svn: 152620
* Add column width.Bill Wendling2012-03-061-0/+1
| | | | llvm-svn: 152115
* Remove short tag marker.Bill Wendling2012-03-061-7/+7
| | | | llvm-svn: 152114
* Appease the HTML validation gods.Bill Wendling2012-03-061-33/+40
| | | | llvm-svn: 152113
* Fix validation errors.Bill Wendling2012-03-061-17/+18
| | | | llvm-svn: 152112
* Fix validation errors.Bill Wendling2012-03-061-16/+24
| | | | llvm-svn: 152111
* Add missing end tags.Bill Wendling2012-03-061-48/+68
| | | | llvm-svn: 152110
* Fix up link and a couple small edits.Eric Christopher2012-03-061-3/+3
| | | | llvm-svn: 152094
* Add the beginnings of documentation for the Name Accelerator Tables.Eric Christopher2012-03-061-1/+663
| | | | | | | | Based on a writeup originally by Greg Clayton. Abuse div and pre tags horribly. Needs a bit more cleanup. llvm-svn: 152093
* Delete trailing whitespace to clean up.Eric Christopher2012-03-061-99/+99
| | | | llvm-svn: 152092
* llvm/docs/GarbageCollection.html: Prune utf8 BOM.NAKAMURA Takumi2012-03-031-1/+1
| | | | llvm-svn: 151968
* add llvm.gcroot into GarbageCollection.html, patch bylost lostfreeman@gmail.com.Jia Liu2012-03-021-3/+6
| | | | llvm-svn: 151908
* rplace Alpha with ARM in docs/WritingAnLLVMBackend.html, patch by chenwjJia Liu2012-03-011-1/+1
| | | | llvm-svn: 151811
* Where the alloca'd space actually lives in ram is undefined, and attempting toNick Lewycky2012-02-291-1/+6
| | | | | | pin it down is undefined behaviour. llvm-svn: 151710
* Update tblgen command guide. Remove unused tblgen InstrEnumEmitter files.Craig Topper2012-02-271-14/+38
| | | | llvm-svn: 151513
* Remove more GCC FE build stuff.Chad Rosier2012-02-263-49/+6
| | | | llvm-svn: 151507
* Installing the GCC front end is no longer supported.Chad Rosier2012-02-261-94/+0
| | | | llvm-svn: 151506
* Cleanup the LLVM Getting Started page.Chad Rosier2012-02-261-54/+64
| | | | llvm-svn: 151505
* Add href to clang in overview.Chad Rosier2012-02-261-3/+4
| | | | llvm-svn: 151503
* Remove references to llvm-gcc from overview and tutorial.Chad Rosier2012-02-261-26/+13
| | | | llvm-svn: 151502
* Add a random .LL file generator to stress-test different llvm components.Nadav Rotem2012-02-263-1/+71
| | | | llvm-svn: 151479
* Release not for ARM integrated assembler support.Jim Grosbach2012-02-231-1/+21
| | | | llvm-svn: 151308
* Typo.Chad Rosier2012-02-231-1/+1
| | | | llvm-svn: 151302
* The LLVM Getting Started documentation is out of date. It would be nice ifChad Rosier2012-02-231-0/+6
| | | | | | | someone could update this, but for now at least reference the Clang Getting Started document, which is much more current. llvm-svn: 151285
* libclc is now dual licensed, Tobias and Peter own their respective subprojects.Chris Lattner2012-02-221-1/+5
| | | | llvm-svn: 151186
* Add Foreach LoopDavid Greene2012-02-221-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add some data structures to represent for loops. These will be referenced during object processing to do any needed iteration and instantiation. Add foreach keyword support to the lexer. Add a mode to indicate that we're parsing a foreach loop. This allows the value parser to early-out when processing the foreach value list. Add a routine to parse foreach iteration declarations. This is separate from ParseDeclaration because the type of the named value (the iterator) doesn't match the type of the initializer value (the value list). It also needs to add two values to the foreach record: the iterator and the value list. Add parsing support for foreach. Add the code to process foreach loops and create defs based on iterator values. Allow foreach loops to be matched at the top level. When parsing an IDValue check if it is a foreach loop iterator for one of the active loops. If so, return a VarInit for it. Add Emacs keyword support for foreach. Add VIM keyword support for foreach. Add tests to check foreach operation. Add TableGen documentation for foreach. Support foreach with multiple objects. Support non-braced foreach body with one object. Do not require types for the foreach declaration. Assume the iterator type from the iteration list element type. llvm-svn: 151164
OpenPOWER on IntegriCloud