Home
last modified time | relevance | path

Searched refs:beginCatchFn (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp175 llvm::Constant *beginCatchFn, in EmitTryCatchStmt() argument
186 beginCatchFn, endCatchFn, exceptionRethrowFn); in EmitTryCatchStmt()
236 if (beginCatchFn) { in EmitTryCatchStmt()
237 Exn = CGF.Builder.CreateCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt()
DCGObjCRuntime.h100 llvm::Constant *beginCatchFn,
DCGException.cpp1191 llvm::Constant *beginCatchFn, in enter() argument
1194 assert((beginCatchFn != nullptr) == (endCatchFn != nullptr) && in enter()
1198 BeginCatchFn = beginCatchFn; in enter()
DCodeGenFunction.h389 llvm::Constant *beginCatchFn, llvm::Constant *endCatchFn,
/external/llvm-project/clang/lib/CodeGen/
DCGObjCRuntime.cpp145 llvm::FunctionCallee beginCatchFn, in EmitTryCatchStmt() argument
159 beginCatchFn, endCatchFn, exceptionRethrowFn); in EmitTryCatchStmt()
242 if (beginCatchFn) in EmitTryCatchStmt()
243 Exn = CGF.EmitNounwindRuntimeCall(beginCatchFn, RawExn, "exn.adjusted"); in EmitTryCatchStmt()
DCGObjCRuntime.h100 llvm::FunctionCallee beginCatchFn,
DCGException.cpp1379 llvm::FunctionCallee beginCatchFn, in enter() argument
1382 assert((!!beginCatchFn) == (!!endCatchFn) && in enter()
1386 BeginCatchFn = beginCatchFn; in enter()
DCodeGenFunction.h667 llvm::FunctionCallee beginCatchFn,