<?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 MCTargetAsmParser.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><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/lib/MC/MCParser/MCTargetAsmParser.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/lib/MC/MCParser/MCTargetAsmParser.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>4191b9ea - [Asm] Add debug tracing in table-generated assembly matcher</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#4191b9ea</link>
        <description>[Asm] Add debug tracing in table-generated assembly matcherThis adds debug tracing to the table-generated assembly instruction matcher,enabled by the -debug-only=asm-matcher option.The changes in the target AsmParsers are to add an MCInstrInfo reference undera consistent name, so that we can use it from table-generated code. This wasalready being used this way for targets that use deprecation warnings, but 5targets did not have it, and Hexagon had it under a different name to the otherbackends.llvm-svn: 315445

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Wed, 11 Oct 2017 09:17:43 +0000</pubDate>
        <dc:creator>Oliver Stannard &lt;oliver.stannard@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>6bda14b3 - Sort the remaining #include lines in include/... and lib/....</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#6bda14b3</link>
        <description>Sort the remaining #include lines in include/... and lib/....I did this a long time ago with a janky python script, but nowclang-format has built-in support for this. I fed clang-format everyline with a #include and let it re-sort things according to the preciseLLVM rules for include ordering baked into clang-format these days.I&apos;ve reverted a number of files where the results of sorting includesisn&apos;t healthy. Either places where we have legacy code relying onparticular include ordering (where possible, I&apos;ll fix these separately)or where we have particular formatting around #include lines thatI didn&apos;t want to disturb in this patch.This patch is *entirely* mechanical. If you get merge conflicts oranything, just ignore the changes in this patch and run clang-formatover your #include lines in the files.Sorry for any noise here, but it is important to keep these thingsstable. I was seeing an increasing number of patches with irrelevantre-ordering of #include lines because clang-format was used. This patchat least isolates that churn, makes it easy to skip when resolvingconflicts, and gets us to a clean baseline (again).llvm-svn: 304787

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Tue, 06 Jun 2017 11:49:48 +0000</pubDate>
        <dc:creator>Chandler Carruth &lt;chandlerc@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4b6ff6b8 - [MC] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#4b6ff6b8</link>
        <description>[MC] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).llvm-svn: 294685

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Fri, 10 Feb 2017 01:33:54 +0000</pubDate>
        <dc:creator>Eugene Zelenko &lt;eugene.zelenko@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b3e8a6d2 - Move MCTargetAsmParser.h to llvm/MC/MCParser where it belongs.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#b3e8a6d2</link>
        <description>Move MCTargetAsmParser.h to llvm/MC/MCParser where it belongs.llvm-svn: 258917

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Wed, 27 Jan 2016 10:01:28 +0000</pubDate>
        <dc:creator>Benjamin Kramer &lt;benny.kra@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>b11ef089 - Reduce the size of MCRelaxableFragment.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#b11ef089</link>
        <description>Reduce the size of MCRelaxableFragment.MCRelaxableFragment previously kept a copy of MCSubtargetInfo andMCInst to enable re-encoding the MCInst later during relaxation. A copyof MCSubtargetInfo (instead of a reference or pointer) was neededbecause the feature bits could be modified by the parser.This commit replaces the MCSubtargetInfo copy in MCRelaxableFragmentwith a constant reference to MCSubtargetInfo. The copies ofMCSubtargetInfo are kept in MCContext, and the target parsers are nowresponsible for asking MCContext to provide a copy whenever the featurebits of MCSubtargetInfo have to be toggled. With this patch, I saw a 4% reduction in peak memory usage when Icompiled verify-uselistorder.lto.bc using llc.rdar://problem/21736951Differential Revision: http://reviews.llvm.org/D14346llvm-svn: 253127

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Sat, 14 Nov 2015 06:35:56 +0000</pubDate>
        <dc:creator>Akira Hatanaka &lt;ahatanaka@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>bd9fc284 - [MCTargetAsmParser] Move the member varialbes that reference</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#bd9fc284</link>
        <description>[MCTargetAsmParser] Move the member varialbes that referenceMCSubtargetInfo in the subclasses into MCTargetAsmParser and define amember function getSTI.This is done in preparation for making changes to shrink the size ofMCRelaxableFragment. (see http://reviews.llvm.org/D14346).llvm-svn: 253124

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Sat, 14 Nov 2015 05:20:05 +0000</pubDate>
        <dc:creator>Akira Hatanaka &lt;ahatanaka@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>fe2c8b80 - [llvm-mc] Pushing plumbing through for --fatal-warnings flag.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#fe2c8b80</link>
        <description>[llvm-mc] Pushing plumbing through for --fatal-warnings flag.llvm-svn: 243334

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Mon, 27 Jul 2015 21:56:53 +0000</pubDate>
        <dc:creator>Colin LeMahieu &lt;colinl@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>75f0b2f2 - [ms-inline asm] Add the isParsingInlineAsm() function to the MCAsmTargetParser.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#75f0b2f2</link>
        <description>[ms-inline asm] Add the isParsingInlineAsm() function to the MCAsmTargetParser.llvm-svn: 166292

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Fri, 19 Oct 2012 17:57:49 +0000</pubDate>
        <dc:creator>Chad Rosier &lt;mcrosier@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>11424445 - Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp#11424445</link>
        <description>Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser.llvm-svn: 136027

            List of files:
            /llvm-project-15.0.7/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp</description>
        <pubDate>Tue, 26 Jul 2011 00:24:13 +0000</pubDate>
        <dc:creator>Evan Cheng &lt;evan.cheng@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
