<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in gen-dwarf-cpp.s</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>35a2196b - Fix typo in r361251.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#35a2196b</link>
        <description>Fix typo in r361251.llvm-svn: 361256

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Tue, 21 May 2019 13:23:32 +0000</pubDate>
        <dc:creator>Paul Robinson &lt;paul.robinson@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>0a16ba85 - [DebugInfo] Fix tests missed by r362148</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#0a16ba85</link>
        <description>[DebugInfo] Fix tests missed by r362148llvm-svn: 361251

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Tue, 21 May 2019 12:48:46 +0000</pubDate>
        <dc:creator>Paul Robinson &lt;paul.robinson@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>16c7bdaf - [DebugInfo] Support DWARF v5 source code embedding extension</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#16c7bdaf</link>
        <description>[DebugInfo] Support DWARF v5 source code embedding extensionIn DWARF v5 the Line Number Program Header is extensible, allowing values withnew content types. In this extension a content type is added,DW_LNCT_LLVM_source, which contains the embedded source code of the file.Add new optional attribute for !DIFile IR metadata called source which containssource text. Use this to output the source to the DWARF line table of codeobjects. Analogously extend METADATA_FILE in Bitcode and .file directive in ASMto support optional source.Teach llvm-dwarfdump and llvm-objdump about the new values. Update the outputformat of llvm-dwarfdump to make room for the new attribute on file_namesentries, and support embedded sources for the -source option in llvm-objdump.Differential Revision: https://reviews.llvm.org/D42765llvm-svn: 325970

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Fri, 23 Feb 2018 23:01:06 +0000</pubDate>
        <dc:creator>Scott Linder &lt;scott@scottlinder.com&gt;</dc:creator>
    </item>
<item>
        <title>7b98be2c - Fix regex from r324279 more better.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#7b98be2c</link>
        <description>Fix regex from r324279 more better.llvm-svn: 324298

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Tue, 06 Feb 2018 00:43:26 +0000</pubDate>
        <dc:creator>Paul Robinson &lt;paul.robinson@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>ea27528b - Fix Windows bots for test from r324270.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#ea27528b</link>
        <description>Fix Windows bots for test from r324270.llvm-svn: 324279

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 05 Feb 2018 22:30:00 +0000</pubDate>
        <dc:creator>Paul Robinson &lt;paul.robinson@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>0a22709f - [DWARF] Regularize dumping strings from line tables.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#0a22709f</link>
        <description>[DWARF] Regularize dumping strings from line tables.The major visible difference here is that in line-table dumps,directory and file names are wrapped in double-quotes; previously,directory names got single quotes and file names were not quoted atall.The improvement in this patch is that when a DWARF v5 line tableheader has indirect strings, in a verbose dump these will all havetheir section[offset] printed as well as the name itself.  Thismatches the format used for dumping strings in the .debug_infosection.Differential Revision: https://reviews.llvm.org/D42802llvm-svn: 324270

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 05 Feb 2018 20:43:15 +0000</pubDate>
        <dc:creator>Paul Robinson &lt;paul.robinson@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>7bc1b282 - llvm-dwarfdump: Replace -debug-dump=sect option with individual options.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#7bc1b282</link>
        <description>llvm-dwarfdump: Replace -debug-dump=sect option with individual options.As discussed on llvm-dev inhttp://lists.llvm.org/pipermail/llvm-dev/2017-September/117301.htmlthis changes the command line interface of llvm-dwarfdump to match theone used by the dwarfdump utility shipping on macOS. In addition tobeing shorter to type this format also has the advantage of allowingmore than one section to be specified at the same time.In a nutshell, with this change  $ llvm-dwarfdump --debug-dump=info  $ llvm-dwarfdump --debug-dump=apple-objcbecomes  $ dwarfdump --debug-info --apple-objcDifferential Revision: https://reviews.llvm.org/D37714llvm-svn: 312970

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 11 Sep 2017 22:59:45 +0000</pubDate>
        <dc:creator>Adrian Prantl &lt;aprantl@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>3b3a4d9d - llvm/test/MC/MachO/gen-dwarf-cpp.s: Relax an expression to match DOS pat.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#3b3a4d9d</link>
        <description>llvm/test/MC/MachO/gen-dwarf-cpp.s: Relax an expression to match DOS pat.llvm-svn: 204030

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 17 Mar 2014 05:31:54 +0000</pubDate>
        <dc:creator>NAKAMURA Takumi &lt;geek4civic@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c714ef45 - DebugInfo: Improve reuse of file table entries in asm debug info</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#c714ef45</link>
        <description>DebugInfo: Improve reuse of file table entries in asm debug infoThe previous deduping strategy was woefully inadequate - it onlyconsidered the most recent file used and avoided emitting a duplicate inthat case - never considering the a/b/a scenario.It was also lacking when it came to directory paths as the previousfilename would never match the current if the filename had been splitinto file and directory components.This change builds caching functionality into the line table at thelowest level in an optional form (a file number of 0 indicates that oneshould be chosen and returned) and will eventually be reused by thenormal source level debugging DWARF emission.llvm-svn: 204027

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 17 Mar 2014 01:52:11 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8bef7cd8 - Test case</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#8bef7cd8</link>
        <description>Test casellvm-svn: 204026

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Mon, 17 Mar 2014 01:52:04 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5b5cf503 - Support DWARF discriminators in object streamer.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#5b5cf503</link>
        <description>Support DWARF discriminators in object streamer.Summary:This adds support for emitting DWARF path discriminator values inthe object streamer. It also changes the DWARF dumper to showdiscriminator values in the line table output.Reviewers: echristoCC: llvm-commitsDifferential Revision: http://llvm-reviews.chandlerc.com/D2794llvm-svn: 201427

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Fri, 14 Feb 2014 19:27:53 +0000</pubDate>
        <dc:creator>Diego Novillo &lt;dnovillo@google.com&gt;</dc:creator>
    </item>
<item>
        <title>e6abe832 - Now that llvm-dwarfdump supports flags to specify which DWARF section to dump,</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#e6abe832</link>
        <description>Now that llvm-dwarfdump supports flags to specify which DWARF section to dump,use them in tests that run llvm-dwarfdump. This is in order to make tests asspecific as possible.llvm-svn: 173498

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Fri, 25 Jan 2013 21:44:53 +0000</pubDate>
        <dc:creator>Eli Bendersky &lt;eliben@google.com&gt;</dc:creator>
    </item>
<item>
        <title>4eaf8ef5 - Add support for generating dwarf debugging info with assembly files</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s#4eaf8ef5</link>
        <description>Add support for generating dwarf debugging info with assembly filesrun through the &apos;C&apos; preprocessor.  That is pick up the file nameand line numbers from the cpp hash file line comments for thedwarf file and line numbers tables.rdar://9275556llvm-svn: 167237

            List of files:
            /llvm-project-15.0.7/llvm/test/MC/MachO/gen-dwarf-cpp.s</description>
        <pubDate>Thu, 01 Nov 2012 17:31:35 +0000</pubDate>
        <dc:creator>Kevin Enderby &lt;enderby@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
