summaryrefslogtreecommitdiffstats
path: root/llvm/docs/SourceLevelDebugging.html
Commit message (Collapse)AuthorAgeFilesLines
* Documentation: convert SourceLevelDebugging.html to reSTDmitri Gribenko2012-11-221-2858/+0
| | | | llvm-svn: 168493
* Fix typo in docs.Eric Christopher2012-10-081-3/+3
| | | | llvm-svn: 165464
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-021-1/+1
| | | | llvm-svn: 157885
* [docs] Remove spurious or unused images.Daniel Dunbar2012-04-201-4/+0
| | | | llvm-svn: 155199
* [docs] Update HTML pages to refer to CSS in a way that works locally and ↵Daniel Dunbar2012-04-191-1/+1
| | | | | | with Sphinx. llvm-svn: 155153
* 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
* llvm/docs/*.html: Fix markups.NAKAMURA Takumi2012-03-271-2/+2
| | | | llvm-svn: 153508
* Update documentation for old api changes.Eric Christopher2012-03-261-33/+70
| | | | | | Fixes PR12050 llvm-svn: 153424
* 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
* 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
* Fix documentation.Chad Rosier2012-02-181-5/+5
| | | | llvm-svn: 150860
* 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
* Update docs describing objective-c property encoding. This includes support ↵Devang Patel2012-02-061-36/+126
| | | | | | for properties that are not backed by an ivar. llvm-svn: 149879
* Fix typo.Eric Christopher2012-01-031-1/+1
| | | | llvm-svn: 147456
* Fix spacing.Eric Christopher2011-12-161-3/+3
| | | | llvm-svn: 146782
* Update documentation.Eric Christopher2011-12-161-0/+1
| | | | llvm-svn: 146781
* Clarify and fix subprogram description.Devang Patel2011-12-161-1/+1
| | | | llvm-svn: 146743
* Merge ObjCPropertyDebugInfo.html into SourceLevelDebugging.htmlDevang Patel2011-11-151-0/+224
| | | | llvm-svn: 144724
* Add a new wrapper node for a DILexicalBlock that encapsulates it and aEric Christopher2011-10-111-1/+14
| | | | | | | | | | | | | file. Since it should only be used when necessary propagate it through the backend code generation and tweak testcases accordingly. This helps with code like in clang's test/CodeGen/debug-info-line.c where we have multiple #line directives within a single lexical block and want to generate only a single block that contains each file change. Part of rdar://10246360 llvm-svn: 141729
* Update docs to reflect recent addition of new CompileUnit elements.Devang Patel2011-09-091-1/+6
| | | | llvm-svn: 139374
* Do not use named md nodes to track variables that are completely optimized. ↵Devang Patel2011-08-191-0/+1
| | | | | | This does not scale while doing LTO with debug info. New approach is to include list of variables in the subprogram info directly. llvm-svn: 138145
* Until now all debug info MDNodes referred to a root MDNode, a compile unit. ↵Devang Patel2011-08-161-8/+7
| | | | | | | | This simplified handling of these needs in dwarf writer. However, one side effect of this is that during link time optimization all these MDNodes are _not_ uniqued. In other words there will be N number of MDNodes describing "int", "char" and all other types, which would suddenly grow when each object file starts using libraries like STL. MDNodes graph structure such that compiler unit keeps track of important MDNodes and update dwarf writer to process mdnodes top-down instead of bottom up. llvm-svn: 137778
* Update document listing DIVariable elements to reflect recent changes.Devang Patel2011-07-271-1/+3
| | | | llvm-svn: 136228
* 80 columns.Nick Lewycky2011-07-251-2/+2
| | | | llvm-svn: 135972
* Revert "Update docs to reflect r135457."Bob Wilson2011-07-191-3/+1
| | | | | | This reverts commit ba034c0a2e71303c7cf3f43ca8e69dc8436b32e2. llvm-svn: 135485
* Update docs to reflect r135457.Devang Patel2011-07-191-1/+3
| | | | llvm-svn: 135458
* Fix html formatting.Devang Patel2011-05-311-1/+1
| | | | llvm-svn: 132345
* Clarify documentation and remove guarantees that are not fulfilled.Devang Patel2011-05-311-9/+2
| | | | llvm-svn: 132344
* Use llvm.dbg.cu named metadata to collect compile units.Devang Patel2011-05-031-1/+3
| | | | llvm-svn: 130756
* docs: Introduce cascading style <div> and <p> continued on <h[2-5]>.NAKAMURA Takumi2011-04-231-52/+52
| | | | | | | | | | | | | | | | | <h2>Section Example</h2> <div> <!-- h2+div is applied --> <p>Section preamble.</p> <h3>Subsection Example</h3> <p> <!-- h3+p is applied --> Subsection body </p> <!-- End of section body --> </div> FIXME: Care H5 better. llvm-svn: 130040
* Let front-end tie subprogram declaration with subprogram definition directly.Devang Patel2011-04-221-7/+8
| | | | llvm-svn: 130028
* docs: Use <Hn> as Heading elements instead of <DIV class="doc_foo">.NAKAMURA Takumi2011-04-181-80/+80
| | | | | | | | | H1 ... doc_title H2 ... doc_section H3 ... doc_subsection H4 ... doc_subsubsection llvm-svn: 129736
* Introduce support to encode Objective-C property information in debugging ↵Devang Patel2011-04-161-1/+6
| | | | | | information generated for an interface. llvm-svn: 129624
* docs/*.html: Make W3C HTML 4.01 Strict more compliant.NAKAMURA Takumi2011-04-091-1/+1
| | | | | FIXME: The logo handling in ReleaseNotes.html llvm-svn: 129208
* docs: Canonicalize URLs.NAKAMURA Takumi2011-04-091-1/+1
| | | | llvm-svn: 129181
* Simplify array bound checks and clarify comments. One element array can ↵Devang Patel2011-04-081-1/+2
| | | | | | have same non-zero number as lower bound as well as upper bound. llvm-svn: 129170
* Do not emit DW_AT_upper_bound and DW_AT_lower_bound for unbouded array.Devang Patel2011-04-081-1/+1
| | | | | | | | If lower bound is more then upper bound then consider it is an unbounded array. An array is unbounded if non-zero lower bound is same as upper bound. If lower bound and upper bound are zero than array has one element. llvm-svn: 129156
* Add support to encode function's template parameters.Devang Patel2011-04-051-1/+9
| | | | llvm-svn: 128947
* Document llvm.dbg.sp, llvm.dbg.gv and llvm.dbg.enumDevang Patel2011-03-291-3/+8
| | | | llvm-svn: 128466
* Since last couple of days, argument number is encoded using 8 bits from line ↵Devang Patel2011-03-081-1/+2
| | | | | | number field in argument's debug info. llvm-svn: 127250
* Update DILexicalBlock doc to mention new fields.Devang Patel2011-03-081-1/+3
| | | | llvm-svn: 127249
* Update docs to match reality.Devang Patel2011-02-031-10/+9
| | | | llvm-svn: 124761
* Remove stale references of obsolete @llvm.dbg.variable.Devang Patel2011-02-011-8/+3
| | | | llvm-svn: 124664
* finish a sentence.Chris Lattner2011-01-181-1/+1
| | | | llvm-svn: 123750
* Fix lexical block's tag number.Devang Patel2010-10-041-1/+1
| | | | llvm-svn: 115516
OpenPOWER on IntegriCloud