clang  5.0.0
Public Types | Public Member Functions | Static Public Member Functions | Friends | List of all members
clang::CompoundStmt Class Reference

CompoundStmt - This represents a group of statements like { stmt stmt }. More...

#include "clang/AST/Stmt.h"

Inheritance diagram for clang::CompoundStmt:
[legend]
Collaboration diagram for clang::CompoundStmt:
[legend]

Public Types

typedef Stmt ** body_iterator
 
typedef llvm::iterator_range
< body_iterator
body_range
 
typedef Stmt *const * const_body_iterator
 
typedef llvm::iterator_range
< const_body_iterator
body_const_range
 
typedef std::reverse_iterator
< body_iterator
reverse_body_iterator
 
typedef std::reverse_iterator
< const_body_iterator
const_reverse_body_iterator
 
- Public Types inherited from clang::Stmt
enum  StmtClass { NoStmtClass = 0 }
 
typedef StmtIterator child_iterator
 Child Iterators: All subclasses must implement 'children' to permit easy iteration over the substatements/subexpessions of an AST node. More...
 
typedef ConstStmtIterator const_child_iterator
 
typedef llvm::iterator_range
< child_iterator
child_range
 
typedef llvm::iterator_range
< const_child_iterator
const_child_range
 

Public Member Functions

 CompoundStmt (const ASTContext &C, ArrayRef< Stmt * > Stmts, SourceLocation LB, SourceLocation RB)
 
 CompoundStmt (SourceLocation Loc)
 
 CompoundStmt (EmptyShell Empty)
 
void setStmts (const ASTContext &C, ArrayRef< Stmt * > Stmts)
 
bool body_empty () const
 
unsigned size () const
 
body_range body ()
 
body_iterator body_begin ()
 
body_iterator body_end ()
 
Stmtbody_front ()
 
Stmtbody_back ()
 
void setLastStmt (Stmt *S)
 
body_const_range body () const
 
const_body_iterator body_begin () const
 
const_body_iterator body_end () const
 
const Stmtbody_front () const
 
const Stmtbody_back () const
 
reverse_body_iterator body_rbegin ()
 
reverse_body_iterator body_rend ()
 
const_reverse_body_iterator body_rbegin () const
 
const_reverse_body_iterator body_rend () const
 
SourceLocation getLocStart () const LLVM_READONLY
 
SourceLocation getLocEnd () const LLVM_READONLY
 
SourceLocation getLBracLoc () const
 
SourceLocation getRBracLoc () const
 
child_range children ()
 
const_child_range children () const
 
- Public Member Functions inherited from clang::Stmt
void * operator new (size_t bytes, const ASTContext &C, unsigned alignment=8)
 
void * operator new (size_t bytes, const ASTContext *C, unsigned alignment=8)
 
void * operator new (size_t bytes, void *mem) noexcept
 
void operator delete (void *, const ASTContext &, unsigned) noexcept
 
void operator delete (void *, const ASTContext *, unsigned) noexcept
 
void operator delete (void *, size_t) noexcept
 
void operator delete (void *, void *) noexcept
 
 Stmt (StmtClass SC)
 
StmtClass getStmtClass () const
 
const char * getStmtClassName () const
 
SourceRange getSourceRange () const LLVM_READONLY
 SourceLocation tokens are not useful in isolation - they are low level value objects created/interpreted by SourceManager. More...
 
SourceLocation getLocStart () const LLVM_READONLY
 
SourceLocation getLocEnd () const LLVM_READONLY
 
void dump () const
 Dumps the specified AST fragment and all subtrees to llvm::errs(). More...
 
void dump (SourceManager &SM) const
 
void dump (raw_ostream &OS, SourceManager &SM) const
 
void dump (raw_ostream &OS) const
 
void dumpColor () const
 dumpColor - same as dump(), but forces color highlighting. More...
 
void dumpPretty (const ASTContext &Context) const
 dumpPretty/printPretty - These two methods do a "pretty print" of the AST back to its original source language syntax. More...
 
void printPretty (raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0) const
 
void viewAST () const
 viewAST - Visualize an AST rooted at this Stmt* using GraphViz. More...
 
StmtIgnoreImplicit ()
 Skip past any implicit AST nodes which might surround this statement, such as ExprWithCleanups or ImplicitCastExpr nodes. More...
 
const StmtIgnoreImplicit () const
 
StmtIgnoreContainers (bool IgnoreCaptured=false)
 Skip no-op (attributed, compound) container stmts and skip captured stmt at the top, if IgnoreCaptured is true. More...
 
const StmtstripLabelLikeStatements () const
 Strip off all label-like statements. More...
 
StmtstripLabelLikeStatements ()
 
child_range children ()
 
const_child_range children () const
 
child_iterator child_begin ()
 
child_iterator child_end ()
 
const_child_iterator child_begin () const
 
const_child_iterator child_end () const
 
void Profile (llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical) const
 Produce a unique representation of the given statement. More...
 
void ProcessODRHash (llvm::FoldingSetNodeID &ID, ODRHash &Hash) const
 Calculate a unique representation for a statement that is stable across compiler invocations. More...
 

Static Public Member Functions

static bool classof (const Stmt *T)
 
- Static Public Member Functions inherited from clang::Stmt
static void addStmtClass (const StmtClass s)
 
static void EnableStatistics ()
 
static void PrintStats ()
 

Friends

class ASTStmtReader
 

Additional Inherited Members

- Protected Types inherited from clang::Stmt
enum  { NumStmtBits = 8 }
 
enum  { NumExprBits = 17 }
 
enum  APFloatSemantics {
  IEEEhalf, IEEEsingle, IEEEdouble, x87DoubleExtended,
  IEEEquad, PPCDoubleDouble
}
 
- Protected Member Functions inherited from clang::Stmt
void * operator new (size_t bytes) noexcept
 
void operator delete (void *data) noexcept
 
 Stmt (StmtClass SC, EmptyShell)
 Construct an empty statement. More...
 
- Protected Attributes inherited from clang::Stmt
union {
   StmtBitfields   StmtBits
 
   CompoundStmtBitfields   CompoundStmtBits
 
   IfStmtBitfields   IfStmtBits
 
   ExprBitfields   ExprBits
 
   CharacterLiteralBitfields   CharacterLiteralBits
 
   FloatingLiteralBitfields   FloatingLiteralBits
 
   UnaryExprOrTypeTraitExprBitfields   UnaryExprOrTypeTraitExprBits
 
   DeclRefExprBitfields   DeclRefExprBits
 
   CastExprBitfields   CastExprBits
 
   CallExprBitfields   CallExprBits
 
   ExprWithCleanupsBitfields   ExprWithCleanupsBits
 
   PseudoObjectExprBitfields   PseudoObjectExprBits
 
   ObjCIndirectCopyRestoreExprBitfields   ObjCIndirectCopyRestoreExprBits
 
   InitListExprBitfields   InitListExprBits
 
   TypeTraitExprBitfields   TypeTraitExprBits
 
   CoawaitExprBitfields   CoawaitBits
 
}; 
 

Detailed Description

CompoundStmt - This represents a group of statements like { stmt stmt }.

Definition at line 575 of file Stmt.h.

Member Typedef Documentation

Definition at line 617 of file Stmt.h.

Definition at line 602 of file Stmt.h.

typedef llvm::iterator_range<body_iterator> clang::CompoundStmt::body_range

Definition at line 603 of file Stmt.h.

Definition at line 616 of file Stmt.h.

Definition at line 640 of file Stmt.h.

Definition at line 631 of file Stmt.h.

Constructor & Destructor Documentation

CompoundStmt::CompoundStmt ( const ASTContext C,
ArrayRef< Stmt * >  Stmts,
SourceLocation  LB,
SourceLocation  RB 
)

Definition at line 282 of file Stmt.cpp.

References clang::Stmt::CompoundStmtBits.

clang::CompoundStmt::CompoundStmt ( SourceLocation  Loc)
inlineexplicit

Definition at line 586 of file Stmt.h.

References clang::Stmt::CompoundStmtBits.

clang::CompoundStmt::CompoundStmt ( EmptyShell  Empty)
inlineexplicit

Definition at line 592 of file Stmt.h.

References clang::Stmt::CompoundStmtBits.

Member Function Documentation

body_range clang::CompoundStmt::body ( )
inline
body_const_range clang::CompoundStmt::body ( ) const
inline

Definition at line 619 of file Stmt.h.

References body_begin(), and body_end().

Stmt* clang::CompoundStmt::body_back ( )
inline
const Stmt* clang::CompoundStmt::body_back ( ) const
inline

Definition at line 627 of file Stmt.h.

References body_empty(), and size().

body_iterator clang::CompoundStmt::body_begin ( )
inline
const_body_iterator clang::CompoundStmt::body_begin ( ) const
inline

Definition at line 622 of file Stmt.h.

bool clang::CompoundStmt::body_empty ( ) const
inline
body_iterator clang::CompoundStmt::body_end ( )
inline
const_body_iterator clang::CompoundStmt::body_end ( ) const
inline

Definition at line 623 of file Stmt.h.

References size().

Stmt* clang::CompoundStmt::body_front ( )
inline

Definition at line 608 of file Stmt.h.

References body_empty().

const Stmt* clang::CompoundStmt::body_front ( ) const
inline

Definition at line 624 of file Stmt.h.

References body_empty().

reverse_body_iterator clang::CompoundStmt::body_rbegin ( )
inline

Definition at line 632 of file Stmt.h.

References body_end().

Referenced by print_elem(), and clang::ento::ExprEngine::Visit().

const_reverse_body_iterator clang::CompoundStmt::body_rbegin ( ) const
inline

Definition at line 642 of file Stmt.h.

References body_end().

reverse_body_iterator clang::CompoundStmt::body_rend ( )
inline

Definition at line 635 of file Stmt.h.

References body_begin().

const_reverse_body_iterator clang::CompoundStmt::body_rend ( ) const
inline

Definition at line 646 of file Stmt.h.

References body_begin().

child_range clang::CompoundStmt::children ( )
inline

Definition at line 661 of file Stmt.h.

References clang::Stmt::CompoundStmtBits.

Referenced by print_elem().

const_child_range clang::CompoundStmt::children ( ) const
inline

Definition at line 665 of file Stmt.h.

References clang::Stmt::CompoundStmtBits.

static bool clang::CompoundStmt::classof ( const Stmt T)
inlinestatic

Definition at line 656 of file Stmt.h.

References clang::Stmt::getStmtClass().

SourceLocation clang::CompoundStmt::getLBracLoc ( ) const
inline
SourceLocation clang::CompoundStmt::getLocEnd ( ) const
inline
SourceLocation clang::CompoundStmt::getLocStart ( ) const
inline

Definition at line 650 of file Stmt.h.

SourceLocation clang::CompoundStmt::getRBracLoc ( ) const
inline
void clang::CompoundStmt::setLastStmt ( Stmt S)
inline

Definition at line 611 of file Stmt.h.

References body_empty(), S, and size().

Referenced by clang::Sema::ActOnStmtExpr().

void CompoundStmt::setStmts ( const ASTContext C,
ArrayRef< Stmt * >  Stmts 
)

Definition at line 298 of file Stmt.cpp.

References clang::Stmt::CompoundStmtBits, and clang::ASTContext::Deallocate().

unsigned clang::CompoundStmt::size ( ) const
inline

Friends And Related Function Documentation

friend class ASTStmtReader
friend

Definition at line 579 of file Stmt.h.


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