clang 22.0.0git
clang::CFGTerminator Class Reference

Represents CFGBlock terminator statement. More...

#include "clang/Analysis/CFG.h"

Public Types

enum  Kind { StmtBranch , TemporaryDtorsBranch , VirtualBaseBranch , NumKindsMinusOne = VirtualBaseBranch }

Public Member Functions

 CFGTerminator ()
 CFGTerminator (Stmt *S, Kind K=StmtBranch)
bool isValid () const
StmtgetStmt ()
const StmtgetStmt () const
Kind getKind () const
bool isStmtBranch () const
bool isTemporaryDtorsBranch () const
bool isVirtualBaseBranch () const

Detailed Description

Represents CFGBlock terminator statement.

Definition at line 532 of file CFG.h.

Member Enumeration Documentation

◆ Kind

Enumerator
StmtBranch 

A branch that corresponds to a statement in the code, such as an if-statement.

TemporaryDtorsBranch 

A branch in control flow of destructors of temporaries.

In this case terminator statement is the same statement that branches control flow in evaluation of matching full expression.

VirtualBaseBranch 

A shortcut around virtual base initializers.

It gets taken when virtual base classes have already been initialized by the constructor of the most derived class while we're in the base class.

NumKindsMinusOne 

Number of different kinds, for assertions.

We subtract 1 so that to keep receiving compiler warnings when we don't cover all enum values in a switch.

Definition at line 534 of file CFG.h.

Constructor & Destructor Documentation

◆ CFGTerminator() [1/2]

clang::CFGTerminator::CFGTerminator ( )
inline

Definition at line 560 of file CFG.h.

References isValid().

◆ CFGTerminator() [2/2]

clang::CFGTerminator::CFGTerminator ( Stmt * S,
Kind K = StmtBranch )
inline

Definition at line 561 of file CFG.h.

References StmtBranch.

Member Function Documentation

◆ getKind()

Kind clang::CFGTerminator::getKind ( ) const
inline

Definition at line 566 of file CFG.h.

Referenced by isStmtBranch(), isTemporaryDtorsBranch(), and isVirtualBaseBranch().

◆ getStmt() [1/2]

Stmt * clang::CFGTerminator::getStmt ( )
inline

◆ getStmt() [2/2]

const Stmt * clang::CFGTerminator::getStmt ( ) const
inline

Definition at line 565 of file CFG.h.

◆ isStmtBranch()

bool clang::CFGTerminator::isStmtBranch ( ) const
inline

Definition at line 568 of file CFG.h.

References getKind(), and StmtBranch.

Referenced by ResolveCondition().

◆ isTemporaryDtorsBranch()

bool clang::CFGTerminator::isTemporaryDtorsBranch ( ) const
inline

Definition at line 571 of file CFG.h.

References getKind(), and TemporaryDtorsBranch.

Referenced by isDeadReturn().

◆ isValid()

bool clang::CFGTerminator::isValid ( ) const
inline

Definition at line 563 of file CFG.h.

Referenced by CFGTerminator(), and print_block().

◆ isVirtualBaseBranch()

bool clang::CFGTerminator::isVirtualBaseBranch ( ) const
inline

Definition at line 574 of file CFG.h.

References getKind(), and VirtualBaseBranch.

Referenced by clang::ento::PathDiagnosticLocation::create().


The documentation for this class was generated from the following file: