Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp852 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
864 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1837 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1838 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1898 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1899 return I != VectorDescs.end() && StringRef(I->ScalarFnName) == funcName; in isFunctionVectorizable()
1909 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorizedFunction()
1910 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == F) { in getVectorizedFunction()
1970 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1971 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == ScalarF) { in getWidestVF()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h72 std::vector<VecDesc> VectorDescs; variable