Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/parser.yy

    r513e165 rea0c5e3  
    1010// Created On       : Sat Sep  1 20:22:55 2001
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Sep 13 11:01:20 2017
    13 // Update Count     : 2803
     12// Last Modified On : Mon Sep 11 18:12:00 2017
     13// Update Count     : 2787
    1414//
    1515
     
    5656#include "LinkageSpec.h"
    5757#include "Common/SemanticError.h"                                               // error_str
    58 #include "Common/utility.h"                                                             // for maybeMoveBuild, maybeBuild, CodeLo...
    5958
    6059extern DeclarationNode * parseTree;
     
    439438                { $$ = $2; }
    440439        | '(' compound_statement ')'                                            // GCC, lambda expression
    441                 { $$ = new ExpressionNode( new StmtExpr( dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >($2) ) ) ); }
     440                { $$ = new ExpressionNode( build_valexpr( $2 ) ); }
    442441        | primary_expression '{' argument_expression_list '}' // CFA, constructor call
    443442                {
     
    619618                // VIRTUAL cannot be opt because of look ahead issues
    620619        | '(' VIRTUAL ')' cast_expression
    621                 { $$ = new ExpressionNode( new VirtualCastExpr( maybeMoveBuild< Expression >( $4 ), maybeMoveBuildType( nullptr ) ) ); }
     620                { $$ = new ExpressionNode( build_virtual_cast( nullptr, $4 ) ); }
    622621        | '(' VIRTUAL type_no_function ')' cast_expression
    623                 { $$ = new ExpressionNode( new VirtualCastExpr( maybeMoveBuild< Expression >( $5 ), maybeMoveBuildType( $3 ) ) ); }
     622                { $$ = new ExpressionNode( build_virtual_cast( $3, $5 ) ); }
    624623//      | '(' type_no_function ')' tuple
    625624//              { $$ = new ExpressionNode( build_cast( $2, $4 ) ); }
     
    772771        assignment_expression
    773772        | comma_expression ',' assignment_expression
    774                 { $$ = new ExpressionNode( new CommaExpr( maybeMoveBuild< Expression >( $1 ), maybeMoveBuild< Expression >( $3 ) ) ); }
     773                { $$ = new ExpressionNode( build_comma( $1, $3 ) ); }
    775774        ;
    776775
     
    11551154asm_operand:                                                                                    // GCC
    11561155        string_literal '(' constant_expression ')'
    1157                 { $$ = new ExpressionNode( new AsmExpr( maybeMoveBuild< Expression >( (ExpressionNode *)nullptr ), $1, maybeMoveBuild< Expression >( $3 ) ) ); }
     1156                { $$ = new ExpressionNode( build_asmexpr( 0, $1, $3 ) ); }
    11581157        | '[' constant_expression ']' string_literal '(' constant_expression ')'
    1159                 { $$ = new ExpressionNode( new AsmExpr( maybeMoveBuild< Expression >( $2 ), $4, maybeMoveBuild< Expression >( $6 ) ) ); }
     1158                { $$ = new ExpressionNode( build_asmexpr( $2, $4, $6 ) ); }
    11601159        ;
    11611160
     
    11661165                { $$ = new ExpressionNode( $1 ); }
    11671166        | asm_clobbers_list_opt ',' string_literal
    1168                 // set_last returns ParseNode *
     1167                // set_last return ParseNode *
    11691168                { $$ = (ExpressionNode *)$1->set_last( new ExpressionNode( $3 ) ); }
    11701169        ;
     
    21662165type_list:                                                                                              // CFA
    21672166        type
    2168                 { $$ = new ExpressionNode( new TypeExpr( maybeMoveBuildType( $1 ) ) ); }
     2167                { $$ = new ExpressionNode( build_typevalue( $1 ) ); }
    21692168        | assignment_expression
    21702169        | type_list ',' type
    2171                 { $$ = (ExpressionNode *)( $1->set_last( new ExpressionNode( new TypeExpr( maybeMoveBuildType( $3 ) ) ) ) ); }
     2170                { $$ = (ExpressionNode *)( $1->set_last( new ExpressionNode( build_typevalue( $3 ) ) ) ); }
    21722171        | type_list ',' assignment_expression
    21732172                { $$ = (ExpressionNode *)( $1->set_last( $3 )); }
Note: See TracChangeset for help on using the changeset viewer.