source: src/ControlStruct/MultiLevelExit.cpp @ eb211bf

ADTast-experimentalenumpthread-emulationqualifiedEnum
Last change on this file since eb211bf was 891f707, checked in by Thierry Delisle <tdelisle@…>, 2 years ago

Removed move in MLE as it prevents copy-ellision.

  • Property mode set to 100644
File size: 21.2 KB
RevLine 
[b8ab91a]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//
[817bb3c]7// MultiLevelExit.cpp -- Replaces CFA's local control flow with C's versions.
[b8ab91a]8//
9// Author           : Andrew Beach
10// Created On       : Mon Nov  1 13:48:00 2021
[66daee4]11// Last Modified By : Peter A. Buhr
[2f52b18]12// Last Modified On : Wed Feb  2 23:07:54 2022
13// Update Count     : 33
[b8ab91a]14//
15
16#include "MultiLevelExit.hpp"
17
18#include "AST/Pass.hpp"
19#include "AST/Stmt.hpp"
[66daee4]20#include "LabelGeneratorNew.hpp"
[b8ab91a]21
22#include <set>
[66daee4]23using namespace std;
24using namespace ast;
[b8ab91a]25
26namespace ControlStruct {
27class Entry {
[66daee4]28  public:
29        const Stmt * stmt;
30  private:
[b8ab91a]31        // Organized like a manual ADT. Avoids creating a bunch of dead data.
32        struct Target {
[66daee4]33                Label label;
[b8ab91a]34                bool used = false;
[66daee4]35                Target( const Label & label ) : label( label ) {}
[b8ab91a]36                Target() : label( CodeLocation() ) {}
37        };
38        Target firstTarget;
39        Target secondTarget;
40
41        enum Kind {
[3b0bc16]42                ForStmtK, WhileDoStmtK, CompoundStmtK, IfStmtK, CaseStmtK, SwitchStmtK, TryStmtK
[b8ab91a]43        } kind;
44
45        bool fallDefaultValid = true;
46
[66daee4]47        static Label & useTarget( Target & target ) {
[b8ab91a]48                target.used = true;
49                return target.label;
50        }
[66daee4]51  public:
52        Entry( const ForStmt * stmt, Label breakExit, Label contExit ) :
53                stmt( stmt ), firstTarget( breakExit ), secondTarget( contExit ), kind( ForStmtK ) {}
[3b0bc16]54        Entry( const WhileDoStmt * stmt, Label breakExit, Label contExit ) :
55                stmt( stmt ), firstTarget( breakExit ), secondTarget( contExit ), kind( WhileDoStmtK ) {}
[66daee4]56        Entry( const CompoundStmt *stmt, Label breakExit ) :
57                stmt( stmt ), firstTarget( breakExit ), secondTarget(), kind( CompoundStmtK ) {}
58        Entry( const IfStmt *stmt, Label breakExit ) :
59                stmt( stmt ), firstTarget( breakExit ), secondTarget(), kind( IfStmtK ) {}
60        Entry( const CaseStmt *stmt, Label fallExit ) :
61                stmt( stmt ), firstTarget( fallExit ), secondTarget(), kind( CaseStmtK ) {}
62        Entry( const SwitchStmt *stmt, Label breakExit, Label fallDefaultExit ) :
63                stmt( stmt ), firstTarget( breakExit ), secondTarget( fallDefaultExit ), kind( SwitchStmtK ) {}
64        Entry( const TryStmt *stmt, Label breakExit ) :
65                stmt( stmt ), firstTarget( breakExit ), secondTarget(), kind( TryStmtK ) {}
66
[3b0bc16]67        bool isContTarget() const { return kind <= WhileDoStmtK; }
[66daee4]68        bool isBreakTarget() const { return kind != CaseStmtK; }
69        bool isFallTarget() const { return kind == CaseStmtK; }
70        bool isFallDefaultTarget() const { return kind == SwitchStmtK; }
[b8ab91a]71
[3e5db5b4]72        // These routines set a target as being "used" by a BranchStmt
[3b0bc16]73        Label useContExit() { assert( kind <= WhileDoStmtK ); return useTarget(secondTarget); }
[66daee4]74        Label useBreakExit() { assert( kind != CaseStmtK ); return useTarget(firstTarget); }
75        Label useFallExit() { assert( kind == CaseStmtK );  return useTarget(firstTarget); }
76        Label useFallDefaultExit() { assert( kind == SwitchStmtK ); return useTarget(secondTarget); }
[b8ab91a]77
[3e5db5b4]78        // These routines check if a specific label for a statement is used by a BranchStmt
[3b0bc16]79        bool isContUsed() const { assert( kind <= WhileDoStmtK ); return secondTarget.used; }
[66daee4]80        bool isBreakUsed() const { assert( kind != CaseStmtK ); return firstTarget.used; }
81        bool isFallUsed() const { assert( kind == CaseStmtK ); return firstTarget.used; }
82        bool isFallDefaultUsed() const { assert( kind == SwitchStmtK ); return secondTarget.used; }
[b8ab91a]83        void seenDefault() { fallDefaultValid = false; }
84        bool isFallDefaultValid() const { return fallDefaultValid; }
85};
86
[66daee4]87// Helper predicates used in find_if calls (it doesn't take methods):
[b8ab91a]88bool isBreakTarget( const Entry & entry ) {
89        return entry.isBreakTarget();
90}
91
92bool isContinueTarget( const Entry & entry ) {
93        return entry.isContTarget();
94}
95
96bool isFallthroughTarget( const Entry & entry ) {
97        return entry.isFallTarget();
98}
99
100bool isFallthroughDefaultTarget( const Entry & entry ) {
101        return entry.isFallDefaultTarget();
102}
103
[817bb3c]104struct MultiLevelExitCore final :
[66daee4]105        public WithVisitorRef<MultiLevelExitCore>,
106        public WithShortCircuiting, public WithGuards {
[cb921d4]107        MultiLevelExitCore( const LabelToStmt & lt );
[b8ab91a]108
[66daee4]109        void previsit( const FunctionDecl * );
110
111        const CompoundStmt * previsit( const CompoundStmt * );
112        const BranchStmt * postvisit( const BranchStmt * );
[3b0bc16]113        void previsit( const WhileDoStmt * );
114        const WhileDoStmt * postvisit( const WhileDoStmt * );
[66daee4]115        void previsit( const ForStmt * );
116        const ForStmt * postvisit( const ForStmt * );
117        const CaseStmt * previsit( const CaseStmt * );
118        void previsit( const IfStmt * );
119        const IfStmt * postvisit( const IfStmt * );
120        void previsit( const SwitchStmt * );
121        const SwitchStmt * postvisit( const SwitchStmt * );
122        void previsit( const ReturnStmt * );
123        void previsit( const TryStmt * );
124        void postvisit( const TryStmt * );
125        void previsit( const FinallyStmt * );
126
127        const Stmt * mutateLoop( const Stmt * body, Entry& );
[b8ab91a]128
[817bb3c]129        const LabelToStmt & target_table;
[66daee4]130        set<Label> fallthrough_labels;
131        vector<Entry> enclosing_control_structures;
132        Label break_label;
[b8ab91a]133        bool inFinally;
134
135        template<typename LoopNode>
136        void prehandleLoopStmt( const LoopNode * loopStmt );
137        template<typename LoopNode>
138        const LoopNode * posthandleLoopStmt( const LoopNode * loopStmt );
139
[66daee4]140        list<ptr<Stmt>> fixBlock(
141                const list<ptr<Stmt>> & kids, bool caseClause );
[b8ab91a]142
[817bb3c]143        template<typename UnaryPredicate>
144        auto findEnclosingControlStructure( UnaryPredicate pred ) {
[66daee4]145                return find_if( enclosing_control_structures.rbegin(),
146                                                enclosing_control_structures.rend(), pred );
[817bb3c]147        }
148};
[b8ab91a]149
[66daee4]150NullStmt * labelledNullStmt(
151        const CodeLocation & cl, const Label & label ) {
152        return new NullStmt( cl, vector<Label>{ label } );
[b8ab91a]153}
154
[cb921d4]155MultiLevelExitCore::MultiLevelExitCore( const LabelToStmt & lt ) :
156        target_table( lt ), break_label( CodeLocation(), "" ),
[b8ab91a]157        inFinally( false )
158{}
159
[66daee4]160void MultiLevelExitCore::previsit( const FunctionDecl * ) {
[b8ab91a]161        visit_children = false;
162}
163
[66daee4]164const CompoundStmt * MultiLevelExitCore::previsit(
165        const CompoundStmt * stmt ) {
[b8ab91a]166        visit_children = false;
[3e5db5b4]167
168        // if the stmt is labelled then generate a label to check in postvisit if the label is used
[2f52b18]169        bool isLabeled = ! stmt->labels.empty();
[b8ab91a]170        if ( isLabeled ) {
[66daee4]171                Label breakLabel = newLabel( "blockBreak", stmt );
[b8ab91a]172                enclosing_control_structures.emplace_back( stmt, breakLabel );
173                GuardAction( [this]() { enclosing_control_structures.pop_back(); } );
174        }
175
[66daee4]176        auto mutStmt = mutate( stmt );
[b8ab91a]177        // A child statement may set the break label.
[891f707]178        mutStmt->kids = fixBlock( stmt->kids, false );
[b8ab91a]179
180        if ( isLabeled ) {
[2f52b18]181                assert( ! enclosing_control_structures.empty() );
[b8ab91a]182                Entry & entry = enclosing_control_structures.back();
[2f52b18]183                if ( ! entry.useBreakExit().empty() ) {
[b8ab91a]184                        break_label = entry.useBreakExit();
185                }
186        }
187        return mutStmt;
188}
189
190size_t getUnusedIndex(
[66daee4]191        const Stmt * stmt, const Label & originalTarget ) {
[b8ab91a]192        const size_t size = stmt->labels.size();
193
[66daee4]194        // If the label is empty, do not add unused attribute.
195  if ( originalTarget.empty() ) return size;
[b8ab91a]196
197        // Search for a label that matches the originalTarget.
198        for ( size_t i = 0 ; i < size ; ++i ) {
[66daee4]199                const Label & label = stmt->labels[i];
[b8ab91a]200                if ( label == originalTarget ) {
[66daee4]201                        for ( const Attribute * attr : label.attributes ) {
[b8ab91a]202                                if ( attr->name == "unused" ) return size;
203                        }
204                        return i;
205                }
206        }
[6180274]207        assertf( false, "CFA internal error: could not find label '%s' on statement %s",
[66daee4]208                         originalTarget.name.c_str(), toString( stmt ).c_str() );
[b8ab91a]209}
210
[66daee4]211const Stmt * addUnused(
212        const Stmt * stmt, const Label & originalTarget ) {
[b8ab91a]213        size_t i = getUnusedIndex( stmt, originalTarget );
214        if ( i == stmt->labels.size() ) {
215                return stmt;
216        }
[66daee4]217        Stmt * mutStmt = mutate( stmt );
218        mutStmt->labels[i].attributes.push_back( new Attribute( "unused" ) );
[b8ab91a]219        return mutStmt;
220}
221
[3e5db5b4]222// This routine updates targets on enclosing control structures to indicate which
223//     label is used by the BranchStmt that is passed
[66daee4]224const BranchStmt * MultiLevelExitCore::postvisit( const BranchStmt * stmt ) {
225        vector<Entry>::reverse_iterator targetEntry =
[b8ab91a]226                enclosing_control_structures.rend();
[3e5db5b4]227
228        // Labels on different stmts require different approaches to access
[b8ab91a]229        switch ( stmt->kind ) {
[66daee4]230          case BranchStmt::Goto:
[b8ab91a]231                return stmt;
[66daee4]232          case BranchStmt::Continue:
233          case BranchStmt::Break: {
234                  bool isContinue = stmt->kind == BranchStmt::Continue;
235                  // Handle unlabeled break and continue.
236                  if ( stmt->target.empty() ) {
237                          if ( isContinue ) {
238                                  targetEntry = findEnclosingControlStructure( isContinueTarget );
239                          } else {
240                                  if ( enclosing_control_structures.empty() ) {
241                                          SemanticError( stmt->location,
242                                                                         "'break' outside a loop, 'switch', or labelled block" );
243                                  }
244                                  targetEntry = findEnclosingControlStructure( isBreakTarget );
245                          }
246                          // Handle labeled break and continue.
247                  } else {
248                          // Lookup label in table to find attached control structure.
249                          targetEntry = findEnclosingControlStructure(
250                                  [ targetStmt = target_table.at(stmt->target) ](auto entry){
251                                          return entry.stmt == targetStmt;
252                                  } );
253                  }
254                  // Ensure that selected target is valid.
[2f52b18]255                  if ( targetEntry == enclosing_control_structures.rend() || ( isContinue && ! isContinueTarget( *targetEntry ) ) ) {
[66daee4]256                          SemanticError( stmt->location, toString( (isContinue ? "'continue'" : "'break'"),
257                                                        " target must be an enclosing ", (isContinue ? "loop: " : "control structure: "),
258                                                        stmt->originalTarget ) );
259                  }
260                  break;
261          }
[34c32f0]262          // handle fallthrough in case/switch stmts
[66daee4]263          case BranchStmt::FallThrough: {
264                  targetEntry = findEnclosingControlStructure( isFallthroughTarget );
265                  // Check that target is valid.
266                  if ( targetEntry == enclosing_control_structures.rend() ) {
267                          SemanticError( stmt->location, "'fallthrough' must be enclosed in a 'switch' or 'choose'" );
268                  }
[2f52b18]269                  if ( ! stmt->target.empty() ) {
[66daee4]270                          // Labelled fallthrough: target must be a valid fallthough label.
[2f52b18]271                          if ( ! fallthrough_labels.count( stmt->target ) ) {
[66daee4]272                                  SemanticError( stmt->location, toString( "'fallthrough' target must be a later case statement: ",
273                                                                                                                   stmt->originalTarget ) );
274                          }
[2f52b18]275                          return new BranchStmt( stmt->location, BranchStmt::Goto, stmt->originalTarget );
[66daee4]276                  }
277                  break;
278          }
279          case BranchStmt::FallThroughDefault: {
280                  targetEntry = findEnclosingControlStructure( isFallthroughDefaultTarget );
281
282                  // Check if in switch or choose statement.
283                  if ( targetEntry == enclosing_control_structures.rend() ) {
284                          SemanticError( stmt->location, "'fallthrough' must be enclosed in a 'switch' or 'choose'" );
285                  }
286
287                  // Check if switch or choose has default clause.
288                  auto switchStmt = strict_dynamic_cast< const SwitchStmt * >( targetEntry->stmt );
289                  bool foundDefault = false;
290                  for ( auto subStmt : switchStmt->stmts ) {
291                          const CaseStmt * caseStmt = subStmt.strict_as<CaseStmt>();
292                          if ( caseStmt->isDefault() ) {
293                                  foundDefault = true;
294                                  break;
295                          }
296                  }
297                  if ( ! foundDefault ) {
298                          SemanticError( stmt->location, "'fallthrough default' must be enclosed in a 'switch' or 'choose'"
299                                                         "control structure with a 'default' clause" );
300                  }
301                  break;
302          }
303          default:
[b8ab91a]304                assert( false );
305        }
306
[2f52b18]307        // Branch error checks: get the appropriate label name, which is always replaced.
[66daee4]308        Label exitLabel( CodeLocation(), "" );
[b8ab91a]309        switch ( stmt->kind ) {
[66daee4]310          case BranchStmt::Break:
[2f52b18]311                assert( ! targetEntry->useBreakExit().empty() );
[b8ab91a]312                exitLabel = targetEntry->useBreakExit();
313                break;
[66daee4]314          case BranchStmt::Continue:
[2f52b18]315                assert( ! targetEntry->useContExit().empty() );
[b8ab91a]316                exitLabel = targetEntry->useContExit();
317                break;
[66daee4]318          case BranchStmt::FallThrough:
[2f52b18]319                assert( ! targetEntry->useFallExit().empty() );
[b8ab91a]320                exitLabel = targetEntry->useFallExit();
321                break;
[66daee4]322          case BranchStmt::FallThroughDefault:
[2f52b18]323                assert( ! targetEntry->useFallDefaultExit().empty() );
[b8ab91a]324                exitLabel = targetEntry->useFallDefaultExit();
325                // Check that fallthrough default comes before the default clause.
[2f52b18]326                if ( ! targetEntry->isFallDefaultValid() ) {
[66daee4]327                        SemanticError( stmt->location, "'fallthrough default' must precede the 'default' clause" );
[b8ab91a]328                }
329                break;
[66daee4]330          default:
[b8ab91a]331                assert(0);
332        }
333
334        // Add unused attribute to silence warnings.
335        targetEntry->stmt = addUnused( targetEntry->stmt, stmt->originalTarget );
336
[66daee4]337        // Replace with goto to make later passes more uniform.
338        return new BranchStmt( stmt->location, BranchStmt::Goto, exitLabel );
[b8ab91a]339}
340
[3b0bc16]341void MultiLevelExitCore::previsit( const WhileDoStmt * stmt ) {
[b8ab91a]342        return prehandleLoopStmt( stmt );
343}
344
[3b0bc16]345const WhileDoStmt * MultiLevelExitCore::postvisit( const WhileDoStmt * stmt ) {
[b8ab91a]346        return posthandleLoopStmt( stmt );
347}
348
[66daee4]349void MultiLevelExitCore::previsit( const ForStmt * stmt ) {
[b8ab91a]350        return prehandleLoopStmt( stmt );
351}
352
[66daee4]353const ForStmt * MultiLevelExitCore::postvisit( const ForStmt * stmt ) {
[b8ab91a]354        return posthandleLoopStmt( stmt );
355}
356
357// Mimic what the built-in push_front would do anyways. It is O(n).
358void push_front(
[66daee4]359        vector<ptr<Stmt>> & vec, const Stmt * element ) {
[b8ab91a]360        vec.emplace_back( nullptr );
361        for ( size_t i = vec.size() - 1 ; 0 < i ; --i ) {
[66daee4]362                vec[ i ] = move( vec[ i - 1 ] );
[b8ab91a]363        }
364        vec[ 0 ] = element;
365}
366
[66daee4]367const CaseStmt * MultiLevelExitCore::previsit( const CaseStmt * stmt ) {
[b8ab91a]368        visit_children = false;
369
[66daee4]370        // If default, mark seen.
[b8ab91a]371        if ( stmt->isDefault() ) {
[2f52b18]372                assert( ! enclosing_control_structures.empty() );
[b8ab91a]373                enclosing_control_structures.back().seenDefault();
374        }
375
376        // The cond may not exist, but if it does update it now.
[66daee4]377        visitor->maybe_accept( stmt, &CaseStmt::cond );
[b8ab91a]378
379        // Just save the mutated node for simplicity.
[66daee4]380        CaseStmt * mutStmt = mutate( stmt );
[b8ab91a]381
[66daee4]382        Label fallLabel = newLabel( "fallThrough", stmt );
383        if ( ! mutStmt->stmts.empty() ) {
[b8ab91a]384                // Ensure that the stack isn't corrupted by exceptions in fixBlock.
385                auto guard = makeFuncGuard(
386                        [&](){ enclosing_control_structures.emplace_back( mutStmt, fallLabel ); },
387                        [this](){ enclosing_control_structures.pop_back(); }
[66daee4]388                        );
[b8ab91a]389
390                // These should already be in a block.
[66daee4]391                auto block = mutate( mutStmt->stmts.front().strict_as<CompoundStmt>() );
[b8ab91a]392                block->kids = fixBlock( block->kids, true );
393
394                // Add fallthrough label if necessary.
[66daee4]395                assert( ! enclosing_control_structures.empty() );
[b8ab91a]396                Entry & entry = enclosing_control_structures.back();
397                if ( entry.isFallUsed() ) {
[2f52b18]398                        mutStmt->stmts.push_back( labelledNullStmt( mutStmt->location, entry.useFallExit() ) );
[b8ab91a]399                }
400        }
[66daee4]401        assert( ! enclosing_control_structures.empty() );
[b8ab91a]402        Entry & entry = enclosing_control_structures.back();
[66daee4]403        assertf( dynamic_cast< const SwitchStmt * >( entry.stmt ),
[6180274]404                         "CFA internal error: control structure enclosing a case clause must be a switch, but is: %s",
[66daee4]405                         toString( entry.stmt ).c_str() );
[b8ab91a]406        if ( mutStmt->isDefault() ) {
407                if ( entry.isFallDefaultUsed() ) {
408                        // Add fallthrough default label if necessary.
[2f52b18]409                        push_front( mutStmt->stmts, labelledNullStmt( stmt->location, entry.useFallDefaultExit() ) );
[b8ab91a]410                }
411        }
412        return mutStmt;
413}
414
[66daee4]415void MultiLevelExitCore::previsit( const IfStmt * stmt ) {
[2f52b18]416        bool labeledBlock = ! stmt->labels.empty();
[b8ab91a]417        if ( labeledBlock ) {
[66daee4]418                Label breakLabel = newLabel( "blockBreak", stmt );
[b8ab91a]419                enclosing_control_structures.emplace_back( stmt, breakLabel );
420                GuardAction( [this](){ enclosing_control_structures.pop_back(); } );
421        }
422}
423
[66daee4]424const IfStmt * MultiLevelExitCore::postvisit( const IfStmt * stmt ) {
[2f52b18]425        bool labeledBlock = ! stmt->labels.empty();
[b8ab91a]426        if ( labeledBlock ) {
427                auto this_label = enclosing_control_structures.back().useBreakExit();
[2f52b18]428                if ( ! this_label.empty() ) {
[b8ab91a]429                        break_label = this_label;
430                }
431        }
432        return stmt;
433}
434
[66daee4]435bool isDefaultCase( const ptr<Stmt> & stmt ) {
436        const CaseStmt * caseStmt = stmt.strict_as<CaseStmt>();
[b8ab91a]437        return caseStmt->isDefault();
438}
439
[66daee4]440void MultiLevelExitCore::previsit( const SwitchStmt * stmt ) {
441        Label label = newLabel( "switchBreak", stmt );
442        auto it = find_if( stmt->stmts.rbegin(), stmt->stmts.rend(), isDefaultCase );
[b8ab91a]443
[2f52b18]444        const CaseStmt * defaultCase = it != stmt->stmts.rend() ? (it)->strict_as<CaseStmt>() : nullptr;
445        Label defaultLabel = defaultCase ? newLabel( "fallThroughDefault", defaultCase ) : Label( stmt->location, "" );
[b8ab91a]446        enclosing_control_structures.emplace_back( stmt, label, defaultLabel );
447        GuardAction( [this]() { enclosing_control_structures.pop_back(); } );
448
[2f52b18]449        // Collect valid labels for fallthrough. It starts with all labels at this level, then remove as each is seen during
450        // traversal.
[66daee4]451        for ( const Stmt * stmt : stmt->stmts ) {
452                auto * caseStmt = strict_dynamic_cast< const CaseStmt * >( stmt );
[b8ab91a]453                if ( caseStmt->stmts.empty() ) continue;
[66daee4]454                auto block = caseStmt->stmts.front().strict_as<CompoundStmt>();
455                for ( const Stmt * stmt : block->kids ) {
456                        for ( const Label & l : stmt->labels ) {
[b8ab91a]457                                fallthrough_labels.insert( l );
458                        }
459                }
460        }
461}
462
[66daee4]463const SwitchStmt * MultiLevelExitCore::postvisit( const SwitchStmt * stmt ) {
[2f52b18]464        assert( ! enclosing_control_structures.empty() );
[b8ab91a]465        Entry & entry = enclosing_control_structures.back();
466        assert( entry.stmt == stmt );
467
[66daee4]468        // Only run to generate the break label.
[b8ab91a]469        if ( entry.isBreakUsed() ) {
[2f52b18]470                // To keep the switch statements uniform (all direct children of a SwitchStmt should be CastStmts), append the
471                // exit label and break to the last case, create a default case if no cases.
[66daee4]472                SwitchStmt * mutStmt = mutate( stmt );
[b8ab91a]473                if ( mutStmt->stmts.empty() ) {
[2f52b18]474                        mutStmt->stmts.push_back( new CaseStmt( mutStmt->location, nullptr, {} ) );
[b8ab91a]475                }
476
[66daee4]477                auto caseStmt = mutStmt->stmts.back().strict_as<CaseStmt>();
478                auto mutCase = mutate( caseStmt );
[b8ab91a]479                mutStmt->stmts.back() = mutCase;
480
[66daee4]481                Label label( mutCase->location, "breakLabel" );
482                auto branch = new BranchStmt( mutCase->location, BranchStmt::Break, label );
[b8ab91a]483                branch->labels.push_back( entry.useBreakExit() );
484                mutCase->stmts.push_back( branch );
485
486                return mutStmt;
487        }
488        return stmt;
489}
490
[66daee4]491void MultiLevelExitCore::previsit( const ReturnStmt * stmt ) {
[b8ab91a]492        if ( inFinally ) {
493                SemanticError( stmt->location, "'return' may not appear in a finally clause" );
494        }
495}
496
[66daee4]497void MultiLevelExitCore::previsit( const TryStmt * stmt ) {
[2f52b18]498        bool isLabeled = ! stmt->labels.empty();
[b8ab91a]499        if ( isLabeled ) {
[66daee4]500                Label breakLabel = newLabel( "blockBreak", stmt );
[b8ab91a]501                enclosing_control_structures.emplace_back( stmt, breakLabel );
502                GuardAction([this](){ enclosing_control_structures.pop_back(); } );
503        }
504}
505
[66daee4]506void MultiLevelExitCore::postvisit( const TryStmt * stmt ) {
[2f52b18]507        bool isLabeled = ! stmt->labels.empty();
[b8ab91a]508        if ( isLabeled ) {
509                auto this_label = enclosing_control_structures.back().useBreakExit();
[2f52b18]510                if ( ! this_label.empty() ) {
[b8ab91a]511                        break_label = this_label;
512                }
513        }
514}
515
[66daee4]516void MultiLevelExitCore::previsit( const FinallyStmt * ) {
[2f52b18]517        GuardAction([this, old = move( enclosing_control_structures)](){ enclosing_control_structures = move(old); });
[66daee4]518        enclosing_control_structures = vector<Entry>();
[b8ab91a]519        GuardValue( inFinally ) = true;
520}
521
[66daee4]522const Stmt * MultiLevelExitCore::mutateLoop(
523        const Stmt * body, Entry & entry ) {
[b8ab91a]524        if ( entry.isBreakUsed() ) {
525                break_label = entry.useBreakExit();
526        }
527
[3e5db5b4]528        // if continue is used insert a continue label into the back of the body of the loop
[b8ab91a]529        if ( entry.isContUsed() ) {
[66daee4]530                CompoundStmt * new_body = new CompoundStmt( body->location );
[3e5db5b4]531                // {}
[b8ab91a]532                new_body->kids.push_back( body );
[3e5db5b4]533                // {
534                //  body
535                // }
[817bb3c]536                new_body->kids.push_back(
537                        labelledNullStmt( body->location, entry.useContExit() ) );
[3e5db5b4]538                // {
539                //  body
540                //  ContinueLabel: {}
541                // }
[b8ab91a]542                return new_body;
543        }
544
545        return body;
546}
547
548template<typename LoopNode>
549void MultiLevelExitCore::prehandleLoopStmt( const LoopNode * loopStmt ) {
550        // Remember is loop before going onto mutate the body.
551        // The labels will be folded in if they are used.
[66daee4]552        Label breakLabel = newLabel( "loopBreak", loopStmt );
553        Label contLabel = newLabel( "loopContinue", loopStmt );
[b8ab91a]554        enclosing_control_structures.emplace_back( loopStmt, breakLabel, contLabel );
[3e5db5b4]555        // labels are added temporarily to see if they are used and then added permanently in postvisit if ther are used
556        // children will tag labels as being used during their traversal which occurs before postvisit
557
558        // GuardAction calls the lambda after the node is done being visited
[b8ab91a]559        GuardAction( [this](){ enclosing_control_structures.pop_back(); } );
560}
561
562template<typename LoopNode>
563const LoopNode * MultiLevelExitCore::posthandleLoopStmt( const LoopNode * loopStmt ) {
[2f52b18]564        assert( ! enclosing_control_structures.empty() );
[b8ab91a]565        Entry & entry = enclosing_control_structures.back();
566        assert( entry.stmt == loopStmt );
567
[66daee4]568        // Now check if the labels are used and add them if so.
[2f52b18]569        return mutate_field( loopStmt, &LoopNode::body, mutateLoop( loopStmt->body, entry ) );
[3e5db5b4]570        // this call to mutate_field compares loopStmt->body and the result of mutateLoop
571        //              if they are the same the node isn't mutated, if they differ then the new mutated node is returned
572        //              the stmts will only differ if a label is used
[b8ab91a]573}
574
[66daee4]575list<ptr<Stmt>> MultiLevelExitCore::fixBlock(
576        const list<ptr<Stmt>> & kids, bool is_case_clause ) {
577        // Unfortunately cannot use automatic error collection.
[b8ab91a]578        SemanticErrorException errors;
579
[66daee4]580        list<ptr<Stmt>> ret;
[b8ab91a]581
582        // Manually visit each child.
[66daee4]583        for ( const ptr<Stmt> & kid : kids ) {
[b8ab91a]584                if ( is_case_clause ) {
585                        // Once a label is seen, it's no longer a valid for fallthrough.
[66daee4]586                        for ( const Label & l : kid->labels ) {
[b8ab91a]587                                fallthrough_labels.erase( l );
588                        }
589                }
590
591                try {
592                        ret.push_back( kid->accept( *visitor ) );
593                } catch ( SemanticErrorException & e ) {
594                        errors.append( e );
595                }
596
[2f52b18]597                if ( ! break_label.empty() ) {
598                        ret.push_back( labelledNullStmt( ret.back()->location, break_label ) );
[66daee4]599                        break_label = Label( CodeLocation(), "" );
[b8ab91a]600                }
601        }
602
[2f52b18]603        if ( ! errors.isEmpty() ) {
[b8ab91a]604                throw errors;
605        }
606        return ret;
607}
608
[66daee4]609const CompoundStmt * multiLevelExitUpdate(
610        const CompoundStmt * stmt,
611        const LabelToStmt & labelTable ) {
[b8ab91a]612        // Must start in the body, so FunctionDecls can be a stopping point.
[66daee4]613        Pass<MultiLevelExitCore> visitor( labelTable );
614        const CompoundStmt * ret = stmt->accept( visitor );
[817bb3c]615        return ret;
[b8ab91a]616}
617} // namespace ControlStruct
618
619// Local Variables: //
620// tab-width: 4 //
621// mode: c++ //
622// compile-command: "make install" //
623// End: //
Note: See TracBrowser for help on using the repository browser.