Searched refs:IndirectGotoStmt (Results 1 – 20 of 20) sorted by relevance
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 69 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 …]
|
D | SemaStmt.cpp | 2648 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 6456 TreeTransform<Derived>::TransformIndirectGotoStmt(IndirectGotoStmt *S) { in TransformIndirectGotoStmt()
|
/external/clang/lib/AST/ |
D | ParentMap.cpp | 193 return DirectChild == cast<IndirectGotoStmt>(P)->getTarget(); in isConsumedExpr()
|
D | Stmt.cpp | 891 LabelDecl *IndirectGotoStmt::getConstantTarget() { in getConstantTarget()
|
D | StmtProfile.cpp | 146 void StmtProfiler::VisitIndirectGotoStmt(const IndirectGotoStmt *S) { in VisitIndirectGotoStmt()
|
D | StmtPrinter.cpp | 347 void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) { in VisitIndirectGotoStmt()
|
D | ASTImporter.cpp | 198 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/ |
D | Stmt.h | 1258 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()
|
D | RecursiveASTVisitor.h | 2033 DEF_TRAVERSE_STMT(IndirectGotoStmt, {})
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 22 def IndirectGotoStmt : Stmt;
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 910 VISIT(IndirectGotoStmt); in VisitStmt() 931 IGNORE_STMT(IndirectGotoStmt);
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CoreEngine.cpp | 428 builder(Pred, B, cast<IndirectGotoStmt>(Term)->getTarget(), in HandleBlockExit()
|
D | ExprEngine.cpp | 2681 else if (isa<IndirectGotoStmt>(T)) { in getNodeLabel()
|
D | BugReporter.cpp | 1923 return cast<IndirectGotoStmt>(S)->getTarget() == Cond; in isConditionForTerminator()
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 461 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/ |
D | CGStmt.cpp | 132 EmitIndirectGotoStmt(cast<IndirectGotoStmt>(*S)); break; in EmitStmt() 549 void CodeGenFunction::EmitIndirectGotoStmt(const IndirectGotoStmt &S) { in EmitIndirectGotoStmt()
|
D | CodeGenFunction.h | 2269 void EmitIndirectGotoStmt(const IndirectGotoStmt &S);
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 260 void ASTStmtReader::VisitIndirectGotoStmt(IndirectGotoStmt *S) { in VisitIndirectGotoStmt() 2906 S = new (Context) IndirectGotoStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 196 void ASTStmtWriter::VisitIndirectGotoStmt(IndirectGotoStmt *S) { in VisitIndirectGotoStmt()
|