aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Add idea about a disassembler.Misha Brukman2004-04-161-0/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12993 91177308-0d34-0410-b5e6-96231b3b80d8
* * Fix capitalization of PICkMisha Brukman2004-04-161-11/+11
| | | | | | | * Wrap long lines to 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12988 91177308-0d34-0410-b5e6-96231b3b80d8
* Add note about easier way to debug tests in the llvm tree.Misha Brukman2004-04-151-0/+10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12972 91177308-0d34-0410-b5e6-96231b3b80d8
* Add note about passing arguments to program being debugged.Misha Brukman2004-04-152-35/+44
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12970 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed obsolete doxygen options (they were blank anyway).Misha Brukman2004-04-152-70/+0
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12965 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a noteChris Lattner2004-04-131-0/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12922 91177308-0d34-0410-b5e6-96231b3b80d8
* Add notes about some of the code quality improvements that have gone inChris Lattner2004-04-131-2/+26
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12887 91177308-0d34-0410-b5e6-96231b3b80d8
* Corrected the descriptions of the llvm.writeport and llvm.writeioJohn Criswell2004-04-121-28/+31
| | | | | | | | | | | | | | | intrinsics. Modified llvm.readio and llvm.writeio to use pointers to memory instead of integers. This should take care of problems such as different pointer sizes, casting integers to pointers, weird architectural pointer types, etc. Re-worded the description of llvm.readio and llvm.writeio so that it should be more clear as to why they should be used over regular loads/stores for I/O. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12867 91177308-0d34-0410-b5e6-96231b3b80d8
* Added initial design for the llvm.readio and llvm.writeio intrinsics.John Criswell2004-04-121-0/+96
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12864 91177308-0d34-0410-b5e6-96231b3b80d8
* Add noteChris Lattner2004-04-101-0/+5
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12809 91177308-0d34-0410-b5e6-96231b3b80d8
* Expand on adding an intrinsic. Move section to before adding an instructionChris Lattner2004-04-091-26/+40
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12796 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed some spelling.John Criswell2004-04-091-4/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12790 91177308-0d34-0410-b5e6-96231b3b80d8
* Modified the prototypes of the llvm.readport and llvm.writeport intrinsicsJohn Criswell2004-04-091-28/+35
| | | | | | | | | | so that they do not specify specific integer sizes (as those are constrained by the code generator, not the intrinsic itself). Also put these intrinsics into their own "Operating System" section. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12789 91177308-0d34-0410-b5e6-96231b3b80d8
* Added the llvm.readport and llvm.writeport intrinsics.John Criswell2004-04-091-0/+91
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12788 91177308-0d34-0410-b5e6-96231b3b80d8
* We have a global reg. allocator now -- thanks to Alkis.Brian Gaeke2004-04-071-3/+7
| | | | | | | | Fix a typo. Add a project I've always thought would be cool. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12747 91177308-0d34-0410-b5e6-96231b3b80d8
* Bugs fixed new features implementedChris Lattner2004-04-061-0/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12716 91177308-0d34-0410-b5e6-96231b3b80d8
* Document new optionChris Lattner2004-04-061-1/+10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12699 91177308-0d34-0410-b5e6-96231b3b80d8
* Update docs a bitChris Lattner2004-04-061-10/+12
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12695 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove some options that don't really have anything to do with bugpointChris Lattner2004-04-061-10/+0
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12694 91177308-0d34-0410-b5e6-96231b3b80d8
* * Added link to newly written ExtendingLLVM.html documentMisha Brukman2004-04-061-34/+29
| | | | | | | * Eliminated extraneous space in the HTML git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12691 91177308-0d34-0410-b5e6-96231b3b80d8
* Incorporated Chris' comments.Misha Brukman2004-04-061-7/+9
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12690 91177308-0d34-0410-b5e6-96231b3b80d8
* Added notes on extending LLVM with new instructions, intrinsics, types, etc.Misha Brukman2004-04-062-0/+214
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12689 91177308-0d34-0410-b5e6-96231b3b80d8
* PR82 is finally fixed!Chris Lattner2004-04-051-5/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12656 91177308-0d34-0410-b5e6-96231b3b80d8
* Update getelementptr instruction descriptionChris Lattner2004-04-051-38/+83
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12654 91177308-0d34-0410-b5e6-96231b3b80d8
* PR305 is now fixedChris Lattner2004-04-051-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12649 91177308-0d34-0410-b5e6-96231b3b80d8
* Bug fixedChris Lattner2004-04-011-0/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12598 91177308-0d34-0410-b5e6-96231b3b80d8
* Bug fixedChris Lattner2004-04-011-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12593 91177308-0d34-0410-b5e6-96231b3b80d8
* Clear out all of the changes. Reset version numbers to 1.3Chris Lattner2004-04-011-118/+15
| | | | | | | add note about select git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12584 91177308-0d34-0410-b5e6-96231b3b80d8
* Merged in RELEASE_12.John Criswell2004-03-296-26/+69
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12532 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a faq entryChris Lattner2004-03-291-0/+39
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12529 91177308-0d34-0410-b5e6-96231b3b80d8
* Add note about setting up linux systems to directly execute LLVM bytecode filesChris Lattner2004-03-251-4/+34
| | | | | | | Fixes PR303 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12516 91177308-0d34-0410-b5e6-96231b3b80d8
* Add a dose of reality into the release notesChris Lattner2004-03-191-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12510 91177308-0d34-0410-b5e6-96231b3b80d8
* Perhaps the last bugfix before the release? HOPEFULLY! :)Chris Lattner2004-03-191-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12505 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix a minor wording bug in the manualChris Lattner2004-03-181-1/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12496 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix a tag-oChris Lattner2004-03-171-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12477 91177308-0d34-0410-b5e6-96231b3b80d8
* Rewrite the second on AnalysisUsage usage. This documents the newChris Lattner2004-03-171-73/+118
| | | | | | | | | addRequiredTransitive member that Misha added, and explains the whole concept a lot better. Also, the document used incorrect "subsubsection" tags instead of "doc_subsubsection" which this fixes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12474 91177308-0d34-0410-b5e6-96231b3b80d8
* update release notes for 1.2Chris Lattner2004-03-171-9/+16
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12467 91177308-0d34-0410-b5e6-96231b3b80d8
* Bug fixedChris Lattner2004-03-161-0/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12449 91177308-0d34-0410-b5e6-96231b3b80d8
* Bug not fixed after allChris Lattner2004-03-161-1/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12446 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix bug in bug name. It must be the painkillers that I haven't been takingChris Lattner2004-03-161-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12440 91177308-0d34-0410-b5e6-96231b3b80d8
* Implement a new feature in the CFE, moving a GCC extension from the unsupportedChris Lattner2004-03-161-1/+4
| | | | | | | to the supported list git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12439 91177308-0d34-0410-b5e6-96231b3b80d8
* boog fixedChris Lattner2004-03-161-0/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12436 91177308-0d34-0410-b5e6-96231b3b80d8
* Bug fixedChris Lattner2004-03-161-0/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12432 91177308-0d34-0410-b5e6-96231b3b80d8
* Document stuff that is known to be brokenChris Lattner2004-03-141-4/+26
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12366 91177308-0d34-0410-b5e6-96231b3b80d8
* Option no moreChris Lattner2004-03-131-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12360 91177308-0d34-0410-b5e6-96231b3b80d8
* Performed some updates on the new options to these command line tools.John Criswell2004-03-128-20/+73
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12350 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed grammar typo.John Criswell2004-03-121-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12345 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed grammar typo.John Criswell2004-03-121-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12343 91177308-0d34-0410-b5e6-96231b3b80d8
* Added minor information on C++.John Criswell2004-03-121-3/+5
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12341 91177308-0d34-0410-b5e6-96231b3b80d8
* Updated to LLVM 1.2.John Criswell2004-03-121-14/+37
| | | | | | | | | Added information on getting the LLVM GCC front end from CVS. Added new configure script options. Made other minor corrections and modifications. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12340 91177308-0d34-0410-b5e6-96231b3b80d8