Lines Matching defs:StoreVal
9221 Value *StoreVal = EmitScalarExpr(E->getArg(0));
9228 if (StoreVal->getType()->isPointerTy())
9229 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
9233 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
9234 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
9235 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
9243 CallInst *CI = Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex");
11553 Value *StoreVal = EmitScalarExpr(E->getArg(0));
11560 if (StoreVal->getType()->isPointerTy())
11561 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty);
11565 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
11566 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
11567 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty);
11575 CallInst *CI = Builder.CreateCall(F, {StoreVal, StoreAddr}, "stxr");