Searched defs:NumHandlers (Results 1 - 7 of 7) sorted by relevance
/external/clang/include/clang/AST/ |
H A D | StmtCXX.h | 67 unsigned NumHandlers; member in class:clang::CXXTryStmt 72 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } 93 return getStmts()[NumHandlers]->getLocEnd(); 103 unsigned getNumHandlers() const { return NumHandlers; }
|
/external/clang/lib/CodeGen/ |
H A D | CGException.cpp | 543 unsigned NumHandlers = S.getNumHandlers(); local 544 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers); 546 for (unsigned I = 0; I != NumHandlers; ++I) { 887 unsigned NumHandlers = CatchScope.getNumHandlers(); local 889 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers); 892 for (unsigned I = 0; I < NumHandlers; ++I) { 1002 unsigned NumHandlers = S.getNumHandlers(); local 1004 assert(CatchScope.getNumHandlers() == NumHandlers); 1019 CatchScope.begin(), CatchScope.begin() + NumHandlers); 1044 for (unsigned I = NumHandlers; [all...] |
/external/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 2014 unsigned NumHandlers = CatchSwitch.getNumHandlers(); local 2015 Vals.push_back(NumHandlers);
|
/external/llvm/include/llvm/IR/ |
H A D | IRBuilder.h | 712 unsigned NumHandlers, 714 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers), 711 CreateCatchSwitch(Value *ParentPad, BasicBlock *UnwindBB, unsigned NumHandlers, const Twine &Name = �) argument
|
H A D | Instructions.h | 3849 unsigned NumHandlers, const Twine &NameStr, 3857 unsigned NumHandlers, const Twine &NameStr, 3867 unsigned NumHandlers, 3870 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr, 3874 unsigned NumHandlers, const Twine &NameStr, 3876 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr, 3866 Create(Value *ParentPad, BasicBlock *UnwindDest, unsigned NumHandlers, const Twine &NameStr = �, Instruction *InsertBefore = nullptr) argument 3873 Create(Value *ParentPad, BasicBlock *UnwindDest, unsigned NumHandlers, const Twine &NameStr, BasicBlock *InsertAtEnd) argument
|
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 4478 unsigned NumHandlers = Record[Idx++]; local 4481 for (unsigned Op = 0; Op != NumHandlers; ++Op) { 4499 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers);
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 3590 const unsigned NumHandlers = Handlers.size(); local 3595 for (unsigned i = 0; i < NumHandlers; ++i) { 3602 if (i < NumHandlers - 1)
|
Completed in 618 milliseconds