Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp654 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
666 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1632 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1633 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1693 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1694 return I != VectorDescs.end() && StringRef(I->ScalarFnName) == funcName; in isFunctionVectorizable()
1704 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorizedFunction()
1705 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == F) { in getVectorizedFunction()
1765 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1766 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == ScalarF) { in getWidestVF()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h71 std::vector<VecDesc> VectorDescs; variable