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

1 2

  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Utils/
VNCoercion.h 38 bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
47 Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 99 Value *StoredVal = SI->getOperand(0);
101 if (Constant *C = dyn_cast<Constant>(StoredVal)) {
108 if (GV->hasInitializer() && StoredVal == GV->getInitializer()) {
111 } else if (isa<LoadInst>(StoredVal) &&
112 cast<LoadInst>(StoredVal)->getOperand(0) == GV) {
117 GS.StoredOnceValue = StoredVal;
119 GS.StoredOnceValue == StoredVal) {
  /external/swiftshader/third_party/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))) {
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 698 static bool CanCoerceMustAliasedValueToLoad(Value *StoredVal,
704 StoredVal->getType()->isStructTy() ||
705 StoredVal->getType()->isArrayTy())
709 if (DL.getTypeSizeInBits(StoredVal->getType()) <
722 static Value *CoerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
725 assert(CanCoerceMustAliasedValueToLoad(StoredVal, LoadedTy, DL) &&
729 Type *StoredValTy = StoredVal->getType();
739 return IRB.CreateBitCast(StoredVal, LoadedTy);
744 StoredVal = IRB.CreatePtrToInt(StoredVal, StoredValTy)
    [all...]
LoopIdiomRecognize.cpp 116 unsigned StoreAlignment, Value *StoredVal,
345 Value *StoredVal = SI->getValueOperand();
349 uint64_t SizeInBits = DL->getTypeSizeInBits(StoredVal->getType());
371 Value *SplatValue = isBytewiseValue(StoredVal);
386 (PatternValue = getMemSetPatternValue(StoredVal, DL))) {
623 Value *StoredVal = HeadStore->getValueOperand();
636 StoredVal, HeadStore, AdjacentStores, StoreEv,
746 Value *StoredVal, Instruction *TheStore,
749 Value *SplatValue = isBytewiseValue(StoredVal);
753 PatternValue = getMemSetPatternValue(StoredVal, DL)
    [all...]
  /external/swiftshader/third_party/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/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 370 auto StoredVal =
372 if (!StoredVal)
375 if (getNullConstraint(*StoredVal, State) == NullConstraint::IsNull)
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 485 milliseconds

1 2