Home
last modified time | relevance | path

Searched refs:StoredValue (Results 1 – 2 of 2) sorted by relevance

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