summaryrefslogtreecommitdiffstats
path: root/llvm/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Add a Briggs and Torczon sparse set implementation.Jakob Stoklund Olesen2012-02-221-0/+19
| | | | | | | | | | | For objects that can be identified by small unsigned keys, SparseSet provides constant time clear() and fast deterministic iteration. Insert, erase, and find operations are typically faster than hash tables. SparseSet is useful for keeping information about physical registers, virtual registers, or numbered basic blocks. llvm-svn: 151110
* Fix documentation.Chad Rosier2012-02-181-5/+5
| | | | llvm-svn: 150860
* Note x86 regmask operands in release notes.Jakob Stoklund Olesen2012-02-161-1/+3
| | | | llvm-svn: 150712
* Add blurb about module flags and reformat a bit.Bill Wendling2012-02-161-21/+24
| | | | llvm-svn: 150677
* Give a description of the Objective-C garbage collection module flags.Bill Wendling2012-02-161-0/+73
| | | | | | | | | | | | | The rule governing the flags is this: no-gc + no-gc = no-gc no-gc + gc = no-gc no-gc + gc-only = error gc + gc = gc gc + gc-only = gc-only gc-only + gc-only = gc-only llvm-svn: 150646
* utils: Kill NewNightlyTest.pl, which has been replaced by LNT (as far as I ↵Daniel Dunbar2012-02-151-7/+1
| | | | | | know). llvm-svn: 150610
* Document the new module flags.Bill Wendling2012-02-111-0/+126
| | | | llvm-svn: 150301
* Added description of invariant.load metadata to LangRef. It was added to ↵Pete Cooper2012-02-101-1/+9
| | | | | | the compiler in r144100 llvm-svn: 150257
* update --enable-targets listJia Liu2012-02-101-1/+1
| | | | llvm-svn: 150229
* Now subprogram descriptors are not collected by llvm.dbg.sp NamedMDNode. ↵Devang Patel2012-02-091-2/+0
| | | | | | Update document to reflect this change. llvm-svn: 150187
* fix broken linkChris Lattner2012-02-081-1/+1
| | | | llvm-svn: 150105
* No actual functional change here, just some clarifications:Chris Lattner2012-02-081-14/+26
| | | | | | | | | | | Clarify that contributors are agreeing to license their code under the license corresponding to the subproject that they are contributing to, as requested by a potential contributor. Also, as a drive-by, update the llvm-gcc/GPL section to mention dragonegg and say that GPL code is all in its own repo's. llvm-svn: 150065
* add an explicit section on static constructors.Chris Lattner2012-02-081-16/+50
| | | | llvm-svn: 150037
* Rephrase to add clarity.Bill Wendling2012-02-071-3/+3
| | | | llvm-svn: 149972
* Document the 'unwind' removal.Bill Wendling2012-02-061-1/+4
| | | | llvm-svn: 149914
OpenPOWER on IntegriCloud