<?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 fnptr.binprof</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>cee313d2 - Revert &quot;Temporarily Revert &quot;Add basic loop fusion pass.&quot;&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#cee313d2</link>
        <description>Revert &quot;Temporarily Revert &quot;Add basic loop fusion pass.&quot;&quot;The reversion apparently deleted the test/Transforms directory.Will be re-reverting again.llvm-svn: 358552

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Wed, 17 Apr 2019 04:52:47 +0000</pubDate>
        <dc:creator>Eric Christopher &lt;echristo@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c0a1e432 - Fine tuning of sample profile propagation algorithm.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#c0a1e432</link>
        <description>Fine tuning of sample profile propagation algorithm.Summary: The refined propagation algorithm is more accurate and robust.Reviewers: davidxl, dnovilloSubscribers: llvm-commitsDifferential Revision: https://reviews.llvm.org/D23224llvm-svn: 278522

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Fri, 12 Aug 2016 16:22:12 +0000</pubDate>
        <dc:creator>Dehao Chen &lt;dehao@google.com&gt;</dc:creator>
    </item>
<item>
        <title>40ee23db - Add profile summary support for sample profile.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#40ee23db</link>
        <description>Add profile summary support for sample profile.Differential Revision: http://reviews.llvm.org/D17178llvm-svn: 261304

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Fri, 19 Feb 2016 03:15:33 +0000</pubDate>
        <dc:creator>Easwaran Raman &lt;eraman@google.com&gt;</dc:creator>
    </item>
<item>
        <title>b93483db - Sample profiles - Re-arrange binary format to emit head samples only on top functions.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#b93483db</link>
        <description>Sample profiles - Re-arrange binary format to emit head samples only on top functions.The number of samples collected at the head of a function only makesense for top-level functions (i.e., those actually called as opposed tobeing inlined inside another).Head samples essentially count the time spent inside the function&apos;sprologue.  This clearly doesn&apos;t make sense for inlined functions, so wewere always emitting 0 in those.llvm-svn: 250539

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Fri, 16 Oct 2015 18:54:35 +0000</pubDate>
        <dc:creator>Diego Novillo &lt;dnovillo@google.com&gt;</dc:creator>
    </item>
<item>
        <title>760c5a8f - Sample profiles - Add a name table to the binary encoding.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#760c5a8f</link>
        <description>Sample profiles - Add a name table to the binary encoding.Binary encoded profiles used to encode all function names inline atevery reference.  This is clearly suboptimal in terms of space.  Thispatch fixes this by adding a name table to the header of the file.llvm-svn: 250241

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Tue, 13 Oct 2015 22:48:46 +0000</pubDate>
        <dc:creator>Diego Novillo &lt;dnovillo@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a7f1e8ef - Add inline stack streaming to binary sample profiles.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#a7f1e8ef</link>
        <description>Add inline stack streaming to binary sample profiles.With this patch we can now read and write inline stacks in sampleprofiles to the binary encoded profiles.In a subsequent patch, I will add a string table to the binary encoding.Right now function names are emitted as strings every time we find them.This is too bloated and will produce large files in applications withlots of inlining.llvm-svn: 249861

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Fri, 09 Oct 2015 17:54:24 +0000</pubDate>
        <dc:creator>Diego Novillo &lt;dnovillo@google.com&gt;</dc:creator>
    </item>
<item>
        <title>c572e92c - Add profile writing capabilities for sampling profiles.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof#c572e92c</link>
        <description>Add profile writing capabilities for sampling profiles.Summary:This patch finishes up support for handling sampling profiles in bothtext and binary formats. The new binary format uses uleb128 encoding torepresent numeric values. This makes profiles files about 25% smaller.The profile writer class can write profiles in the existing text and thenew binary format. In subsequent patches, I will add the capability toread (and perhaps write) profiles in the gcov format used by GCC.Additionally, I will be adding support in llvm-profdata to manipulatesampling profiles.There was a bit of refactoring needed to separate some code that was inthe reader files, but is actually common to both the reader and writer.The new test checks that reading the same profile encoded as text orraw, produces the same results.Reviewers: bogner, dexonsmithSubscribers: llvm-commitsDifferential Revision: http://reviews.llvm.org/D6000llvm-svn: 220915

            List of files:
            /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/Inputs/fnptr.binprof</description>
        <pubDate>Thu, 30 Oct 2014 18:00:06 +0000</pubDate>
        <dc:creator>Diego Novillo &lt;dnovillo@google.com&gt;</dc:creator>
    </item>
</channel>
</rss>
