Home
last modified time | relevance | path

Searched refs:BlockExpr (Results 1 – 25 of 53) sorted by relevance

123

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCUnusedIVarsChecker.cpp46 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { in Scan()
H A DMallocChecker.cpp303 check::NewAllocator, check::PostStmt<BlockExpr>,
338 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
3013 void MallocChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.h278 const BlockExpr *BlockExpression;
306 const BlockExpr *getBlockExpr() const { in getBlockExpr()
H A DCodeGenModule.h65 class BlockExpr; variable
576 llvm::DenseMap<const BlockExpr *, llvm::Constant *> EmittedGlobalBlocks;
1096 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, StringRef Name);
1100 llvm::Constant *getAddrOfGlobalBlockIfEmitted(const BlockExpr *BE) { in getAddrOfGlobalBlockIfEmitted()
1106 void setAddrOfGlobalBlock(const BlockExpr *BE, llvm::Constant *Addr);
H A DCGDecl.cpp694 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isAccessedBy()
1716 if (const BlockExpr *BE = dyn_cast<BlockExpr>(E)) { in isCapturedBy()
H A DCGObjC.cpp3063 if (isa<BlockExpr>(e)) in shouldEmitSeparateBlockRetain()
3104 Result visitBlockExpr(const BlockExpr *e);
3181 Result ARCExprEmitter<Impl, Result>::visitBlockExpr(const BlockExpr *e) { in visitBlockExpr()
3329 } else if (auto *be = dyn_cast<BlockExpr>(e)) in visit()
3365 TryEmitResult visitBlockExpr(const BlockExpr *e) { in visitBlockExpr()
H A DCGBlocks.cpp767 llvm::Value *CodeGenFunction::EmitBlockLiteral(const BlockExpr *blockExpr) { in EmitBlockLiteral()
1258 void CodeGenModule::setAddrOfGlobalBlock(const BlockExpr *BE, in setAddrOfGlobalBlock()
1266 CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE, in GetAddrOfGlobalBlock()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h47 class BlockExpr; variable
135 ExprDependence computeDependence(BlockExpr *E);
H A DEvaluatedExprVisitor.h48 void VisitBlockExpr(PTR(BlockExpr) E) { } in VisitBlockExpr()
H A DASTNodeTraverser.h828 void VisitBlockExpr(const BlockExpr *Node) { Visit(Node->getBlockDecl()); } in VisitBlockExpr()
H A DASTContext.h60 class BlockExpr; variable
2079 std::string getObjCEncodingForBlock(const BlockExpr *blockExpr) const;
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp142 bool TraverseBlockExpr(BlockExpr *block) { return true; } in TraverseBlockExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenCL.cpp123 if (isa<BlockExpr>(BlockArg)) { in checkBlockArgs()
124 BlockDecl *BD = cast<BlockExpr>(BlockArg)->getBlockDecl(); in checkBlockArgs()
H A DCheckExprLifetime.cpp896 if (cast<BlockExpr>(Init)->getBlockDecl()->hasCaptures()) { in visitLocalsRetainedByInitializer()
898 Visit(Path, Local(cast<BlockExpr>(Init)), RK_ReferenceBinding); in visitLocalsRetainedByInitializer()
1204 } else if (isa<BlockExpr>(L)) { in checkExprLifetimeImpl()
H A DSemaObjC.cpp892 void VisitBlockExpr(BlockExpr *block) { in VisitBlockExpr()
953 BlockExpr *block = dyn_cast<BlockExpr>(e); in findCapturingExpr()
H A DAnalysisBasedWarnings.cpp1049 const BlockExpr *BE = cast<BlockExpr>(Use.getUser()); in DiagnoseUninitializedUse()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp133 SmallVector<BlockExpr *, 32> Blocks;
148 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs;
466 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i,
469 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, StringRef funcName,
471 std::string SynthesizeBlockImpl(BlockExpr *CE, const std::string &Tag,
480 Stmt *SynthBlockInitExpr(BlockExpr *Exp,
491 void CollectBlockDeclRefInfo(BlockExpr *Exp);
4037 std::string RewriteModernObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, in SynthesizeBlockFunc()
4134 BlockExpr *CE, int i, StringRef funcName, const std::string &Tag) { in SynthesizeBlockHelperFuncs()
4176 std::string RewriteModernObjC::SynthesizeBlockImpl(BlockExpr *CE, in SynthesizeBlockImpl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp171 void VisitBlockExpr(BlockExpr *BE);
371 void TransferFunctions::VisitBlockExpr(BlockExpr *BE) { in VisitBlockExpr()
H A DUninitializedValues.cpp502 void VisitBlockExpr(BlockExpr *be);
701 void TransferFunctions::VisitBlockExpr(BlockExpr *be) { in VisitBlockExpr()
H A DCalledOnceCheck.cpp1120 const Expr *getBlockGuaraneedCallSite(const BlockExpr *Block) const { in getBlockGuaraneedCallSite()
1549 void VisitBlockExpr(const BlockExpr *Block) { in VisitBlockExpr()
H A DAnalysisDeclContext.cpp618 void VisitBlockExpr(BlockExpr *BR) { in VisitBlockExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td202 def BlockExpr : StmtNode<Expr>;
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h458 void VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1572 if (auto *BE = dyn_cast<BlockExpr>(CEE)) in getReferencedDeclOfCallee()
1993 assert((isa<CXXMemberCallExpr>(SubExpr) || isa<BlockExpr>(SubExpr)) && in getSubExprAsWritten()
2513 const FunctionProtoType *BlockExpr::getFunctionType() const { in getFunctionType()
2519 SourceLocation BlockExpr::getCaretLocation() const { in getCaretLocation()
2522 const Stmt *BlockExpr::getBody() const { in getBody()
2525 Stmt *BlockExpr::getBody() { in getBody()
H A DComputeDependence.cpp255 ExprDependence clang::computeDependence(BlockExpr *E) { in computeDependence()

123