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