Searched defs:StoredValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp323 Value *StoredValue = cast<StoreInst>(I)->getValueOperand(); local
324 // StoredValue does not necessary have a pointer type.
325 if (isa<IntegerType>(StoredValue->getType()))
326 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
330 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy()));
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp444 Value *StoredValue = 0; local
452 if (StoredValue) {
453 replaceLoadWithValue(L, StoredValue);
454 L->replaceAllUsesWith(StoredValue);
455 ReplacedLoads[L] = StoredValue;
468 StoredValue = SI->getOperand(0);
473 assert(StoredValue && "Already checked that there is a store in block");
474 SSA.AddAvailableValue(BB, StoredValue);

Completed in 64 milliseconds