Lines Matching defs:XVal

3795   AllocaInst *XVal = Builder.CreateAlloca(Float32);
3796 XVal->setName("AtomicVar");
3800 OpenMPIRBuilder::AtomicOpValue X = {XVal, Float32, false, false};
3810 EXPECT_EQ(AtomicLoad->getPointerOperand(), XVal);
3835 AllocaInst *XVal = Builder.CreateAlloca(Int32);
3836 XVal->setName("AtomicVar");
3840 OpenMPIRBuilder::AtomicOpValue X = {XVal, Int32, false, false};
3852 if (AtomicLoad->getPointerOperand() == XVal)
3885 AllocaInst *XVal = Builder.CreateAlloca(Float32);
3886 XVal->setName("AtomicVar");
3887 OpenMPIRBuilder::AtomicOpValue X = {XVal, Float32, false, false};
3898 StoreInst *StoreofAtomic = cast<StoreInst>(XVal->getNextNode());
3900 EXPECT_EQ(StoreofAtomic->getPointerOperand(), XVal);
3918 AllocaInst *XVal = Builder.CreateAlloca(Int32);
3919 XVal->setName("AtomicVar");
3920 OpenMPIRBuilder::AtomicOpValue X = {XVal, Int32, false, false};
3933 if (StoreofAtomic->getPointerOperand() == XVal)
3957 AllocaInst *XVal = Builder.CreateAlloca(Int32);
3958 XVal->setName("AtomicVar");
3959 Builder.CreateStore(ConstantInt::get(Type::getInt32Ty(Ctx), 0U), XVal);
3960 OpenMPIRBuilder::AtomicOpValue X = {XVal, Int32, false, false};
4005 EXPECT_EQ(CmpExchg->getPointerOperand(), XVal);
4027 AllocaInst *XVal = Builder.CreateAlloca(FloatTy);
4028 XVal->setName("AtomicVar");
4029 Builder.CreateStore(ConstantFP::get(Type::getFloatTy(Ctx), 0.0), XVal);
4030 OpenMPIRBuilder::AtomicOpValue X = {XVal, FloatTy, false, false};
4075 EXPECT_EQ(CmpExchg->getPointerOperand(), XVal);
4096 AllocaInst *XVal = Builder.CreateAlloca(IntTy);
4097 XVal->setName("AtomicVar");
4098 Builder.CreateStore(ConstantInt::get(Type::getInt32Ty(Ctx), 0), XVal);
4099 OpenMPIRBuilder::AtomicOpValue X = {XVal, IntTy, false, false};
4144 EXPECT_EQ(CmpExchg->getPointerOperand(), XVal);
4167 AllocaInst *XVal = Builder.CreateAlloca(Int32);
4168 XVal->setName("AtomicVar");
4172 Builder.CreateStore(ConstantInt::get(Type::getInt32Ty(Ctx), 0U), XVal);
4174 OpenMPIRBuilder::AtomicOpValue X = {XVal, Int32, false, false};
4198 EXPECT_EQ(ARWM->getPointerOperand(), XVal);
4219 AllocaInst *XVal = Builder.CreateAlloca(Int32);
4220 XVal->setName("x");
4222 Builder.CreateStore(ConstantInt::get(Type::getInt32Ty(Ctx), 0U), XVal);
4224 OpenMPIRBuilder::AtomicOpValue XSigned = {XVal, Int32, true, false};
4225 OpenMPIRBuilder::AtomicOpValue XUnsigned = {XVal, Int32, false, false};
4248 EXPECT_EQ(ARWM1->getPointerOperand(), XVal);
4254 EXPECT_EQ(ARWM2->getPointerOperand(), XVal);
4260 EXPECT_EQ(AXCHG->getPointerOperand(), XVal);
4279 AllocaInst *XVal = Builder.CreateAlloca(Int32);
4280 XVal->setName("x");
4287 Builder.CreateStore(ConstantInt::get(Type::getInt32Ty(Ctx), 0U), XVal);
4289 OpenMPIRBuilder::AtomicOpValue X = {XVal, Int32, true, false};
4352 EXPECT_EQ(CmpXchg1->getPointerOperand(), XVal);
4378 EXPECT_EQ(CmpXchg2->getPointerOperand(), XVal);
4394 EXPECT_EQ(CmpXchg3->getPointerOperand(), XVal);
4425 EXPECT_EQ(CmpXchg4->getPointerOperand(), XVal);
4444 EXPECT_EQ(CmpXchg5->getPointerOperand(), XVal);
4487 EXPECT_EQ(ARWM1->getPointerOperand(), XVal);
4497 EXPECT_EQ(ARWM2->getPointerOperand(), XVal);