Updating to match WGSL spec.
This CL updates a few names, addeds a return_stmt method and re-orders some code to closer match the current WGSL specification. Change-Id: I388be1c22d5d10229fdfcdb2ff929c410f5ae638 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/22305 Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
parent
46e959da39
commit
091b2b5fc8
|
@ -685,7 +685,7 @@ ast::type::AliasType* ParserImpl::type_alias() {
|
||||||
// | UINT32
|
// | UINT32
|
||||||
// | VEC2 LESS_THAN type_decl GREATER_THAN
|
// | VEC2 LESS_THAN type_decl GREATER_THAN
|
||||||
// | VEC3 LESS_THAN type_decl GREATER_THAN
|
// | VEC3 LESS_THAN type_decl GREATER_THAN
|
||||||
// | VEC3 LESS_THAN type_decl GREATER_THAN
|
// | VEC4 LESS_THAN type_decl GREATER_THAN
|
||||||
// | PTR LESS_THAN storage_class, type_decl GREATER_THAN
|
// | PTR LESS_THAN storage_class, type_decl GREATER_THAN
|
||||||
// | ARRAY LESS_THAN type_decl COMMA INT_LITERAL GREATER_THAN
|
// | ARRAY LESS_THAN type_decl COMMA INT_LITERAL GREATER_THAN
|
||||||
// | ARRAY LESS_THAN type_decl GREATER_THAN
|
// | ARRAY LESS_THAN type_decl GREATER_THAN
|
||||||
|
@ -1419,7 +1419,7 @@ ast::StatementList ParserImpl::statements() {
|
||||||
|
|
||||||
// statement
|
// statement
|
||||||
// : SEMICOLON
|
// : SEMICOLON
|
||||||
// | RETURN logical_or_expression SEMICOLON
|
// | return_stmt SEMICOLON
|
||||||
// | if_stmt
|
// | if_stmt
|
||||||
// | unless_stmt
|
// | unless_stmt
|
||||||
// | switch_stmt
|
// | switch_stmt
|
||||||
|
@ -1428,7 +1428,7 @@ ast::StatementList ParserImpl::statements() {
|
||||||
// | break_stmt SEMICOLON
|
// | break_stmt SEMICOLON
|
||||||
// | continue_stmt SEMICOLON
|
// | continue_stmt SEMICOLON
|
||||||
// | KILL SEMICOLON
|
// | KILL SEMICOLON
|
||||||
// | assignment_expression SEMICOLON
|
// | assignment_stmt SEMICOLON
|
||||||
std::unique_ptr<ast::Statement> ParserImpl::statement() {
|
std::unique_ptr<ast::Statement> ParserImpl::statement() {
|
||||||
auto t = peek();
|
auto t = peek();
|
||||||
if (t.IsSemicolon()) {
|
if (t.IsSemicolon()) {
|
||||||
|
@ -1436,25 +1436,16 @@ std::unique_ptr<ast::Statement> ParserImpl::statement() {
|
||||||
return statement();
|
return statement();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (t.IsReturn()) {
|
auto ret_stmt = return_stmt();
|
||||||
auto source = t.source();
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
t = peek();
|
|
||||||
|
|
||||||
std::unique_ptr<ast::Expression> expr = nullptr;
|
|
||||||
if (!t.IsSemicolon()) {
|
|
||||||
expr = logical_or_expression();
|
|
||||||
if (has_error())
|
if (has_error())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
if (ret_stmt != nullptr) {
|
||||||
|
|
||||||
t = next();
|
t = next();
|
||||||
if (!t.IsSemicolon()) {
|
if (!t.IsSemicolon()) {
|
||||||
set_error(t, "missing ;");
|
set_error(t, "missing ;");
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
return std::make_unique<ast::ReturnStatement>(source, std::move(expr));
|
return ret_stmt;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto stmt_if = if_stmt();
|
auto stmt_if = if_stmt();
|
||||||
|
@ -1544,74 +1535,24 @@ std::unique_ptr<ast::Statement> ParserImpl::statement() {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
// break_stmt
|
// return_stmt
|
||||||
// : BREAK ({IF | UNLESS} paren_rhs_stmt)?
|
// : RETURN logical_or_expression?
|
||||||
std::unique_ptr<ast::BreakStatement> ParserImpl::break_stmt() {
|
std::unique_ptr<ast::ReturnStatement> ParserImpl::return_stmt() {
|
||||||
auto t = peek();
|
auto t = peek();
|
||||||
if (!t.IsBreak())
|
if (!t.IsReturn())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
||||||
auto source = t.source();
|
auto source = t.source();
|
||||||
next(); // Consume the peek
|
next(); // Consume the peek
|
||||||
|
|
||||||
ast::StatementCondition condition = ast::StatementCondition::kNone;
|
std::unique_ptr<ast::Expression> expr = nullptr;
|
||||||
std::unique_ptr<ast::Expression> conditional = nullptr;
|
|
||||||
|
|
||||||
t = peek();
|
t = peek();
|
||||||
if (t.IsIf() || t.IsUnless()) {
|
if (!t.IsSemicolon()) {
|
||||||
next(); // Consume the peek
|
expr = logical_or_expression();
|
||||||
|
|
||||||
if (t.IsIf())
|
|
||||||
condition = ast::StatementCondition::kIf;
|
|
||||||
else
|
|
||||||
condition = ast::StatementCondition::kUnless;
|
|
||||||
|
|
||||||
conditional = paren_rhs_stmt();
|
|
||||||
if (has_error())
|
if (has_error())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
if (conditional == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse conditional statement");
|
|
||||||
return nullptr;
|
|
||||||
}
|
}
|
||||||
}
|
return std::make_unique<ast::ReturnStatement>(source, std::move(expr));
|
||||||
|
|
||||||
return std::make_unique<ast::BreakStatement>(source, condition,
|
|
||||||
std::move(conditional));
|
|
||||||
}
|
|
||||||
|
|
||||||
// continue_stmt
|
|
||||||
// : CONTINUE ({IF | UNLESS} paren_rhs_stmt)?
|
|
||||||
std::unique_ptr<ast::ContinueStatement> ParserImpl::continue_stmt() {
|
|
||||||
auto t = peek();
|
|
||||||
if (!t.IsContinue())
|
|
||||||
return nullptr;
|
|
||||||
|
|
||||||
auto source = t.source();
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
ast::StatementCondition condition = ast::StatementCondition::kNone;
|
|
||||||
std::unique_ptr<ast::Expression> conditional = nullptr;
|
|
||||||
|
|
||||||
t = peek();
|
|
||||||
if (t.IsIf() || t.IsUnless()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
if (t.IsIf())
|
|
||||||
condition = ast::StatementCondition::kIf;
|
|
||||||
else
|
|
||||||
condition = ast::StatementCondition::kUnless;
|
|
||||||
|
|
||||||
conditional = paren_rhs_stmt();
|
|
||||||
if (has_error())
|
|
||||||
return nullptr;
|
|
||||||
if (conditional == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse conditional statement");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return std::make_unique<ast::ContinueStatement>(source, condition,
|
|
||||||
std::move(conditional));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// variable_stmt
|
// variable_stmt
|
||||||
|
@ -1679,8 +1620,7 @@ std::unique_ptr<ast::VariableDeclStatement> ParserImpl::variable_stmt() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// if_stmt
|
// if_stmt
|
||||||
// : IF paren_rhs_stmt body_stmt
|
// : IF paren_rhs_stmt body_stmt elseif_stmt? else_stmt?
|
||||||
// {(elseif_stmt else_stmt?) | (else_stmt?)}
|
|
||||||
std::unique_ptr<ast::IfStatement> ParserImpl::if_stmt() {
|
std::unique_ptr<ast::IfStatement> ParserImpl::if_stmt() {
|
||||||
auto t = peek();
|
auto t = peek();
|
||||||
if (!t.IsIf())
|
if (!t.IsIf())
|
||||||
|
@ -1978,6 +1918,76 @@ std::unique_ptr<ast::LoopStatement> ParserImpl::loop_stmt() {
|
||||||
std::move(continuing));
|
std::move(continuing));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// break_stmt
|
||||||
|
// : BREAK ({IF | UNLESS} paren_rhs_stmt)?
|
||||||
|
std::unique_ptr<ast::BreakStatement> ParserImpl::break_stmt() {
|
||||||
|
auto t = peek();
|
||||||
|
if (!t.IsBreak())
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
auto source = t.source();
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
ast::StatementCondition condition = ast::StatementCondition::kNone;
|
||||||
|
std::unique_ptr<ast::Expression> conditional = nullptr;
|
||||||
|
|
||||||
|
t = peek();
|
||||||
|
if (t.IsIf() || t.IsUnless()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
if (t.IsIf())
|
||||||
|
condition = ast::StatementCondition::kIf;
|
||||||
|
else
|
||||||
|
condition = ast::StatementCondition::kUnless;
|
||||||
|
|
||||||
|
conditional = paren_rhs_stmt();
|
||||||
|
if (has_error())
|
||||||
|
return nullptr;
|
||||||
|
if (conditional == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse conditional statement");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return std::make_unique<ast::BreakStatement>(source, condition,
|
||||||
|
std::move(conditional));
|
||||||
|
}
|
||||||
|
|
||||||
|
// continue_stmt
|
||||||
|
// : CONTINUE ({IF | UNLESS} paren_rhs_stmt)?
|
||||||
|
std::unique_ptr<ast::ContinueStatement> ParserImpl::continue_stmt() {
|
||||||
|
auto t = peek();
|
||||||
|
if (!t.IsContinue())
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
auto source = t.source();
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
ast::StatementCondition condition = ast::StatementCondition::kNone;
|
||||||
|
std::unique_ptr<ast::Expression> conditional = nullptr;
|
||||||
|
|
||||||
|
t = peek();
|
||||||
|
if (t.IsIf() || t.IsUnless()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
if (t.IsIf())
|
||||||
|
condition = ast::StatementCondition::kIf;
|
||||||
|
else
|
||||||
|
condition = ast::StatementCondition::kUnless;
|
||||||
|
|
||||||
|
conditional = paren_rhs_stmt();
|
||||||
|
if (has_error())
|
||||||
|
return nullptr;
|
||||||
|
if (conditional == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse conditional statement");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return std::make_unique<ast::ContinueStatement>(source, condition,
|
||||||
|
std::move(conditional));
|
||||||
|
}
|
||||||
|
|
||||||
// continuing_stmt
|
// continuing_stmt
|
||||||
// : CONTINUING body_stmt
|
// : CONTINUING body_stmt
|
||||||
ast::StatementList ParserImpl::continuing_stmt() {
|
ast::StatementList ParserImpl::continuing_stmt() {
|
||||||
|
@ -1989,119 +1999,6 @@ ast::StatementList ParserImpl::continuing_stmt() {
|
||||||
return body_stmt();
|
return body_stmt();
|
||||||
}
|
}
|
||||||
|
|
||||||
// const_literal
|
|
||||||
// : INT_LITERAL
|
|
||||||
// | UINT_LITERAL
|
|
||||||
// | FLOAT_LITERAL
|
|
||||||
// | TRUE
|
|
||||||
// | FALSE
|
|
||||||
std::unique_ptr<ast::Literal> ParserImpl::const_literal() {
|
|
||||||
auto t = peek();
|
|
||||||
if (t.IsTrue()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::BoolType>());
|
|
||||||
if (!type) {
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::BoolLiteral>(type, true);
|
|
||||||
}
|
|
||||||
if (t.IsFalse()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::BoolType>());
|
|
||||||
if (!type) {
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::BoolLiteral>(type, false);
|
|
||||||
}
|
|
||||||
if (t.IsIntLiteral()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::I32Type>());
|
|
||||||
if (!type) {
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::IntLiteral>(type, t.to_i32());
|
|
||||||
}
|
|
||||||
if (t.IsUintLiteral()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::U32Type>());
|
|
||||||
if (!type) {
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::UintLiteral>(type, t.to_u32());
|
|
||||||
}
|
|
||||||
if (t.IsFloatLiteral()) {
|
|
||||||
next(); // Consume the peek
|
|
||||||
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::F32Type>());
|
|
||||||
if (!type) {
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::FloatLiteral>(type, t.to_f32());
|
|
||||||
}
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
// const_expr
|
|
||||||
// : type_decl PAREN_LEFT (const_expr COMMA)? const_expr PAREN_RIGHT
|
|
||||||
// | const_literal
|
|
||||||
std::unique_ptr<ast::ConstructorExpression> ParserImpl::const_expr() {
|
|
||||||
auto t = peek();
|
|
||||||
auto source = t.source();
|
|
||||||
|
|
||||||
auto* type = type_decl();
|
|
||||||
if (type != nullptr) {
|
|
||||||
t = next();
|
|
||||||
if (!t.IsParenLeft()) {
|
|
||||||
set_error(t, "missing ( for type constructor");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
ast::ExpressionList params;
|
|
||||||
auto param = const_expr();
|
|
||||||
if (has_error())
|
|
||||||
return nullptr;
|
|
||||||
if (param == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse constant expression");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
params.push_back(std::move(param));
|
|
||||||
for (;;) {
|
|
||||||
t = peek();
|
|
||||||
if (!t.IsComma())
|
|
||||||
break;
|
|
||||||
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
param = const_expr();
|
|
||||||
if (has_error())
|
|
||||||
return nullptr;
|
|
||||||
if (param == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse constant expression");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
params.push_back(std::move(param));
|
|
||||||
}
|
|
||||||
|
|
||||||
t = next();
|
|
||||||
if (!t.IsParenRight()) {
|
|
||||||
set_error(t, "missing ) for type constructor");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::TypeConstructorExpression>(source, type,
|
|
||||||
std::move(params));
|
|
||||||
}
|
|
||||||
|
|
||||||
auto lit = const_literal();
|
|
||||||
if (has_error())
|
|
||||||
return nullptr;
|
|
||||||
if (lit == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse const literal");
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
return std::make_unique<ast::ScalarConstructorExpression>(source,
|
|
||||||
std::move(lit));
|
|
||||||
}
|
|
||||||
|
|
||||||
// primary_expression
|
// primary_expression
|
||||||
// : (IDENT NAMESPACE)* IDENT
|
// : (IDENT NAMESPACE)* IDENT
|
||||||
// | type_decl PAREN_LEFT argument_expression_list PAREN_RIGHT
|
// | type_decl PAREN_LEFT argument_expression_list PAREN_RIGHT
|
||||||
|
@ -2219,39 +2116,6 @@ std::unique_ptr<ast::Expression> ParserImpl::primary_expression() {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
// argument_expression_list
|
|
||||||
// : (logical_or_expression COMMA)* logical_or_expression
|
|
||||||
ast::ExpressionList ParserImpl::argument_expression_list() {
|
|
||||||
auto arg = logical_or_expression();
|
|
||||||
if (has_error())
|
|
||||||
return {};
|
|
||||||
if (arg == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse argument expression");
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
ast::ExpressionList ret;
|
|
||||||
ret.push_back(std::move(arg));
|
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
auto t = peek();
|
|
||||||
if (!t.IsComma())
|
|
||||||
break;
|
|
||||||
|
|
||||||
next(); // Consume the peek
|
|
||||||
|
|
||||||
arg = logical_or_expression();
|
|
||||||
if (has_error())
|
|
||||||
return {};
|
|
||||||
if (arg == nullptr) {
|
|
||||||
set_error(peek(), "unable to parse argument expression after comma");
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
ret.push_back(std::move(arg));
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
// postfix_expr
|
// postfix_expr
|
||||||
// :
|
// :
|
||||||
// | BRACE_LEFT logical_or_expression BRACE_RIGHT postfix_expr
|
// | BRACE_LEFT logical_or_expression BRACE_RIGHT postfix_expr
|
||||||
|
@ -2330,6 +2194,39 @@ std::unique_ptr<ast::Expression> ParserImpl::postfix_expression() {
|
||||||
return postfix_expr(std::move(prefix));
|
return postfix_expr(std::move(prefix));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// argument_expression_list
|
||||||
|
// : (logical_or_expression COMMA)* logical_or_expression
|
||||||
|
ast::ExpressionList ParserImpl::argument_expression_list() {
|
||||||
|
auto arg = logical_or_expression();
|
||||||
|
if (has_error())
|
||||||
|
return {};
|
||||||
|
if (arg == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse argument expression");
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
ast::ExpressionList ret;
|
||||||
|
ret.push_back(std::move(arg));
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
auto t = peek();
|
||||||
|
if (!t.IsComma())
|
||||||
|
break;
|
||||||
|
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
arg = logical_or_expression();
|
||||||
|
if (has_error())
|
||||||
|
return {};
|
||||||
|
if (arg == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse argument expression after comma");
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
ret.push_back(std::move(arg));
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
// unary_expression
|
// unary_expression
|
||||||
// : postfix_expression
|
// : postfix_expression
|
||||||
// | MINUS unary_expression
|
// | MINUS unary_expression
|
||||||
|
@ -2801,6 +2698,119 @@ std::unique_ptr<ast::AssignmentStatement> ParserImpl::assignment_stmt() {
|
||||||
std::move(rhs));
|
std::move(rhs));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// const_literal
|
||||||
|
// : INT_LITERAL
|
||||||
|
// | UINT_LITERAL
|
||||||
|
// | FLOAT_LITERAL
|
||||||
|
// | TRUE
|
||||||
|
// | FALSE
|
||||||
|
std::unique_ptr<ast::Literal> ParserImpl::const_literal() {
|
||||||
|
auto t = peek();
|
||||||
|
if (t.IsTrue()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::BoolType>());
|
||||||
|
if (!type) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::BoolLiteral>(type, true);
|
||||||
|
}
|
||||||
|
if (t.IsFalse()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::BoolType>());
|
||||||
|
if (!type) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::BoolLiteral>(type, false);
|
||||||
|
}
|
||||||
|
if (t.IsIntLiteral()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::I32Type>());
|
||||||
|
if (!type) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::IntLiteral>(type, t.to_i32());
|
||||||
|
}
|
||||||
|
if (t.IsUintLiteral()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::U32Type>());
|
||||||
|
if (!type) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::UintLiteral>(type, t.to_u32());
|
||||||
|
}
|
||||||
|
if (t.IsFloatLiteral()) {
|
||||||
|
next(); // Consume the peek
|
||||||
|
auto* type = ctx_.type_mgr().Get(std::make_unique<ast::type::F32Type>());
|
||||||
|
if (!type) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::FloatLiteral>(type, t.to_f32());
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
// const_expr
|
||||||
|
// : type_decl PAREN_LEFT (const_expr COMMA)? const_expr PAREN_RIGHT
|
||||||
|
// | const_literal
|
||||||
|
std::unique_ptr<ast::ConstructorExpression> ParserImpl::const_expr() {
|
||||||
|
auto t = peek();
|
||||||
|
auto source = t.source();
|
||||||
|
|
||||||
|
auto* type = type_decl();
|
||||||
|
if (type != nullptr) {
|
||||||
|
t = next();
|
||||||
|
if (!t.IsParenLeft()) {
|
||||||
|
set_error(t, "missing ( for type constructor");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
ast::ExpressionList params;
|
||||||
|
auto param = const_expr();
|
||||||
|
if (has_error())
|
||||||
|
return nullptr;
|
||||||
|
if (param == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse constant expression");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
params.push_back(std::move(param));
|
||||||
|
for (;;) {
|
||||||
|
t = peek();
|
||||||
|
if (!t.IsComma())
|
||||||
|
break;
|
||||||
|
|
||||||
|
next(); // Consume the peek
|
||||||
|
|
||||||
|
param = const_expr();
|
||||||
|
if (has_error())
|
||||||
|
return nullptr;
|
||||||
|
if (param == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse constant expression");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
params.push_back(std::move(param));
|
||||||
|
}
|
||||||
|
|
||||||
|
t = next();
|
||||||
|
if (!t.IsParenRight()) {
|
||||||
|
set_error(t, "missing ) for type constructor");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::TypeConstructorExpression>(source, type,
|
||||||
|
std::move(params));
|
||||||
|
}
|
||||||
|
|
||||||
|
auto lit = const_literal();
|
||||||
|
if (has_error())
|
||||||
|
return nullptr;
|
||||||
|
if (lit == nullptr) {
|
||||||
|
set_error(peek(), "unable to parse const literal");
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return std::make_unique<ast::ScalarConstructorExpression>(source,
|
||||||
|
std::move(lit));
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace wgsl
|
} // namespace wgsl
|
||||||
} // namespace reader
|
} // namespace reader
|
||||||
} // namespace tint
|
} // namespace tint
|
||||||
|
|
|
@ -186,9 +186,12 @@ class ParserImpl {
|
||||||
/// Parses a `statement` grammar element
|
/// Parses a `statement` grammar element
|
||||||
/// @returns the parsed statement or nullptr
|
/// @returns the parsed statement or nullptr
|
||||||
std::unique_ptr<ast::Statement> statement();
|
std::unique_ptr<ast::Statement> statement();
|
||||||
/// Parses a `break_stmt` gramamr element
|
/// Parses a `break_stmt` grammar element
|
||||||
/// @returns the parsed statement or nullptr
|
/// @returns the parsed statement or nullptr
|
||||||
std::unique_ptr<ast::BreakStatement> break_stmt();
|
std::unique_ptr<ast::BreakStatement> break_stmt();
|
||||||
|
/// Parses a `return_stmt` grammar element
|
||||||
|
/// @returns the parsed statement or nullptr
|
||||||
|
std::unique_ptr<ast::ReturnStatement> return_stmt();
|
||||||
/// Parses a `continue_stmt` grammar element
|
/// Parses a `continue_stmt` grammar element
|
||||||
/// @returns the parsed statement or nullptr
|
/// @returns the parsed statement or nullptr
|
||||||
std::unique_ptr<ast::ContinueStatement> continue_stmt();
|
std::unique_ptr<ast::ContinueStatement> continue_stmt();
|
||||||
|
|
Loading…
Reference in New Issue