Ignore:
Timestamp:
Sep 8, 2023, 5:15:41 PM (10 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
5cfb8b1
Parents:
2fa0237
Message:

Insert additional checks so that impossible, or just unimplemented, local control flow raises an error in CFA.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/MultiLevelExit.cpp

    r2fa0237 r553f032f  
    1010// Created On       : Mon Nov  1 13:48:00 2021
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Sep  6 12:00:00 2023
    13 // Update Count     : 35
     12// Last Modified On : Fri Sep  8 17:04:00 2023
     13// Update Count     : 36
    1414//
    1515
     
    2727
    2828namespace {
     29
     30/// The return context is used to remember if returns are allowed and if
     31/// not, why not. It is the nearest local control flow blocking construct.
     32enum ReturnContext {
     33        MayReturn,
     34        InTryWithHandler,
     35        InResumeHandler,
     36        InTerminateHandler,
     37        InFinally,
     38};
    2939
    3040class Entry {
     
    126136        void previsit( const TryStmt * );
    127137        void postvisit( const TryStmt * );
     138        void previsit( const CatchClause * );
    128139        void previsit( const FinallyClause * );
    129140
     
    134145        vector<Entry> enclosing_control_structures;
    135146        Label break_label;
    136         bool inFinally;
     147        ReturnContext ret_context;
    137148
    138149        template<typename LoopNode>
     
    144155                const list<ptr<Stmt>> & kids, bool caseClause );
    145156
     157        void enterSealedContext( ReturnContext );
     158
    146159        template<typename UnaryPredicate>
    147160        auto findEnclosingControlStructure( UnaryPredicate pred ) {
     
    157170MultiLevelExitCore::MultiLevelExitCore( const LabelToStmt & lt ) :
    158171        target_table( lt ), break_label( CodeLocation(), "" ),
    159         inFinally( false )
     172        ret_context( ReturnContext::MayReturn )
    160173{}
    161174
     
    488501
    489502void MultiLevelExitCore::previsit( const ReturnStmt * stmt ) {
    490         if ( inFinally ) {
    491                 SemanticError( stmt->location, "'return' may not appear in a finally clause" );
    492         }
     503        char const * context;
     504        switch ( ret_context ) {
     505        case ReturnContext::MayReturn:
     506                return;
     507        case ReturnContext::InTryWithHandler:
     508                context = "try statement with a catch clause";
     509                break;
     510        case ReturnContext::InResumeHandler:
     511                context = "catchResume clause";
     512                break;
     513        case ReturnContext::InTerminateHandler:
     514                context = "catch clause";
     515                break;
     516        case ReturnContext::InFinally:
     517                context = "finally clause";
     518                break;
     519        default:
     520                assert(0);
     521        }
     522        SemanticError( stmt->location, toString( "'return' may not appear in a ", context ) );
    493523}
    494524
     
    500530                GuardAction([this](){ enclosing_control_structures.pop_back(); } );
    501531        }
     532
     533        // Try statements/try blocks are only sealed with a termination handler.
     534        for ( auto clause : stmt->handlers ) {
     535                if ( ast::Terminate == clause->kind ) {
     536                        return enterSealedContext( ReturnContext::InTryWithHandler );
     537                }
     538        }
    502539}
    503540
     
    512549}
    513550
     551void MultiLevelExitCore::previsit( const CatchClause * clause ) {
     552        ReturnContext context = ( ast::Terminate == clause->kind )
     553                ? ReturnContext::InTerminateHandler : ReturnContext::InResumeHandler;
     554        enterSealedContext( context );
     555}
     556
    514557void MultiLevelExitCore::previsit( const FinallyClause * ) {
    515         GuardAction([this, old = std::move( enclosing_control_structures)](){ enclosing_control_structures = std::move(old); });
    516         enclosing_control_structures = vector<Entry>();
    517         GuardValue( inFinally ) = true;
     558        enterSealedContext( ReturnContext::InFinally );
    518559}
    519560
     
    617658}
    618659
     660void MultiLevelExitCore::enterSealedContext( ReturnContext enter_context ) {
     661        GuardAction([this, old = std::move(enclosing_control_structures)](){ enclosing_control_structures = std::move(old); });
     662        enclosing_control_structures = vector<Entry>();
     663        GuardValue( ret_context ) = enter_context;
     664}
     665
    619666} // namespace
    620667
Note: See TracChangeset for help on using the changeset viewer.