Home
last modified time | relevance | path

Searched refs:IndirectGotoStmt (Results 1 – 20 of 20) sorted by relevance

/external/clang/lib/Sema/
DJumpDiagnostics.cpp69 SmallVector<IndirectGotoStmt*, 4> IndirectJumps;
82 void DiagnoseIndirectJump(IndirectGotoStmt *IG, unsigned IGScope,
296 if (cast<IndirectGotoStmt>(S)->getConstantTarget()) { in BuildScopeInformation()
303 IndirectJumps.push_back(cast<IndirectGotoStmt>(S)); in BuildScopeInformation()
594 if (IndirectGotoStmt *IGS = dyn_cast<IndirectGotoStmt>(Jump)) { in VerifyJumps()
654 typedef std::pair<unsigned, IndirectGotoStmt*> JumpScope; in VerifyIndirectJumps()
657 llvm::DenseMap<unsigned, IndirectGotoStmt*> JumpScopesMap; in VerifyIndirectJumps()
658 for (SmallVectorImpl<IndirectGotoStmt*>::iterator in VerifyIndirectJumps()
660 IndirectGotoStmt *IG = *I; in VerifyIndirectJumps()
664 IndirectGotoStmt *&Entry = JumpScopesMap[IGScope]; in VerifyIndirectJumps()
[all …]
DSemaStmt.cpp2648 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
DTreeTransform.h6456 TreeTransform<Derived>::TransformIndirectGotoStmt(IndirectGotoStmt *S) { in TransformIndirectGotoStmt()
/external/clang/lib/AST/
DParentMap.cpp193 return DirectChild == cast<IndirectGotoStmt>(P)->getTarget(); in isConsumedExpr()
DStmt.cpp891 LabelDecl *IndirectGotoStmt::getConstantTarget() { in getConstantTarget()
DStmtProfile.cpp146 void StmtProfiler::VisitIndirectGotoStmt(const IndirectGotoStmt *S) { in VisitIndirectGotoStmt()
DStmtPrinter.cpp347 void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) { in VisitIndirectGotoStmt()
DASTImporter.cpp198 Stmt *VisitIndirectGotoStmt(IndirectGotoStmt *S);
5126 Stmt *ASTNodeImporter::VisitIndirectGotoStmt(IndirectGotoStmt *S) { in VisitIndirectGotoStmt()
5132 return new (Importer.getToContext()) IndirectGotoStmt(ToGotoLoc, ToStarLoc, in VisitIndirectGotoStmt()
/external/clang/include/clang/AST/
DStmt.h1258 class IndirectGotoStmt : public Stmt {
1263 IndirectGotoStmt(SourceLocation gotoLoc, SourceLocation starLoc, in IndirectGotoStmt() function
1269 explicit IndirectGotoStmt(EmptyShell Empty) in IndirectGotoStmt() function
1285 return const_cast<IndirectGotoStmt*>(this)->getConstantTarget(); in getConstantTarget()
DRecursiveASTVisitor.h2033 DEF_TRAVERSE_STMT(IndirectGotoStmt, {})
/external/clang/include/clang/Basic/
DStmtNodes.td22 def IndirectGotoStmt : Stmt;
/external/v8/tools/gcmole/
Dgcmole.cc910 VISIT(IndirectGotoStmt); in VisitStmt()
931 IGNORE_STMT(IndirectGotoStmt);
/external/clang/lib/StaticAnalyzer/Core/
DCoreEngine.cpp428 builder(Pred, B, cast<IndirectGotoStmt>(Term)->getTarget(), in HandleBlockExit()
DExprEngine.cpp2681 else if (isa<IndirectGotoStmt>(T)) { in getNodeLabel()
DBugReporter.cpp1923 return cast<IndirectGotoStmt>(S)->getTarget() == Cond; in isConditionForTerminator()
/external/clang/lib/Analysis/
DCFG.cpp461 CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
1548 return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S)); in Visit()
3623 CFGBlock *CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt *I) { in VisitIndirectGotoStmt()
4179 void VisitIndirectGotoStmt(IndirectGotoStmt *I) { in VisitIndirectGotoStmt()
4605 E = cast<IndirectGotoStmt>(Terminator)->getTarget(); in getTerminatorCondition()
/external/clang/lib/CodeGen/
DCGStmt.cpp132 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break; in EmitStmt()
549 void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) { in EmitIndirectGotoStmt()
DCodeGenFunction.h2269 void EmitIndirectGotoStmt(const IndirectGotoStmt &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp260 void ASTStmtReader::VisitIndirectGotoStmt(IndirectGotoStmt *S) { in VisitIndirectGotoStmt()
2906 S = new (Context) IndirectGotoStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp196 void ASTStmtWriter::VisitIndirectGotoStmt(IndirectGotoStmt *S) { in VisitIndirectGotoStmt()