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

  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 664 static bool CanCoerceMustAliasedValueToLoad(Value *StoredVal,
670 StoredVal->getType()->isStructTy() ||
671 StoredVal->getType()->isArrayTy())
675 if (TD.getTypeSizeInBits(StoredVal->getType()) <
689 static Value *CoerceAvailableValueToLoadType(Value *StoredVal,
693 if (!CanCoerceMustAliasedValueToLoad(StoredVal, LoadedTy, TD))
697 Type *StoredValTy = StoredVal->getType();
706 return new BitCastInst(StoredVal, LoadedTy, "", InsertPt);
711 StoredVal = new PtrToIntInst(StoredVal, StoredValTy, "", InsertPt)
    [all...]
LoopIdiomRecognize.cpp 272 Value *StoredVal = SI->getValueOperand();
276 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
307 StoredVal, SI, StoreEv, BECount))
313 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
441 unsigned StoreAlignment, Value *StoredVal,
449 Value *SplatValue = isBytewiseValue(StoredVal);
461 (PatternValue = getMemSetPatternValue(StoredVal, *TD))) {
ScalarReplAggregates.cpp 281 Value *ConvertScalar_InsertValue(Value *StoredVal, Value *ExistingVal,
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 213 Value *StoredVal = SI->getOperand(0);
214 if (StoredVal == GV->getInitializer()) {
217 } else if (isa<LoadInst>(StoredVal) &&
218 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
223 GS.StoredOnceValue = StoredVal;
225 GS.StoredOnceValue == StoredVal) {
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 297 milliseconds