Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenCLRuntime.cpp113 static const BlockExpr *getBlockExpr(const Expr *E) { in getBlockExpr()
115 while(!isa<BlockExpr>(E) && E != Prev) { in getBlockExpr()
122 return cast<BlockExpr>(E); in getBlockExpr()
127 void CGOpenCLRuntime::recordBlockInfo(const BlockExpr *E, in recordBlockInfo()
149 const BlockExpr *Block = getBlockExpr(E); in emitOpenCLEnqueuedBlock()
H A DCGOpenCLRuntime.h27 class BlockExpr; variable
95 void recordBlockInfo(const BlockExpr *E, llvm::Function *InvokeF,
H A DCGBlocks.h277 const BlockExpr *BlockExpression;
305 const BlockExpr *getBlockExpr() const { in getBlockExpr()
H A DCodeGenModule.h66 class BlockExpr; variable
563 llvm::DenseMap<const BlockExpr *, llvm::Constant *> EmittedGlobalBlocks;
1017 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, StringRef Name);
1021 llvm::Constant *getAddrOfGlobalBlockIfEmitted(const BlockExpr *BE) { in getAddrOfGlobalBlockIfEmitted()
1027 void setAddrOfGlobalBlock(const BlockExpr *BE, llvm::Constant *Addr);
H A DCGDecl.cpp690 if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { in isAccessedBy()
1711 if (const BlockExpr *BE = dyn_cast<BlockExpr>(E)) { in isCapturedBy()
H A DCGObjC.cpp3065 if (isa<BlockExpr>(e)) in shouldEmitSeparateBlockRetain()
3106 Result visitBlockExpr(const BlockExpr *e);
3183 Result ARCExprEmitter<Impl, Result>::visitBlockExpr(const BlockExpr *e) { in visitBlockExpr()
3331 } else if (auto *be = dyn_cast<BlockExpr>(e)) in visit()
3367 TryEmitResult visitBlockExpr(const BlockExpr *e) { in visitBlockExpr()
H A DCGBlocks.cpp758 llvm::Value *CodeGenFunction::EmitBlockLiteral(const BlockExpr *blockExpr) { in EmitBlockLiteral()
1248 void CodeGenModule::setAddrOfGlobalBlock(const BlockExpr *BE, in setAddrOfGlobalBlock()
1256 CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE, in GetAddrOfGlobalBlock()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUndefCapturedBlockVarChecker.cpp29 : public Checker< check::PostStmt<BlockExpr> > {
33 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
52 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
H A DObjCUnusedIVarsChecker.cpp46 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { in Scan()
H A DMallocChecker.cpp303 check::NewAllocator, check::PostStmt<BlockExpr>,
337 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2958 void MallocChecker::checkPostStmt(const BlockExpr *BE, in checkPostStmt()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCallGraph.cpp61 if (BlockExpr *Block = dyn_cast<BlockExpr>(CEE)) { in getDeclFromCall()
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.cpp1119 const Expr *getBlockGuaraneedCallSite(const BlockExpr *Block) const { in getBlockGuaraneedCallSite()
1548 void VisitBlockExpr(const BlockExpr *Block) { in VisitBlockExpr()
H A DAnalysisDeclContext.cpp618 void VisitBlockExpr(BlockExpr *BR) { in VisitBlockExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h47 class BlockExpr; variable
134 ExprDependence computeDependence(BlockExpr *E);
H A DEvaluatedExprVisitor.h48 void VisitBlockExpr(PTR(BlockExpr) E) { } in VisitBlockExpr()
H A DASTNodeTraverser.h732 void VisitBlockExpr(const BlockExpr *Node) { Visit(Node->getBlockDecl()); } in VisitBlockExpr()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h242 check::PostStmt<BlockExpr>,
294 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) 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/Frontend/Rewrite/
H A DRewriteObjC.cpp123 SmallVector<BlockExpr *, 32> Blocks;
138 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs;
378 std::string SynthesizeBlockFunc(BlockExpr *CE, int i,
380 std::string SynthesizeBlockImpl(BlockExpr *CE,
390 Stmt *SynthBlockInitExpr(BlockExpr *Exp,
402 void CollectBlockDeclRefInfo(BlockExpr *Exp);
3649 if (BlockExpr *CBE = dyn_cast<BlockExpr>(SubStmt)) in GetBlockDeclRefExprs()
3667 if (BlockExpr *CBE = dyn_cast<BlockExpr>(SubStmt)) { in GetInnerBlockDeclRefExprs()
4312 void RewriteObjC::CollectBlockDeclRefInfo(BlockExpr *Exp) { in CollectBlockDeclRefInfo()
4349 Stmt *RewriteObjC::SynthBlockInitExpr(BlockExpr *Exp, in SynthBlockInitExpr()
[all …]
H A DRewriteModernObjC.cpp133 SmallVector<BlockExpr *, 32> Blocks;
148 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs;
467 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i,
469 std::string SynthesizeBlockFunc(BlockExpr *CE, int i,
471 std::string SynthesizeBlockImpl(BlockExpr *CE,
481 Stmt *SynthBlockInitExpr(BlockExpr *Exp,
492 void CollectBlockDeclRefInfo(BlockExpr *Exp);
4462 if (BlockExpr *CBE = dyn_cast<BlockExpr>(SubStmt)) in GetBlockDeclRefExprs()
4480 if (BlockExpr *CBE = dyn_cast<BlockExpr>(SubStmt)) { in GetInnerBlockDeclRefExprs()
5195 Stmt *RewriteModernObjC::SynthBlockInitExpr(BlockExpr *Exp, in SynthBlockInitExpr()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td201 def BlockExpr : StmtNode<Expr>;
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h466 void VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1542 if (auto *BE = dyn_cast<BlockExpr>(CEE)) in getReferencedDeclOfCallee()
1968 assert((isa<CXXMemberCallExpr>(SubExpr) || isa<BlockExpr>(SubExpr)) && in getSubExprAsWritten()
2477 const FunctionProtoType *BlockExpr::getFunctionType() const { in getFunctionType()
2483 SourceLocation BlockExpr::getCaretLocation() const { in getCaretLocation()
2486 const Stmt *BlockExpr::getBody() const { in getBody()
2489 Stmt *BlockExpr::getBody() { in getBody()

123