Home | History | Annotate | Download | only in ParallelJIT

Lines Matching full:getcontext

39                                           Type::getInt32Ty(M->getContext()),
40 Type::getInt32Ty(M->getContext()),
45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
48 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
59 ReturnInst::Create(M->getContext(), Add, BB);
70 Type::getInt32Ty(M->getContext()),
71 Type::getInt32Ty(M->getContext()),
75 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", FibF);
78 Value *One = ConstantInt::get(Type::getInt32Ty(M->getContext()), 1);
79 Value *Two = ConstantInt::get(Type::getInt32Ty(M->getContext()), 2);
86 BasicBlock *RetBB = BasicBlock::Create(M->getContext(), "return", FibF);
88 BasicBlock* RecurseBB = BasicBlock::Create(M->getContext(), "recurse", FibF);
95 ReturnInst::Create(M->getContext(), One, RetBB);
110 ReturnInst::Create(M->getContext(), Sum, RecurseBB);