Lines Matching defs:StoreVal
8826 Value *StoreVal = EmitScalarExpr(E->getArg(0));
8833 if (StoreVal->getType()->isPointerTy())
8834 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
8838 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
8839 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
8840 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
8848 CallInst *CI = Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex");
11190 Value *StoreVal = EmitScalarExpr(E->getArg(0));
11197 if (StoreVal->getType()->isPointerTy())
11198 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty);
11202 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
11203 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
11204 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty);
11212 CallInst *CI = Builder.CreateCall(F, {StoreVal, StoreAddr}, "stxr");