HomeSort by relevance Sort by last modified time
    Searched refs:StoredValue (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 444 Value *StoredValue = 0;
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);
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 378 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
379 // StoredValue does not necessary have a pointer type.
380 if (isa<IntegerType>(StoredValue->getType()))
381 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
385 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy()));

Completed in 1208 milliseconds