From: Mikko Rasa Date: Thu, 4 Mar 2021 22:27:31 +0000 (+0200) Subject: Record location information in all syntax nodes X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=a82fcc462550d63a101aca4313807b1320789a5a Record location information in all syntax nodes --- diff --git a/source/glsl/parser.cpp b/source/glsl/parser.cpp index b09d2b55..0f7122f5 100644 --- a/source/glsl/parser.cpp +++ b/source/glsl/parser.cpp @@ -188,6 +188,15 @@ bool Parser::is_identifier(const string &token) return re.match(token); } +template +RefPtr Parser::create_node() +{ + RefPtr node = new T; + node->source = source_index; + node->line = tokenizer.get_location().line; + return node; +} + template RefPtr Parser::parse_with_recovery(RefPtr (Parser::*parse_func)()) { @@ -247,9 +256,7 @@ RefPtr Parser::parse_global_declaration() token = tokenizer.peek_token(); if(is_interface_qualifier(token) && tokenizer.peek_token(1)==";") { - RefPtr iface_lo = new InterfaceLayout; - iface_lo->source = source_index; - iface_lo->line = tokenizer.get_location().line; + RefPtr iface_lo = create_node(); iface_lo->layout.qualifiers = layout->qualifiers; iface_lo->interface = tokenizer.parse_token(); tokenizer.expect(";"); @@ -302,9 +309,7 @@ RefPtr Parser::parse_statement() return parse_return(); else if(token=="break" || token=="continue" || token=="discard") { - RefPtr jump = new Jump; - jump->source = source_index; - jump->line = tokenizer.get_location().line; + RefPtr jump = create_node(); jump->keyword = tokenizer.parse_token(); tokenizer.expect(";"); @@ -319,9 +324,7 @@ RefPtr Parser::parse_statement() } else if(!token.empty()) { - RefPtr expr = new ExpressionStatement; - expr->source = source_index; - expr->line = tokenizer.get_location().line; + RefPtr expr = create_node(); expr->expression = parse_expression(); tokenizer.expect(";"); @@ -337,9 +340,7 @@ RefPtr Parser::parse_import() throw invalid_shader_source(tokenizer.get_location(), "Imports are only allowed in the shared section"); tokenizer.expect("import"); - RefPtr import = new Import; - import->source = source_index; - import->line = tokenizer.get_location().line; + RefPtr import = create_node(); import->module = expect_identifier(); tokenizer.expect(";"); return import; @@ -348,9 +349,7 @@ RefPtr Parser::parse_import() RefPtr Parser::parse_precision() { tokenizer.expect("precision"); - RefPtr precision = new Precision; - precision->source = source_index; - precision->line = tokenizer.get_location().line; + RefPtr precision = create_node(); precision->precision = tokenizer.parse_token(); if(!is_precision_qualifier(precision->precision)) @@ -370,7 +369,7 @@ RefPtr Parser::parse_layout() { tokenizer.expect("layout"); tokenizer.expect("("); - RefPtr layout = new Layout; + RefPtr layout = create_node(); while(1) { string token = tokenizer.parse_token(); @@ -454,7 +453,7 @@ RefPtr Parser::parse_expression(unsigned precedence) } else if(token==".") { - RefPtr memacc = new MemberAccess; + RefPtr memacc = create_node(); memacc->left = left; memacc->oper = oper; tokenizer.parse_token(); @@ -463,7 +462,7 @@ RefPtr Parser::parse_expression(unsigned precedence) } else if(oper && oper->type==Operator::POSTFIX) { - RefPtr unary = new UnaryExpression; + RefPtr unary = create_node(); unary->oper = oper; tokenizer.parse_token(); unary->expression = left; @@ -480,7 +479,7 @@ RefPtr Parser::parse_expression(unsigned precedence) if(token=="(") { tokenizer.parse_token(); - RefPtr parexpr = new ParenthesizedExpression; + RefPtr parexpr = create_node(); parexpr->expression = parse_expression(); tokenizer.expect(")"); left = parexpr; @@ -493,14 +492,14 @@ RefPtr Parser::parse_expression(unsigned precedence) } else if(is_identifier(token)) { - RefPtr var = new VariableReference; + RefPtr var = create_node(); var->name = expect_identifier(); left = var; left_var = var.get(); } else if(oper && oper->type==Operator::PREFIX) { - RefPtr unary = new UnaryExpression; + RefPtr unary = create_node(); unary->oper = oper; tokenizer.parse_token(); unary->expression = parse_expression(oper->precedence); @@ -514,7 +513,8 @@ RefPtr Parser::parse_expression(unsigned precedence) RefPtr Parser::parse_binary(const RefPtr &left, const Operator &oper) { - RefPtr binary = (oper.precedence==16 ? new Assignment : new BinaryExpression); + RefPtr binary = (oper.precedence==16 ? + static_cast >(create_node()) : create_node()); binary->left = left; binary->oper = &oper; tokenizer.expect(oper.token); @@ -530,7 +530,7 @@ RefPtr Parser::parse_binary(const RefPtr &left, co RefPtr Parser::parse_function_call(const VariableReference &var) { - RefPtr call = new FunctionCall; + RefPtr call = create_node(); call->name = var.name; call->constructor = is_type(call->name); call->oper = &Operator::get_operator("(", Operator::POSTFIX); @@ -548,9 +548,7 @@ RefPtr Parser::parse_function_call(const VariableReference &var) RefPtr Parser::parse_struct_declaration() { tokenizer.expect("struct"); - RefPtr strct = new StructDeclaration; - strct->source = source_index; - strct->line = tokenizer.get_location().line; + RefPtr strct = create_node(); strct->name = expect_identifier(); parse_block(strct->members, true, &Parser::parse_variable_declaration); @@ -562,9 +560,7 @@ RefPtr Parser::parse_struct_declaration() RefPtr Parser::parse_variable_declaration() { - RefPtr var = new VariableDeclaration; - var->source = source_index; - var->line = tokenizer.get_location().line; + RefPtr var = create_node(); string token = tokenizer.peek_token(); while(is_qualifier(token)) @@ -617,9 +613,7 @@ RefPtr Parser::parse_variable_declaration_with_layout() RefPtr Parser::parse_function_declaration() { - RefPtr func = new FunctionDeclaration; - func->source = source_index; - func->line = tokenizer.get_location().line; + RefPtr func = create_node(); func->return_type = expect_type(); func->name = expect_identifier(); @@ -629,7 +623,7 @@ RefPtr Parser::parse_function_declaration() if(!func->parameters.empty()) tokenizer.expect(","); - RefPtr var = new VariableDeclaration; + RefPtr var = create_node(); string token = tokenizer.peek_token(); if(token=="in" || token=="out" || token=="inout") var->interface = tokenizer.parse_token(); @@ -655,9 +649,7 @@ RefPtr Parser::parse_function_declaration() RefPtr Parser::parse_interface_block() { - RefPtr iface = new InterfaceBlock; - iface->source = source_index; - iface->line = tokenizer.get_location().line; + RefPtr iface = create_node(); iface->interface = tokenizer.parse_token(); if(!is_interface_qualifier(iface->interface)) @@ -682,9 +674,7 @@ RefPtr Parser::parse_interface_block() RefPtr Parser::parse_conditional() { tokenizer.expect("if"); - RefPtr cond = new Conditional; - cond->source = source_index; - cond->line = tokenizer.get_location().line; + RefPtr cond = create_node(); tokenizer.expect("("); cond->condition = parse_expression(); tokenizer.expect(")"); @@ -704,9 +694,7 @@ RefPtr Parser::parse_conditional() RefPtr Parser::parse_for() { tokenizer.expect("for"); - RefPtr loop = new Iteration; - loop->source = source_index; - loop->line = tokenizer.get_location().line; + RefPtr loop = create_node(); tokenizer.expect("("); string token = tokenizer.peek_token(); if(is_type(token)) @@ -715,7 +703,7 @@ RefPtr Parser::parse_for() { if(token!=";") { - RefPtr expr = new ExpressionStatement; + RefPtr expr = create_node(); expr->expression = parse_expression(); loop->init_statement = expr; } @@ -736,9 +724,7 @@ RefPtr Parser::parse_for() RefPtr Parser::parse_while() { tokenizer.expect("while"); - RefPtr loop = new Iteration; - loop->source = source_index; - loop->line = tokenizer.get_location().line; + RefPtr loop = create_node(); tokenizer.expect("("); loop->condition = parse_expression(); tokenizer.expect(")"); @@ -751,9 +737,7 @@ RefPtr Parser::parse_while() RefPtr Parser::parse_passthrough() { tokenizer.expect("passthrough"); - RefPtr pass = new Passthrough; - pass->source = source_index; - pass->line = tokenizer.get_location().line; + RefPtr pass = create_node(); if(cur_stage->type==Stage::GEOMETRY) { tokenizer.expect("["); @@ -767,9 +751,7 @@ RefPtr Parser::parse_passthrough() RefPtr Parser::parse_return() { tokenizer.expect("return"); - RefPtr ret = new Return; - ret->source = source_index; - ret->line = tokenizer.get_location().line; + RefPtr ret = create_node(); if(tokenizer.peek_token()!=";") ret->expression = parse_expression(); tokenizer.expect(";"); diff --git a/source/glsl/parser.h b/source/glsl/parser.h index 376ccc6c..21d86e9d 100644 --- a/source/glsl/parser.h +++ b/source/glsl/parser.h @@ -60,9 +60,11 @@ private: void preprocess_pragma_msp(); void preprocess_stage(); - RefPtr parse_global_declaration(); + template + RefPtr create_node(); template RefPtr parse_with_recovery(RefPtr (Parser::*)()); + RefPtr parse_global_declaration(); RefPtr parse_statement(); RefPtr parse_import(); RefPtr parse_precision(); diff --git a/source/glsl/syntax.cpp b/source/glsl/syntax.cpp index b74f482a..93157864 100644 --- a/source/glsl/syntax.cpp +++ b/source/glsl/syntax.cpp @@ -75,12 +75,6 @@ NodeContainer::NodeContainer(const NodeContainer &c): } -Statement::Statement(): - source(GENERATED_SOURCE), - line(1) -{ } - - Block::Block(): use_braces(false), parent(0) diff --git a/source/glsl/syntax.h b/source/glsl/syntax.h index da7b0907..f275eab8 100644 --- a/source/glsl/syntax.h +++ b/source/glsl/syntax.h @@ -55,9 +55,11 @@ struct NodeVisitor; struct Node { -protected: - Node() { } - Node(const Node &) { } + int source; + unsigned line; + + Node(): source(GENERATED_SOURCE), line(1) { } + Node(const Node &n): source(n.source), line(n.line) { } private: Node &operator=(const Node &); public: @@ -106,11 +108,6 @@ struct FunctionDeclaration; struct Statement: Node { - int source; - unsigned line; - - Statement(); - virtual Statement *clone() const = 0; }; diff --git a/source/glsl/validate.cpp b/source/glsl/validate.cpp index 1e967dc8..78d3bb4b 100644 --- a/source/glsl/validate.cpp +++ b/source/glsl/validate.cpp @@ -12,15 +12,12 @@ Validator::Validator(): stage(0) { } -void Validator::diagnose(Statement *statement, Diagnostic::Severity severity, const string &message) +void Validator::diagnose(Node &node, Diagnostic::Severity severity, const string &message) { Diagnostic diag; diag.severity = severity; - if(statement) - { - diag.source = statement->source; - diag.line = statement->line; - } + diag.source = node.source; + diag.line = node.line; diag.message = message; stage->diagnostics.push_back(diag); } @@ -32,8 +29,8 @@ DeclarationValidator::DeclarationValidator(): void DeclarationValidator::multiple_definition(const string &name, Statement &statement, Statement &previous) { - error(&statement, format("Multiple definition of %s", name)); - diagnose(&previous, Diagnostic::INFO, "Previous definition is here"); + error(statement, format("Multiple definition of %s", name)); + diagnose(previous, Diagnostic::INFO, "Previous definition is here"); } Statement *DeclarationValidator::find_definition(const string &name) diff --git a/source/glsl/validate.h b/source/glsl/validate.h index 6149fd7f..01f2ba4f 100644 --- a/source/glsl/validate.h +++ b/source/glsl/validate.h @@ -17,8 +17,8 @@ protected: Validator(); - void diagnose(Statement *, Diagnostic::Severity, const std::string &); - void error(Statement *s, const std::string &m) { diagnose(s, Diagnostic::ERR, m); } + void diagnose(Node &, Diagnostic::Severity, const std::string &); + void error(Node &n, const std::string &m) { diagnose(n, Diagnostic::ERR, m); } }; class DeclarationValidator: private Validator