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

/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp851 /// the stored value. LoadedTy is the type of the load we want to replace and
856 Type *LoadedTy,
859 if (!CanCoerceMustAliasedValueToLoad(StoredVal, LoadedTy, DL))
866 uint64_t LoadSize = DL.getTypeSizeInBits(LoadedTy);
872 LoadedTy->getScalarType()->isPointerTy())
873 return new BitCastInst(StoredVal, LoadedTy, "", InsertPt);
881 Type *TypeToCastTo = LoadedTy;
889 if (LoadedTy->getScalarType()->isPointerTy())
890 StoredVal = new IntToPtrInst(StoredVal, LoadedTy, "", InsertPt);
923 if (LoadedTy
855 CoerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy, Instruction *InsertPt, const DataLayout &DL) argument
[all...]

Completed in 152 milliseconds