aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-12-04 04:05:48 +0800
committerGitHub <noreply@github.com>2018-12-04 04:05:48 +0800
commit336287821a1eb831e69414dedb77a6d77570709f (patch)
tree78c230c0bad8fea22d4f772ea46417273b345697
parente2741a120fb69a16569044d6114fa14f548532ff (diff)
parente5582ffea022b51ecd8195c36febe6e1c5567879 (diff)
downloaddexon-solidity-336287821a1eb831e69414dedb77a6d77570709f.tar.gz
dexon-solidity-336287821a1eb831e69414dedb77a6d77570709f.tar.zst
dexon-solidity-336287821a1eb831e69414dedb77a6d77570709f.zip
Merge pull request #5578 from ethereum/yulStringRefactor
Use YulString also in expectAsmIdentifier.
-rw-r--r--libyul/AsmParser.cpp30
-rw-r--r--libyul/AsmParser.h2
2 files changed, 16 insertions, 16 deletions
diff --git a/libyul/AsmParser.cpp b/libyul/AsmParser.cpp
index 2ce94f85..417c0251 100644
--- a/libyul/AsmParser.cpp
+++ b/libyul/AsmParser.cpp
@@ -348,23 +348,23 @@ Parser::ElementaryOperation Parser::parseElementaryOperation()
case Token::Byte:
case Token::Address:
{
- string literal;
+ YulString literal;
if (currentToken() == Token::Return)
- literal = "return";
+ literal = YulString{"return"};
else if (currentToken() == Token::Byte)
- literal = "byte";
+ literal = YulString{"byte"};
else if (currentToken() == Token::Address)
- literal = "address";
+ literal = YulString{"address"};
else
- literal = currentLiteral();
+ literal = YulString{currentLiteral()};
// first search the set of instructions.
- if (m_flavour != AsmFlavour::Yul && instructions().count(literal))
+ if (m_flavour != AsmFlavour::Yul && instructions().count(literal.str()))
{
- dev::solidity::Instruction const& instr = instructions().at(literal);
+ dev::solidity::Instruction const& instr = instructions().at(literal.str());
ret = Instruction{location(), instr};
}
else
- ret = Identifier{location(), YulString{literal}};
+ ret = Identifier{location(), literal};
advance();
break;
}
@@ -403,7 +403,7 @@ Parser::ElementaryOperation Parser::parseElementaryOperation()
{
expectToken(Token::Colon);
literal.location.end = endPosition();
- literal.type = YulString{expectAsmIdentifier()};
+ literal.type = expectAsmIdentifier();
}
else if (kind == LiteralKind::Boolean)
fatalParserError("True and false are not valid literals.");
@@ -450,7 +450,7 @@ FunctionDefinition Parser::parseFunctionDefinition()
RecursionGuard recursionGuard(*this);
FunctionDefinition funDef = createWithLocation<FunctionDefinition>();
expectToken(Token::Function);
- funDef.name = YulString{expectAsmIdentifier()};
+ funDef.name = expectAsmIdentifier();
expectToken(Token::LParen);
while (currentToken() != Token::RParen)
{
@@ -565,19 +565,19 @@ TypedName Parser::parseTypedName()
{
RecursionGuard recursionGuard(*this);
TypedName typedName = createWithLocation<TypedName>();
- typedName.name = YulString{expectAsmIdentifier()};
+ typedName.name = expectAsmIdentifier();
if (m_flavour == AsmFlavour::Yul)
{
expectToken(Token::Colon);
typedName.location.end = endPosition();
- typedName.type = YulString{expectAsmIdentifier()};
+ typedName.type = expectAsmIdentifier();
}
return typedName;
}
-string Parser::expectAsmIdentifier()
+YulString Parser::expectAsmIdentifier()
{
- string name = currentLiteral();
+ YulString name = YulString{currentLiteral()};
if (m_flavour == AsmFlavour::Yul)
{
switch (currentToken())
@@ -592,7 +592,7 @@ string Parser::expectAsmIdentifier()
break;
}
}
- else if (instructions().count(name))
+ else if (instructions().count(name.str()))
fatalParserError("Cannot use instruction names for identifier names.");
expectToken(Token::Identifier);
return name;
diff --git a/libyul/AsmParser.h b/libyul/AsmParser.h
index 52166a20..c1b22334 100644
--- a/libyul/AsmParser.h
+++ b/libyul/AsmParser.h
@@ -78,7 +78,7 @@ protected:
FunctionDefinition parseFunctionDefinition();
Expression parseCall(ElementaryOperation&& _initialOp);
TypedName parseTypedName();
- std::string expectAsmIdentifier();
+ YulString expectAsmIdentifier();
static bool isValidNumberLiteral(std::string const& _literal);