AsmParser: Save and restore the parsing state for types using SlotMapping.
authorAlex Lorenz <arphaman@gmail.com>
Fri, 21 Aug 2015 21:32:39 +0000 (21:32 +0000)
committerAlex Lorenz <arphaman@gmail.com>
Fri, 21 Aug 2015 21:32:39 +0000 (21:32 +0000)
commit0e99876efe5c2cbea63ec91c74ec923c3fd193e5
treeb1ebd421eb6940e1449a9afa21ef37b4a5fe282d
parent8ccce34ac06c271cff7283d495c6038e0d4e8fd1
AsmParser: Save and restore the parsing state for types using SlotMapping.

This commit extends the 'SlotMapping' structure and includes mappings for named
and numbered types in it. The LLParser is extended accordingly to fill out
those mappings at the end of module parsing.

This information is useful when we want to parse standalone constant values
at a later stage using the 'parseConstantValue' method. The constant values
can be constant expressions, which can contain references to types. In order
to parse such constant values, we have to restore the internal named and
numbered mappings for the types in LLParser, otherwise the parser will report
a parsing error. Therefore, this commit also introduces a new method called
'restoreParsingState' to LLParser, which uses the slot mappings to restore
some of its internal parsing state.

This commit is required to serialize constant value pointers in the machine
memory operands for the MIR format.

Reviewers: Duncan P. N. Exon Smith

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245740 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/AsmParser/Parser.h
include/llvm/AsmParser/SlotMapping.h
lib/AsmParser/LLParser.cpp
lib/AsmParser/LLParser.h
lib/AsmParser/Parser.cpp
unittests/AsmParser/AsmParserTest.cpp