<?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 PrettyExternalSymbolDumper.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>75112133 - [llvm-pdbutil] Move InputFile/FormatUtil/LinePrinter to PDB library.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#75112133</link>
        <description>[llvm-pdbutil] Move InputFile/FormatUtil/LinePrinter to PDB library.At Sony we are developing llvm-dvahttps://lists.llvm.org/pipermail/llvm-dev/2020-August/144174.htmlFor its PDB support, it requires functionality already present inllvm-pdbutil.We intend to move that functionaly into the PDB library to beshared by both tools. That change will be done in 2 steps, thatwill be submitted as 2 patches:(1) Replace &apos;ExitOnError&apos; with explicit error handling.(2) Move the intended shared code to the PDB library.Patch for step (1): https://reviews.llvm.org/D121801This patch is for step (2).Move InputFile.cpp[h], FormatUtil.cpp[h] and LinePrinter.cpp[h]files to the debug PDB library.It exposes the following functionality that can be used by tools:- Open a PDB file.- Get module debug stream.- Traverse module sections.- Traverse module subsections.Most of the needed functionality is in InputFile, but there aredependencies from LinePrinter and FormatUtil.Some other functionality is in the following functions inDumpOutputStyle.cpp file:- iterateModuleSubsections- getModuleDebugStream- iterateOneModule- iterateSymbolGroups- iterateModuleSubsectionsOnly these specific functions from DumpOutputStyle are moved tothe PDB library.Reviewed By: aganea, dblaikie, rnkDifferential Revision: https://reviews.llvm.org/D122226

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Thu, 24 Mar 2022 16:33:08 +0000</pubDate>
        <dc:creator>Carlos Alberto Enciso &lt;carlos.alberto.enciso@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>eb4c8608 - Cleanup llvm/DebugInfo/PDB headers</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#eb4c8608</link>
        <description>Cleanup llvm/DebugInfo/PDB headersaccumulated preprocessed size:before: 1065515095after: 1065629059Discourse thread: https://discourse.llvm.org/t/include-what-you-use-include-cleanupDifferential Revision: https://reviews.llvm.org/D120195

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Sat, 19 Feb 2022 23:03:20 +0000</pubDate>
        <dc:creator>serge-sans-paille &lt;sguelton@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>2946cd70 - Update the file headers across all of the LLVM projects in the monorepo</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#2946cd70</link>
        <description>Update the file headers across all of the LLVM projects in the monorepoto reflect the new license.We understand that people may be surprised that we&apos;re moving the headerentirely to discuss the new license. We checked this carefully with theFoundation&apos;s lawyer and we believe this is the correct approach.Essentially, all code in the project is now made available by the LLVMproject under our new license, so you will see that the license headersinclude that license only. Some of our contributors have contributedcode under our old license, and accordingly, we have retained a copy ofour old license notice in the top-level files in each project andrepository.llvm-svn: 351636

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Sat, 19 Jan 2019 08:50:56 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>648bebdc - [PDB] One more fix for hasing GSI records.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#648bebdc</link>
        <description>[PDB] One more fix for hasing GSI records.The reference implementation uses a case-insensitive stringcomparison for strings of equal length.  This will cause thestring &quot;tEo&quot; to compare less than &quot;VUo&quot;.  However we were usinga case sensitive comparison, which would generate the oppositeoutcome.  Switch to a case insensitive comparison.  Also, whenone of the strings contains non-ascii characters, fallback toa straight memcmp.The only way to really test this is with a DIA test.  Before thispatch, the test will fail (but succeed if link.exe is used insteadof lld-link).  After the patch, it succeeds even with lld-link.llvm-svn: 336464

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Fri, 06 Jul 2018 21:01:42 +0000</pubDate>
        <dc:creator>Zachary Turner &lt;zturner@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a27b5e93 - [llvm-pdbdump] Add guard for null pointers and remove unused code</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#a27b5e93</link>
        <description>[llvm-pdbdump] Add guard for null pointers and remove unused codeSummary: This avoids crashing when a user tries to dump a pdb with the `-native` option.Reviewers: zturner, llvm-commits, rnkReviewed By: zturnerSubscribers: mgrangDifferential Revision: https://reviews.llvm.org/D44117llvm-svn: 326863

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Wed, 07 Mar 2018 02:23:08 +0000</pubDate>
        <dc:creator>Aaron Smith &lt;aaron.smith@microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>bd336e44 - Rename llvm-pdbdump -&gt; llvm-pdbutil.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp#bd336e44</link>
        <description>Rename llvm-pdbdump -&gt; llvm-pdbutil.This is to reflect the evolving nature of the tool as beinguseful for more than just dumping PDBs, as it can do many otherthings.Differential Revision: https://reviews.llvm.org/D34062llvm-svn: 305106

            List of files:
            /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp</description>
        <pubDate>Fri, 09 Jun 2017 20:46:17 +0000</pubDate>
        <dc:creator>Zachary Turner &lt;zturner@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
