<?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 missing_origin.ll</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>41d5033e - [IR] Enable opaque pointers by default</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#41d5033e</link>
        <description>[IR] Enable opaque pointers by defaultThis enabled opaque pointers by default in LLVM. The effect of thisis twofold:* If IR that contains *neither* explicit ptr nor %T* types is passed  to tools, we will now use opaque pointer mode, unless  -opaque-pointers=0 has been explicitly passed.* Users of LLVM as a library will now default to opaque pointers.  It is possible to opt-out by calling setOpaquePointers(false) on  LLVMContext.A cmake option to toggle this default will not be provided. Frontendsor other tools that want to (temporarily) keep using typed pointersshould disable opaque pointers via LLVMContext.Differential Revision: https://reviews.llvm.org/D126689

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Tue, 31 May 2022 09:58:35 +0000</pubDate>
        <dc:creator>Nikita Popov &lt;npopov@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>3ff17b05 - [msan][test] Remove legacy PM style opt -foo tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#3ff17b05</link>
        <description>[msan][test] Remove legacy PM style opt -foo tests

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Sat, 16 Apr 2022 04:07:50 +0000</pubDate>
        <dc:creator>Fangrui Song &lt;i@maskray.me&gt;</dc:creator>
    </item>
<item>
        <title>b39a97c8 - [NewPM] Port Msan</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#b39a97c8</link>
        <description>[NewPM] Port MsanSummary:Keeping msan a function pass requires replacing the module level initialization:That means, don&apos;t define a ctor function which calls __msan_init, instead justdeclare the init function at the first access, and add that to the global ctorslist.Changes:- Pull the actual sanitizer and the wrapper pass apart.- Add a newpm msan pass. The function pass inserts calls to runtime  library functions, for which it inserts declarations as necessary.- Update tests.Caveats:- There is one test that I dropped, because it specifically tested the  definition of the ctor.Reviewers: chandlerc, fedor.sergeev, leonardchan, vitalybukaSubscribers: sdardis, nemanjai, javed.absar, hiraditya, kbarton, bollu, atanasyan, jsjiDifferential Revision: https://reviews.llvm.org/D55647llvm-svn: 350305

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Thu, 03 Jan 2019 13:42:44 +0000</pubDate>
        <dc:creator>Philip Pfaffe &lt;philip.pfaffe@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>08b34a01 - Update some code.google.com links</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#08b34a01</link>
        <description>Update some code.google.com linksllvm-svn: 318115

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Mon, 13 Nov 2017 23:47:58 +0000</pubDate>
        <dc:creator>Hans Wennborg &lt;hans@hanshq.net&gt;</dc:creator>
    </item>
<item>
        <title>a79ac14f - [opaque pointer type] Add textual IR support for explicit type parameter to load instruction</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#a79ac14f</link>
        <description>[opaque pointer type] Add textual IR support for explicit type parameter to load instructionEssentially the same as the GEP change in r230786.A similar migration script can be used to update test cases, though a few moretest case improvements/changes were required this time around: (r229269-r229278)import fileinputimport sysimport repat = re.compile(r&quot;((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)&quot;)for line in sys.stdin:  sys.stdout.write(re.sub(pat, r&quot;\1, \2\3*\4&quot;, line))Reviewers: rafael, dexonsmith, grosserDifferential Revision: http://reviews.llvm.org/D7649llvm-svn: 230794

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Fri, 27 Feb 2015 21:17:42 +0000</pubDate>
        <dc:creator>David Blaikie &lt;dblaikie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a0b68992 - [msan] Fix origin propagation for select of floats.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#a0b68992</link>
        <description>[msan] Fix origin propagation for select of floats.MSan does not assign origin for instrumentation temps (i.e. the ones that donot come from the application code), but &quot;select&quot; instrumentation erroneouslytried to use one of those.https://code.google.com/p/memory-sanitizer/issues/detail?id=78llvm-svn: 222918

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Fri, 28 Nov 2014 11:17:58 +0000</pubDate>
        <dc:creator>Evgeniy Stepanov &lt;eugeni.stepanov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a9b6202d - Fix test in r210472.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#a9b6202d</link>
        <description>Fix test in r210472.llvm-svn: 210473

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Mon, 09 Jun 2014 14:48:53 +0000</pubDate>
        <dc:creator>Evgeniy Stepanov &lt;eugeni.stepanov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>70d1b0a8 - [msan] Workaround for invalid origins in shufflevector.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll#70d1b0a8</link>
        <description>[msan] Workaround for invalid origins in shufflevector.Makes origin propagation ignore literal undef operands, and,in general, any operand we don&apos;t have origin for.https://code.google.com/p/memory-sanitizer/issues/detail?id=56llvm-svn: 210472

            List of files:
            /llvm-project-15.0.7/llvm/test/Instrumentation/MemorySanitizer/missing_origin.ll</description>
        <pubDate>Mon, 09 Jun 2014 14:29:34 +0000</pubDate>
        <dc:creator>Evgeniy Stepanov &lt;eugeni.stepanov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
