<?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 showRegionMarkers.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>2963c490 - [llvm-cov] Delete custom JSON serialization code (NFC)</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#2963c490</link>
        <description>[llvm-cov] Delete custom JSON serialization code (NFC)Teach llvm-cov to use the new llvm JSON library, and remove someredundant/brittle JSON serialization tests.llvm-svn: 342088

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Wed, 12 Sep 2018 21:59:38 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>7d642b76 - [llvm-cov] Fix a -path-equivalence bug in a test</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#7d642b76</link>
        <description>[llvm-cov] Fix a -path-equivalence bug in a testllvm-svn: 317763

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Thu, 09 Nov 2017 02:42:34 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>9cbd33fe - [llvm-cov] Suppress sub-line highlights in simple cases</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#9cbd33fe</link>
        <description>[llvm-cov] Suppress sub-line highlights in simple casesllvm-cov tends to highlight too many regions because its policy is tohighlight all region entry segments. This can look confusing to users:not all region entry segments are interesting and deserve highlighting.Emitting these highlights only when the region count differs from theline count is a more user-friendly policy.llvm-svn: 316109

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Wed, 18 Oct 2017 18:52:29 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>933b37f9 - [llvm-cov] Unify region marker placement between text/html modes</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#933b37f9</link>
        <description>[llvm-cov] Unify region marker placement between text/html modesMake sure that the text and html emitters always emit the same set ofregion markers, and avoid emitting redundant markers for line segmentswhich don&apos;t end on the line they start on.This is related to D35925, and depends on D36014Differential Revision: https://reviews.llvm.org/D36020llvm-svn: 312813

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Fri, 08 Sep 2017 18:44:46 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>9edfeac9 - [llvm-cov] Add an option which maps the location of source directories on another machine to your local copies</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#9edfeac9</link>
        <description>[llvm-cov] Add an option which maps the location of source directories on another machine to your local copiesSummary:This patch adds the -path-equivalence option (example: llvm-cov show -path-equivalence=/origin/path,/local/path) which maps the source code path from one machine to another when using `llvm-cov show`. This is similar to the -filename-equivalence option, but doesn&apos;t require you to specify all the source files on the command line.This allows you to generate the coverage data on one machine (e.g. in a CI system), and then use llvm-cov on another machine where you have the same code base on a different path.Reviewers: vskReviewed By: vskSubscribers: llvm-commitsDifferential Revision: https://reviews.llvm.org/D36391llvm-svn: 310827

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Mon, 14 Aug 2017 10:20:12 +0000</pubDate>
        <dc:creator>Sean Eveson &lt;eveson.sean@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7101d73c - Retry: [llvm-cov] Add support for exporting coverage data to JSON</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#7101d73c</link>
        <description>Retry: [llvm-cov] Add support for exporting coverage data to JSONThis enables users to export coverage information as portable JSON for use byanalysis tools and storage in document based databases.The export sub-command is invoked just like the others:  llvm-cov export -instr-profile path/to/foo.profdata path/to/foo.binaryThe resulting JSON contains a list of files and functions. Every file objectcontains a list of segments, expansions, and a summary of the file&apos;s region,function, and line coverage. Every function object contains the function&apos;s nameand regions. There is also a total summary for the entire object file.Changes since the initial commit (r276813):  - Fixed the regexes in the tests to handle Windows filepaths.Patch by Eddie Hurtig!Differential Revision: https://reviews.llvm.org/D22651llvm-svn: 276818

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Tue, 26 Jul 2016 22:50:58 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>e85353b8 - Revert &quot;[llvm-cov] Add support for exporting coverage data to JSON&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#e85353b8</link>
        <description>Revert &quot;[llvm-cov] Add support for exporting coverage data to JSON&quot;This reverts commit r276813. The Windows bots are complaining about someof the filename regexes in the tests:  http://bb.pgr.jp/builders/ninja-clang-i686-msc19-R/builds/5299llvm-svn: 276816

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Tue, 26 Jul 2016 21:55:39 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>d5b7436c - [llvm-cov] Add support for exporting coverage data to JSON</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#d5b7436c</link>
        <description>[llvm-cov] Add support for exporting coverage data to JSONThis enables users to export coverage information as portable JSON for use byanalysis tools and storage in document based databases.The export sub-command is invoked just like the others:  llvm-cov export -instr-profile path/to/foo.profdata path/to/foo.binaryThe resulting JSON contains a list of files and functions. Every file objectcontains a list of segments, expansions, and a summary of the file&apos;s region,function, and line coverage. Every function object contains the function&apos;s nameand regions. There is also a total summary for the entire object file.Patch by Eddie Hurtig!Differential Revision: https://reviews.llvm.org/D22651llvm-svn: 276813

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Tue, 26 Jul 2016 21:35:43 +0000</pubDate>
        <dc:creator>Vedant Kumar &lt;vsk@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>d0ceebf1 - InstrProf: Fix display of large numbers in llvm-cov</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#d0ceebf1</link>
        <description>InstrProf: Fix display of large numbers in llvm-covllvm-cov was truncating numbers that were larger than a particularfixed width, which is as confusing as it is useless. Instead, we useengineering notation with SI prefix for magnitude.llvm-svn: 237307

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Wed, 13 May 2015 22:41:48 +0000</pubDate>
        <dc:creator>Justin Bogner &lt;mail@justinbogner.com&gt;</dc:creator>
    </item>
<item>
        <title>0a582d76 - InstrProf: Remove xfails for big-endian from coverage tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#0a582d76</link>
        <description>InstrProf: Remove xfails for big-endian from coverage testsThis still doesn&apos;t actually work correctly for big endian input files,but since these tests all use little endian input files they don&apos;tactually fail. I&apos;ll be committing a real fix for big endian soon, butI don&apos;t have proper tests for it yet.llvm-svn: 232354

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Mon, 16 Mar 2015 07:29:49 +0000</pubDate>
        <dc:creator>Justin Bogner &lt;mail@justinbogner.com&gt;</dc:creator>
    </item>
<item>
        <title>24ee64ba - InstrProf: Use the proftext format for these coverage tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#24ee64ba</link>
        <description>InstrProf: Use the proftext format for these coverage testsThis format&apos;s easier to understand and update by hand.llvm-svn: 231686

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Mon, 09 Mar 2015 18:54:58 +0000</pubDate>
        <dc:creator>Justin Bogner &lt;mail@justinbogner.com&gt;</dc:creator>
    </item>
<item>
        <title>0b3614f8 - llvm-cov: Fix an issue with showing regions but not counts</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#0b3614f8</link>
        <description>llvm-cov: Fix an issue with showing regions but not countsIn r217746, though it was supposed to be NFC, I broke llvm-cov&apos;shandling of showing regions without showing counts. This should&apos;veshown up in the existing tests, except they were checking debug outputthat was displayed regardless of what was actually output. I&apos;ve movedthe relevant debug output to a more appropriate place so that thetests catch this kind of thing.llvm-svn: 217835

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Mon, 15 Sep 2014 22:12:28 +0000</pubDate>
        <dc:creator>Justin Bogner &lt;mail@justinbogner.com&gt;</dc:creator>
    </item>
<item>
        <title>7949a8b8 - llvm-cov: test: add xfail for the big-endian buildbots</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#7949a8b8</link>
        <description>llvm-cov: test: add xfail for the big-endian buildbotsllvm-svn: 216310

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Sat, 23 Aug 2014 00:47:24 +0000</pubDate>
        <dc:creator>Alex Lorenz &lt;arphaman@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e82d89cc - llvm-cov: add code coverage tool that&apos;s based on coverage mapping format and clang&apos;s pgo.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp#e82d89cc</link>
        <description>llvm-cov: add code coverage tool that&apos;s based on coverage mapping format and clang&apos;s pgo.This commit expands llvm-cov&apos;s functionality by adding support for a new code coveragetool that uses LLVM&apos;s coverage mapping format and clang&apos;s instrumentation based profiling.The gcov compatible tool can be invoked by supplying the &apos;gcov&apos; command as the first argument,or by modifying the tool&apos;s name to end with &apos;gcov&apos;.Differential Revision: http://reviews.llvm.org/D4445llvm-svn: 216300

            List of files:
            /llvm-project-15.0.7/llvm/test/tools/llvm-cov/showRegionMarkers.cpp</description>
        <pubDate>Fri, 22 Aug 2014 22:56:03 +0000</pubDate>
        <dc:creator>Alex Lorenz &lt;arphaman@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
