[llvm] r241086 - MIR Parser: refactor error reporting for machine instruction parser errors. NFC.
Alex Lorenz
arphaman at gmail.com
Tue Jun 30 10:55:00 PDT 2015
Author: arphaman
Date: Tue Jun 30 12:55:00 2015
New Revision: 241086
URL: http://llvm.org/viewvc/llvm-project?rev=241086&view=rev
Log:
MIR Parser: refactor error reporting for machine instruction parser errors. NFC.
This commit extracts the code that reports an error that's produced by the
machine instruction parser into a new method that can be reused in other places.
Modified:
llvm/trunk/lib/CodeGen/MIRParser/MIRParser.cpp
Modified: llvm/trunk/lib/CodeGen/MIRParser/MIRParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MIRParser/MIRParser.cpp?rev=241086&r1=241085&r2=241086&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MIRParser/MIRParser.cpp (original)
+++ llvm/trunk/lib/CodeGen/MIRParser/MIRParser.cpp Tue Jun 30 12:55:00 2015
@@ -60,6 +60,12 @@ public:
/// Always returns true.
bool error(const Twine &Message);
+ /// Report a given error with the location translated from the location in an
+ /// embedded string literal to a location in the MIR file.
+ ///
+ /// Always returns true.
+ bool error(const SMDiagnostic &Error, SMRange SourceRange);
+
/// Try to parse the optional LLVM module and the machine functions in the MIR
/// file.
///
@@ -119,6 +125,12 @@ bool MIRParserImpl::error(const Twine &M
return true;
}
+bool MIRParserImpl::error(const SMDiagnostic &Error, SMRange SourceRange) {
+ assert(Error.getKind() == SourceMgr::DK_Error && "Expected an error");
+ reportDiagnostic(diagFromMIStringDiag(Error, SourceRange));
+ return true;
+}
+
void MIRParserImpl::reportDiagnostic(const SMDiagnostic &Diag) {
DiagnosticSeverity Kind;
switch (Diag.getKind()) {
@@ -266,11 +278,8 @@ bool MIRParserImpl::initializeMachineBas
for (const auto &MISource : YamlMBB.Instructions) {
SMDiagnostic Error;
MachineInstr *MI = nullptr;
- if (parseMachineInstr(MI, SM, MF, MISource.Value, MBBSlots, IRSlots,
- Error)) {
- reportDiagnostic(diagFromMIStringDiag(Error, MISource.SourceRange));
- return true;
- }
+ if (parseMachineInstr(MI, SM, MF, MISource.Value, MBBSlots, IRSlots, Error))
+ return error(Error, MISource.SourceRange);
MBB.insert(MBB.end(), MI);
}
return false;
More information about the llvm-commits
mailing list