Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp644 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
655 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1613 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1614 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1674 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1675 return I != VectorDescs.end() && StringRef(I->ScalarFnName) == funcName; in isFunctionVectorizable()
1685 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorizedFunction()
1686 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == F) { in getVectorizedFunction()
1746 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1747 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == ScalarF) { in getWidestVF()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h70 std::vector<VecDesc> VectorDescs; variable