Lines Matching refs:getGlobalContext
855 static IRBuilder<> Builder(getGlobalContext());
866 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
871 return ConstantFP::get(getGlobalContext(), APFloat(Val)); in Codegen()
927 return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()), in Codegen()
966 ConstantFP::get(getGlobalContext(), APFloat(0.0)), in Codegen()
973 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction); in Codegen()
974 BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); in Codegen()
975 BasicBlock *MergeBB = BasicBlock::Create(getGlobalContext(), "ifcont"); in Codegen()
1003 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, in Codegen()
1046 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction); in Codegen()
1072 StepVal = ConstantFP::get(getGlobalContext(), APFloat(1.0)); in Codegen()
1087 ConstantFP::get(getGlobalContext(), APFloat(0.0)), in Codegen()
1091 BasicBlock *AfterBB = BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction); in Codegen()
1107 return Constant::getNullValue(Type::getDoubleTy(getGlobalContext())); in Codegen()
1130 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0)); in Codegen()
1159 Type::getDoubleTy(getGlobalContext())); in Codegen()
1160 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), in Codegen()
1226 BasicBlock *BB = BasicBlock::Create(getGlobalContext(), "entry", TheFunction); in Codegen()
1352 LLVMContext &Context = getGlobalContext(); in main()