<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in cmpb_pred.ll</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>2208c97c1bec2512d4e47b6223db6d95a7037956 - [Hexagon,test] Change llc -march= to -mtriple=</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#2208c97c1bec2512d4e47b6223db6d95a7037956</link>
        <description>[Hexagon,test] Change llc -march= to -mtriple=Similar to 806761a7629df268c8aed49657aeccffa6bca449-mtriple= specifies the full target triple while -march= merely sets thearchitecture part of the default target triple, leaving a target triple whichmay not make sense.Therefore, -march= is error-prone and not recommended for tests without a targettriple. The issue has been benign as we recognize $unknown-apple-darwin as ELF insteadof rejecting it outrightly.

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Sun, 15 Dec 2024 18:20:22 +0000</pubDate>
        <dc:creator>Fangrui Song &lt;i@maskray.me&gt;</dc:creator>
    </item>
<item>
        <title>a96f691985c8546e826012fdc3481c88f034a194 - [Hexagon] Convert some tests to opaque pointers (NFC)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#a96f691985c8546e826012fdc3481c88f034a194</link>
        <description>[Hexagon] Convert some tests to opaque pointers (NFC)

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Mon, 19 Dec 2022 11:52:45 +0000</pubDate>
        <dc:creator>Nikita Popov &lt;npopov@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>5f7ba9a74c5dca7e89f601ab6968c5e9ada30ade - [Hexagon] Always generate mux out of predicated transfers if possible</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#5f7ba9a74c5dca7e89f601ab6968c5e9ada30ade</link>
        <description>[Hexagon] Always generate mux out of predicated transfers if possibleHexagonGenMux would collapse pairs of predicated transfers if it assumedthat the predicated .new forms cannot be created. Turns out that generatingmux is preferable in almost all cases.Introduce an option -hexagon-gen-mux-threshold that controls the minimumdistance between the instruction defining the predicate and the later ofthe two transfers. If the distance is closer than the threshold, mux willnot be generated. Set the threshold to 0 by default.llvm-svn: 328346

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Fri, 23 Mar 2018 18:43:09 +0000</pubDate>
        <dc:creator>Krzysztof Parzyszek &lt;kparzysz@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>ca8a82d5c70fb19df909dc6b95ecca2179526308 - [Hexagon] Adding some compare tests, fixing existing XFAILed tests, and removing mcpu=hexagonv4 since that&apos;s the minimum version anyway.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#ca8a82d5c70fb19df909dc6b95ecca2179526308</link>
        <description>[Hexagon] Adding some compare tests, fixing existing XFAILed tests, and removing mcpu=hexagonv4 since that&apos;s the minimum version anyway.llvm-svn: 239917

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Wed, 17 Jun 2015 17:19:05 +0000</pubDate>
        <dc:creator>Colin LeMahieu &lt;colinl@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>96bfaa97668dbe269cd9484be0476666d473286e - [Hexagon] Eliminating immediate condition set.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#96bfaa97668dbe269cd9484be0476666d473286e</link>
        <description>[Hexagon] Eliminating immediate condition set.llvm-svn: 231693

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Mon, 09 Mar 2015 19:57:18 +0000</pubDate>
        <dc:creator>Colin LeMahieu &lt;colinl@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>a79ac14fa68297f9888bc70a10df5ed9b8864e38 - [opaque pointer type] Add textual IR support for explicit type parameter to load instruction</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#a79ac14fa68297f9888bc70a10df5ed9b8864e38</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/llvm/test/CodeGen/Hexagon/cmpb_pred.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>1a5ff287fd9c65c848409ce860eac8cfabd42eed - TBAA: remove !tbaa from testing cases if not used.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#1a5ff287fd9c65c848409ce860eac8cfabd42eed</link>
        <description>TBAA: remove !tbaa from testing cases if not used.This will make it easier to turn on struct-path aware TBAA since the metadataformat will change.llvm-svn: 180796

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Tue, 30 Apr 2013 17:52:57 +0000</pubDate>
        <dc:creator>Manman Ren &lt;mren@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>6031625b030e787765cf785dade970ac69050885 - Hexagon: Use TFR_cond with cmpb.[eq,gt,gtu] to handle</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll#6031625b030e787765cf785dade970ac69050885</link>
        <description>Hexagon: Use TFR_cond with cmpb.[eq,gt,gtu] to handle         zext( set[ne,eq,gt,ugt] (...) ) type of dag patterns.llvm-svn: 174429

            List of files:
            /llvm-project/llvm/test/CodeGen/Hexagon/cmpb_pred.ll</description>
        <pubDate>Tue, 05 Feb 2013 19:20:45 +0000</pubDate>
        <dc:creator>Jyotsna Verma &lt;jverma@codeaurora.org&gt;</dc:creator>
    </item>
</channel>
</rss>
