MCAsmParser: better handling for named arguments
authorSaleem Abdulrasool <compnerd@compnerd.org>
Mon, 17 Feb 2014 00:40:17 +0000 (00:40 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Mon, 17 Feb 2014 00:40:17 +0000 (00:40 +0000)
commit696002f3b4612502d4140f28352c1427ef66a04c
tree412884808d7c0436c383b046351de8d3a56cea60
parent09d1d540c8f14761c88e8b53cafe465ed24132f6
MCAsmParser: better handling for named arguments

Until this point only macro definition with named parameters were parsed but the
names were ignored.  This adds support for using that information for named
parameter instantiation.

In order to support the full semantics of the keyword arguments, the arguments
are no longer lazily initialised since the keyword arguments can be specified
out of order and partially if they are defaulted.  Prepopulate the arguments
with the default value for any defaulted parameters, and then parse the
specified arguments.

This simplies some of the handling of the arguments in the inner loop since
empty arguments simply increment the parameter index and move on.

Note that keyword and positional arguments cannot be mixed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201499 91177308-0d34-0410-b5e6-96231b3b80d8
lib/MC/MCParser/AsmParser.cpp
test/MC/AsmParser/macro-err1.s
test/MC/AsmParser/macros-argument-parsing-diagnostics.s [new file with mode: 0644]
test/MC/AsmParser/macros-argument-parsing.s