Home | History | Annotate | Download | only in Utils

Lines Matching full:getcontext

122   Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext());
129 JBLinkTy = StructType::create(M.getContext(), "llvm.sjljeh.jmpbufty");
166 AbortFn = M.getOrInsertFunction("abort", Type::getVoidTy(M.getContext()),
205 ConstantInt *InvokeNoC = ConstantInt::get(Type::getInt32Ty(II->getContext()),
230 new StoreInst(Constant::getNullValue(Type::getInt32Ty(II->getContext())),
438 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
439 ConstantInt::get(Type::getInt32Ty(F.getContext()), 1) };
454 BasicBlock::Create(F.getContext(), "setjmp.catch", &F);
459 AllocaInst *StackPtr = new AllocaInst(Type::getInt8PtrTy(F.getContext()), 0,
464 AllocaInst *InvokeNum = new AllocaInst(Type::getInt32Ty(F.getContext()), 0,
466 new StoreInst(ConstantInt::get(Type::getInt32Ty(F.getContext()), 0),
473 BasicBlock *UnwindBB = BasicBlock::Create(F.getContext(), "unwindbb", &F);
474 UnreachablePlaceholder = new UnreachableInst(F.getContext(), UnwindBB);
486 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 0);
490 Type::getInt8PtrTy(F.getContext()),
516 BasicBlock *UnwindHandler = BasicBlock::Create(F.getContext(),
518 BasicBlock *UnwindBlock = BasicBlock::Create(F.getContext(), "unwind", &F);
519 BasicBlock *TermBlock = BasicBlock::Create(F.getContext(), "unwinderror", &F);
539 Value *Idx[] = { Constant::getNullValue(Type::getInt32Ty(F.getContext())),
540 ConstantInt::get(Type::getInt32Ty(F.getContext()), 0) };
543 Type::getInt8PtrTy(F.getContext()),
545 Idx[1] = ConstantInt::get(Type::getInt32Ty(F.getContext()), 1);
547 new UnreachableInst(F.getContext(), UnwindBlock);
550 new UnreachableInst(F.getContext(), TermBlock);