Skip to content

Commit

Permalink
[mips] Fix crash on recursive using of .set
Browse files Browse the repository at this point in the history
Switch to the `MCParserUtils::parseAssignmentExpression` for parsing
assignment expressions in the `.set` directive reduces code and allows
to print an error message instead of crashing in case of incorrect
recursive using of the `.set`.

Fix for the bug https://bugs.llvm.org/show_bug.cgi?id=41053.

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

llvm-svn: 356461
  • Loading branch information
atanasyan committed Mar 19, 2019
1 parent 00160e2 commit af40d43
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
19 changes: 9 additions & 10 deletions llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
Expand Up @@ -28,6 +28,7 @@
#include "llvm/MC/MCParser/MCAsmLexer.h"
#include "llvm/MC/MCParser/MCAsmParser.h"
#include "llvm/MC/MCParser/MCAsmParserExtension.h"
#include "llvm/MC/MCParser/MCAsmParserUtils.h"
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
#include "llvm/MC/MCParser/MCTargetAsmParser.h"
#include "llvm/MC/MCSectionELF.h"
Expand Down Expand Up @@ -6803,7 +6804,6 @@ bool MipsAsmParser::parseSetHardFloatDirective() {

bool MipsAsmParser::parseSetAssignment() {
StringRef Name;
const MCExpr *Value;
MCAsmParser &Parser = getParser();

if (Parser.parseIdentifier(Name))
Expand All @@ -6821,17 +6821,16 @@ bool MipsAsmParser::parseSetAssignment() {
RegisterSets[Name] = Parser.getTok();
Parser.Lex(); // Eat identifier.
getContext().getOrCreateSymbol(Name);
} else if (!Parser.parseExpression(Value)) {
// Parse assignment of an expression including
// symbolic registers:
// .set $tmp, $BB0-$BB1
// .set r2, $f2
MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
Sym->setVariableValue(Value);
} else {
return reportParseError("expected valid expression after comma");
return false;
}

MCSymbol *Sym;
const MCExpr *Value;
if (MCParserUtils::parseAssignmentExpression(Name, /* allow_redef */ true,
Parser, Sym, Value))
return true;
Sym->setVariableValue(Value);

return false;
}

Expand Down
5 changes: 5 additions & 0 deletions llvm/test/MC/Mips/set-sym-recursive.s
@@ -0,0 +1,5 @@
# RUN: not llvm-mc -triple mips-unknown-linux %s 2>&1 | FileCheck %s

.set A, A + 1
# CHECK: :[[@LINE-1]]:9: error: Recursive use of 'A'
.word A

0 comments on commit af40d43

Please sign in to comment.