source: src/Parser/StatementNode.h @ 71a422a

Last change on this file since 71a422a was 6e1e2d0, checked in by caparsons <caparson@…>, 13 months ago

resolved merge conflicts

  • Property mode set to 100644
File size: 5.4 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// StatementNode.h --
8//
9// Author           : Andrew Beach
10// Created On       : Wed Apr  5 11:42:00 2023
11// Last Modified By : Andrew Beach
12// Last Modified On : Tue Apr 11  9:43:00 2023
13// Update Count     : 1
14//
15
16#pragma once
17
18#include "ParseNode.h"
19
20struct StatementNode final : public ParseNode {
21        StatementNode() : stmt( nullptr ) {}
22        StatementNode( ast::Stmt * stmt ) : stmt( stmt ) {}
23        StatementNode( DeclarationNode * decl );
24        virtual ~StatementNode() {}
25
26        virtual StatementNode * clone() const final { assert( false ); return nullptr; }
27        ast::Stmt * build() { return stmt.release(); }
28
29        StatementNode * add_label(
30                        const CodeLocation & location,
31                        const std::string * name,
32                        DeclarationNode * attr = nullptr );
33
34        virtual void print( std::ostream & os, __attribute__((unused)) int indent = 0 ) const override {
35                os << stmt.get() << std::endl;
36        }
37
38        std::unique_ptr<ast::Stmt> stmt;
39}; // StatementNode
40
41struct ClauseNode final : public ParseNode {
42        ClauseNode( ast::StmtClause * clause ) : clause( clause ) {}
43        virtual ~ClauseNode() {}
44
45        ClauseNode * set_last( ParseNode * newlast ) {
46                ParseNode::set_last( newlast );
47        return this;
48    }
49
50        virtual ClauseNode * clone() const final { assert( false ); return nullptr; }
51        ast::StmtClause * build() { return clause.release(); }
52
53        virtual ClauseNode * append_last_case( StatementNode * );
54
55        std::unique_ptr<ast::StmtClause> clause;
56};
57
58ast::Stmt * build_expr( CodeLocation const &, ExpressionNode * ctl );
59
60struct CondCtl {
61        CondCtl( DeclarationNode * decl, ExpressionNode * condition ) :
62                init( decl ? new StatementNode( decl ) : nullptr ), condition( condition ) {}
63
64        StatementNode * init;
65        ExpressionNode * condition;
66};
67
68struct ForCtrl {
69        ForCtrl( StatementNode * stmt, ExpressionNode * condition, ExpressionNode * change ) :
70                init( stmt ), condition( condition ), change( change ) {}
71
72        StatementNode * init;
73        ExpressionNode * condition;
74        ExpressionNode * change;
75};
76
77ast::Stmt * build_if( const CodeLocation &, CondCtl * ctl, StatementNode * then, StatementNode * else_ );
78ast::Stmt * build_switch( const CodeLocation &, bool isSwitch, ExpressionNode * ctl, ClauseNode * stmt );
79ast::CaseClause * build_case( const CodeLocation &, ExpressionNode * ctl );
80ast::CaseClause * build_default( const CodeLocation & );
81ast::Stmt * build_while( const CodeLocation &, CondCtl * ctl, StatementNode * stmt, StatementNode * else_ = nullptr );
82ast::Stmt * build_do_while( const CodeLocation &, ExpressionNode * ctl, StatementNode * stmt, StatementNode * else_ = nullptr );
83ast::Stmt * build_for( const CodeLocation &, ForCtrl * forctl, StatementNode * stmt, StatementNode * else_ = nullptr );
84ast::Stmt * build_branch( const CodeLocation &, ast::BranchStmt::Kind kind );
85ast::Stmt * build_branch( const CodeLocation &, std::string * identifier, ast::BranchStmt::Kind kind );
86ast::Stmt * build_computedgoto( ExpressionNode * ctl );
87ast::Stmt * build_return( const CodeLocation &, ExpressionNode * ctl );
88ast::Stmt * build_throw( const CodeLocation &, ExpressionNode * ctl );
89ast::Stmt * build_resume( const CodeLocation &, ExpressionNode * ctl );
90ast::Stmt * build_resume_at( ExpressionNode * ctl , ExpressionNode * target );
91ast::Stmt * build_try( const CodeLocation &, StatementNode * try_, ClauseNode * catch_, ClauseNode * finally_ );
92ast::CatchClause * build_catch( const CodeLocation &, ast::ExceptionKind kind, DeclarationNode * decl, ExpressionNode * cond, StatementNode * body );
93ast::FinallyClause * build_finally( const CodeLocation &, StatementNode * stmt );
94ast::Stmt * build_compound( const CodeLocation &, StatementNode * first );
95StatementNode * maybe_build_compound( const CodeLocation &, StatementNode * first );
96ast::Stmt * build_asm( const CodeLocation &, bool is_volatile, ExpressionNode * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
97ast::Stmt * build_directive( const CodeLocation &, std::string * directive );
98ast::SuspendStmt * build_suspend( const CodeLocation &, StatementNode *, ast::SuspendStmt::Kind );
99ast::WaitForStmt * build_waitfor( const CodeLocation &, ast::WaitForStmt * existing, ExpressionNode * when, ExpressionNode * targetExpr, StatementNode * stmt );
100ast::WaitForStmt * build_waitfor_else( const CodeLocation &, ast::WaitForStmt * existing, ExpressionNode * when, StatementNode * stmt );
101ast::WaitForStmt * build_waitfor_timeout( const CodeLocation &, ast::WaitForStmt * existing, ExpressionNode * when, ExpressionNode * timeout, StatementNode * stmt );
102ast::WaitUntilStmt::ClauseNode * build_waituntil_clause( const CodeLocation &, ExpressionNode * when, ExpressionNode * targetExpr, StatementNode * stmt );
103ast::WaitUntilStmt::ClauseNode * build_waituntil_else( const CodeLocation &, ExpressionNode * when, StatementNode * stmt );
104ast::WaitUntilStmt::ClauseNode * build_waituntil_timeout( const CodeLocation &, ExpressionNode * when, ExpressionNode * timeout, StatementNode * stmt );
105ast::WaitUntilStmt * build_waituntil_stmt( const CodeLocation &, ast::WaitUntilStmt::ClauseNode * root );
106ast::Stmt * build_with( const CodeLocation &, ExpressionNode * exprs, StatementNode * stmt );
107ast::Stmt * build_mutex( const CodeLocation &, ExpressionNode * exprs, StatementNode * stmt );
Note: See TracBrowser for help on using the repository browser.