Searched refs:NumHandlers (Results 1 - 13 of 13) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtCXX.h75 unsigned NumHandlers; member in class:clang::final
76 size_t numTrailingObjects(OverloadToken<Stmt *>) const { return NumHandlers; }
80 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
96 return getStmts()[NumHandlers]->getEndLoc();
106 unsigned getNumHandlers() const { return NumHandlers; }
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h60 unsigned NumHandlers : 32 - NumCommonBits;
184 CatchBits.NumHandlers = numHandlers;
185 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?");
189 return CatchBits.NumHandlers;
H A DCGException.cpp612 unsigned NumHandlers = S.getNumHandlers(); local
613 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
615 for (unsigned I = 0; I != NumHandlers; ++I) {
955 unsigned NumHandlers = CatchScope.getNumHandlers(); local
957 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
960 for (unsigned I = 0; I < NumHandlers; ++I) {
999 unsigned NumHandlers = CatchScope.getNumHandlers(); local
1001 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
1011 for (unsigned I = 0, E = NumHandlers; I < E; ++I) {
1042 for (unsigned I = 0, E = NumHandlers;;
1181 unsigned NumHandlers = S.getNumHandlers(); local
[all...]
H A DEHScopeStack.h328 class EHCatchScope *pushCatch(unsigned NumHandlers);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtCXX.cpp41 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Decho.cpp769 unsigned NumHandlers = LLVMGetNumHandlers(Src); local
770 Dst = LLVMBuildCatchSwitch(Builder, ParentPad, UnwindBB, NumHandlers, Name);
771 if (NumHandlers > 0) {
773 safe_malloc(NumHandlers * sizeof(LLVMBasicBlockRef)));
775 for (unsigned i = 0; i < NumHandlers; i++)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h4226 unsigned NumHandlers, const Twine &NameStr,
4234 unsigned NumHandlers, const Twine &NameStr,
4251 unsigned NumHandlers,
4254 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
4259 unsigned NumHandlers, const Twine &NameStr,
4261 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
H A DIRBuilder.h1095 unsigned NumHandlers,
1097 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers),
1094 CreateCatchSwitch(Value *ParentPad, BasicBlock *UnwindBB, unsigned NumHandlers, const Twine &Name = �) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp4452 const unsigned NumHandlers = Handlers.size(); local
4457 for (unsigned i = 0; i < NumHandlers; ++i) {
4464 if (i < NumHandlers - 1)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4497 unsigned NumHandlers = Record[Idx++]; local
4500 for (unsigned Op = 0; Op != NumHandlers; ++Op) {
4518 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h3679 unsigned NumHandlers, const char *Name);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp3229 unsigned NumHandlers, const char *Name) {
3235 NumHandlers, Name));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2950 unsigned NumHandlers = CatchSwitch.getNumHandlers(); local
2951 Vals.push_back(NumHandlers);

Completed in 480 milliseconds