summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser/Parser.cpp
diff options
context:
space:
mode:
authorAlex Lorenz <arphaman@gmail.com>2015-08-21 21:32:39 +0000
committerAlex Lorenz <arphaman@gmail.com>2015-08-21 21:32:39 +0000
commit1de2acd3c2d94f424d2e8a1b366159c2578754e1 (patch)
treea15f088b2266db894cdba1fb85b3e62d3dceb24c /llvm/lib/AsmParser/Parser.cpp
parent7a1483e7d1dceb9b9b59bc8d26a1418800d08e73 (diff)
downloadbcm5719-llvm-1de2acd3c2d94f424d2e8a1b366159c2578754e1.tar.gz
bcm5719-llvm-1de2acd3c2d94f424d2e8a1b366159c2578754e1.zip
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 llvm-svn: 245740
Diffstat (limited to 'llvm/lib/AsmParser/Parser.cpp')
-rw-r--r--llvm/lib/AsmParser/Parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/Parser.cpp b/llvm/lib/AsmParser/Parser.cpp
index 6135b43f00d..4e55e62ecf5 100644
--- a/llvm/lib/AsmParser/Parser.cpp
+++ b/llvm/lib/AsmParser/Parser.cpp
@@ -68,13 +68,13 @@ std::unique_ptr<Module> llvm::parseAssemblyString(StringRef AsmString,
}
Constant *llvm::parseConstantValue(StringRef Asm, SMDiagnostic &Err,
- const Module &M) {
+ const Module &M, const SlotMapping *Slots) {
SourceMgr SM;
std::unique_ptr<MemoryBuffer> Buf = MemoryBuffer::getMemBuffer(Asm);
SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
Constant *C;
if (LLParser(Asm, SM, Err, const_cast<Module *>(&M))
- .parseStandaloneConstantValue(C))
+ .parseStandaloneConstantValue(C, Slots))
return nullptr;
return C;
}
OpenPOWER on IntegriCloud