HomeSort by relevance Sort by last modified time
    Searched defs:LoadTy (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 362 Type *LoadTy = cast<PointerType>(C->getType())->getElementType();
363 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
372 if (LoadTy->isFloatTy())
374 else if (LoadTy->isDoubleTy())
376 else if (LoadTy->isVectorTy()) {
378 TD.getTypeAllocSizeInBits(LoadTy));
385 return FoldBitCast(Res, LoadTy, TD);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 823 Type *LoadTy;
825 LoadTy = cast<LoadInst>(V)->getType();
826 if (LoadTy->isIntOrIntVectorTy())
829 if (LoadTy->isPtrOrPtrVectorTy()) {
830 LoadTy = Type::getIntNTy(F.getParent()->getContext(),
831 DL.getTypeSizeInBits(LoadTy));
836 unsigned Sz = DL.getTypeSizeInBits(LoadTy);
880 VectorType *VecLoadTy = dyn_cast<VectorType>(LoadTy);
882 VecTy = VectorType::get(LoadTy->getScalarType(),
885 VecTy = VectorType::get(LoadTy, Chain.size())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 699 Type *LoadTy,
703 if (LoadTy->isStructTy() || LoadTy->isArrayTy() ||
710 DL.getTypeSizeInBits(LoadTy))
810 static int AnalyzeLoadFromClobberingWrite(Type *LoadTy, Value *LoadPtr,
816 if (LoadTy->isStructTy() || LoadTy->isArrayTy())
844 uint64_t LoadSize = DL.getTypeSizeInBits(LoadTy);
885 static int AnalyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr,
895 return AnalyzeLoadFromClobberingWrite(LoadTy, LoadPtr
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
GVN.cpp 665 Type *LoadTy,
669 if (LoadTy->isStructTy() || LoadTy->isArrayTy() ||
676 TD.getTypeSizeInBits(LoadTy))
775 static int AnalyzeLoadFromClobberingWrite(Type *LoadTy, Value *LoadPtr,
781 if (LoadTy->isStructTy() || LoadTy->isArrayTy())
808 uint64_t LoadSize = TD.getTypeSizeInBits(LoadTy);
849 static int AnalyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr,
859 return AnalyzeLoadFromClobberingWrite(LoadTy, LoadPtr
    [all...]
ScalarReplAggregates.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 958 milliseconds