summaryrefslogtreecommitdiffstats
path: root/llvm/docs/ProgrammersManual.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* [Modules] Move ValueMap to the IR library. While this class does notChandler Carruth2014-03-041-1/+1
| | | | | | | | | | | | directly care about the Value class (it is templated so that the key can be any arbitrary Value subclass), it is in fact concretely tied to the Value class through the ValueHandle's CallbackVH interface which relies on the key type being some Value subclass to establish the value handle chain. Ironically, the unittest is already in the right library. llvm-svn: 202824
* Typos. (Test commit.)Paul Robinson2013-11-141-2/+2
| | | | llvm-svn: 194720
* IR headers moved to llvm/IR some aeons ago, update documentation.Benjamin Kramer2013-07-081-9/+9
| | | | llvm-svn: 185854
* [docs] The STL "binary search" has a non-obvious name.Sean Silva2013-03-291-1/+3
| | | | | | | | | | | | | std::lower_bound is the canonical "binary search" in the STL (std::binary_search generally is not what you want). The name actually makes a lot of sense (and also has a beautiful symmetry with the std::upper_bound algorithm). The name is nonetheless non-obvious. Also, remove mention of "radix search". It's not even clear how that would work in the context of a sorted vector. AFAIK "radix search" only makes sense when you have a trie-like data structure. llvm-svn: 178376
* [docs] Slight reword for precision.Sean Silva2013-03-221-1/+1
| | | | | | | | The new wording cannot be construed as suggesting the use of SmallVectorImpl<T> as e.g. a class member (just because the class happens to be in an interface). llvm-svn: 177778
* [docs] Document usage of SmallVectorImpl in interfaces.Sean Silva2013-03-221-0/+27
| | | | llvm-svn: 177775
* Docs for SparseMultiSetMichael Ilseman2013-01-211-0/+16
| | | | llvm-svn: 173092
* Documentation: replace some non-ASCII characters by equivalent markupDmitri Gribenko2013-01-191-4/+4
| | | | llvm-svn: 172917
* docs: Fix long standing linking antipattern.Sean Silva2013-01-111-4/+4
| | | | | | | | | Before we learned about :doc:, we used :ref: and put a dummy link at the top of each page. Don't do that anymore. This fixes PR14891 as a special case. llvm-svn: 172162
* remove the rest of the "written by" lines in the documentation. It isChris Lattner2013-01-101-8/+1
| | | | | | | against the developer policy to include this sort of thing as SVN blame already captures this in a far more fine-grained way. llvm-svn: 172109
* docs: Fix broken link.Sean Silva2012-12-041-1/+2
| | | | llvm-svn: 169211
* docs: Fix dead link.Sean Silva2012-12-041-2/+2
| | | | | | | Apparently Dinkumware are no longer hosting their nice reference manuals. Thankfully, `cppreference.com` can fill that role well. llvm-svn: 169210
* docs: Convert ProgrammersManual to reST.Sean Silva2012-12-041-0/+3165
Patch by Alexander Zinenko! llvm-svn: 169208
OpenPOWER on IntegriCloud