AsmParser: Extend the API to make the global value and metadata node slot mappings...
authorAlex Lorenz <arphaman@gmail.com>
Tue, 23 Jun 2015 17:10:10 +0000 (17:10 +0000)
committerAlex Lorenz <arphaman@gmail.com>
Tue, 23 Jun 2015 17:10:10 +0000 (17:10 +0000)
commitd31dc69aa100f8cb0dc673f45215e9338711f179
tree6700984cf4cd9386d653601e727a2ca824270845
parent3edc38d96735d000db766f7fc7a1466c134326e6
AsmParser: Extend the API to make the global value and metadata node slot mappings publicly accessible.

This commit creates a new structure called 'SlotMapping' in the AsmParser library.
This structure can be passed into the public parsing APIs from the AsmParser library
in order to extract the data structures that map from slot numbers to unnamed global
values and metadata nodes.

This change is useful for MIR Serialization, as the MIR Parser has to lookup the
unnamed global values and metadata nodes by their slot numbers.

Reviewers: Duncan P. N. Exon Smith

Differential Revision: http://reviews.llvm.org/D10551

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240427 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/AsmParser/Parser.h
include/llvm/AsmParser/SlotMapping.h [new file with mode: 0644]
lib/AsmParser/LLParser.cpp
lib/AsmParser/LLParser.h
lib/AsmParser/Parser.cpp
unittests/AsmParser/AsmParserTest.cpp