Home | History | Annotate | Download | only in IR

Lines Matching defs:Ctx

30     M.reset(new Module("MyModule", Ctx));
31 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
34 BB = BasicBlock::Create(Ctx, "", F);
35 GV = new GlobalVariable(*M, Type::getFloatTy(Ctx), true,
44 LLVMContext Ctx;
84 BasicBlock *TBB = BasicBlock::Create(Ctx, "", F);
85 BasicBlock *FBB = BasicBlock::Create(Ctx, "", F);
95 MDNode *Weights = MDBuilder(Ctx).createBranchWeights(42, 13);
112 std::unique_ptr<Module> M(new Module("test", Ctx));
122 EXPECT_EQ(Ty1, IntegerType::get(Ctx, 1));
127 EXPECT_EQ(IntPtrTy, IntegerType::get(Ctx, IntPtrBitSize));
212 auto CalleeTy = FunctionType::get(Type::getFloatTy(Ctx),
378 auto CalleeTy = FunctionType::get(Type::getVoidTy(Ctx),
390 DebugLoc DL1 = DILocation::get(Ctx, 2, 0, SP);
391 DebugLoc DL2 = DILocation::get(Ctx, 3, 0, SP);
393 auto BB2 = BasicBlock::Create(Ctx, "bb2", F);
397 IRBuilder<> Builder(Ctx);