HomeSort by: relevance | last modified time | path
    Searched defs:StoredValue (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 397 Value *StoredValue = nullptr;
405 if (StoredValue) {
406 replaceLoadWithValue(L, StoredValue);
407 L->replaceAllUsesWith(StoredValue);
408 ReplacedLoads[L] = StoredValue;
421 StoredValue = SI->getOperand(0);
426 assert(StoredValue && "Already checked that there is a store in block");
427 SSA.AddAvailableValue(BB, StoredValue);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 629 Value *StoredValue = cast<StoreInst>(II.Inst)->getValueOperand();
630 // StoredValue may be a vector type if we are storing several vptrs at once.
633 if (isa<VectorType>(StoredValue->getType()))
634 StoredValue = IRB.CreateExtractElement(
635 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0));
636 if (StoredValue->getType()->isIntegerTy())
637 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
641 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())});

Completed in 154 milliseconds