Home
last modified time | relevance | path

Searched refs:VectorDescs (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetLibraryInfo.cpp575 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
586 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1514 VectorDescs.insert(VectorDescs.end(), Fns.begin(), Fns.end()); in addVectorizableFunctions()
1515 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1559 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1560 return I != VectorDescs.end() && StringRef(I->ScalarFnName) == funcName; in isFunctionVectorizable()
1569 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorizedFunction()
1570 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == F) { in getVectorizedFunction()
1586 if (I == VectorDescs.end() || StringRef(I->VectorFnName) != F) in getScalarizedFunction()
1639 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.h70 std::vector<VecDesc> VectorDescs; variable