Lines Matching defs:DataArg
76 static bool callLooksLikeLoadStore(CallBase *CB, Value *&DataArg,
81 DataArg = nullptr;
94 if (!IsStore || DataArg)
97 DataArg = Arg;
100 if (IsStore && !DataArg) {
102 DataArg = ConstantInt::get(IntegerType::getInt32Ty(CB->getContext()), 0);
120 Value *DataArg = nullptr;
121 if (!callLooksLikeLoadStore(CB, DataArg, PtrArg) || O.shouldKeep())
125 if (DataArg)
126 return B.CreateStore(DataArg, PtrArg, true);