Lines Matching refs:getGlobalContext
1069 static IRBuilder<> Builder(getGlobalContext());
1080 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
1085 return ConstantFP::get(getGlobalContext(), APFloat(Val)); in Codegen()
1143 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()), in Codegen()
1186 ConstantFP::get(getGlobalContext(), APFloat(0.0)), in Codegen()
1193 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction); in Codegen()
1194 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); in Codegen()
1195 BasicBlock *MergeBB = BasicBlock::Create(getGlobalContext(), "ifcont"); in Codegen()
1223 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, in Codegen()
1266 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction); in Codegen()
1292 StepVal = ConstantFP::get(getGlobalContext(), APFloat(1.0)); in Codegen()
1307 ConstantFP::get(getGlobalContext(), APFloat(0.0)), in Codegen()
1311 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction); in Codegen()
1327 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext())); in Codegen()
1350 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0)); in Codegen()
1379 Type::getDoubleTy(getGlobalContext())); in Codegen()
1380 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), in Codegen()
1446 BasicBlock *BB = BasicBlock::Create(getGlobalContext(), "entry", TheFunction); in Codegen()
1568 LLVMContext &Context = getGlobalContext(); in main()