Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp923 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
936 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1200 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1201 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1337 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1338 return I != VectorDescs.end() && StringRef(I->getScalarFnName()) == funcName; in isFunctionVectorizable()
1357 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorMappingInfo()
1358 while (I != VectorDescs.end() && StringRef(I->getScalarFnName()) == F) { in getVectorMappingInfo()
1438 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1439 while (I != VectorDescs.end() && StringRef(I->getScalarFnName()) == ScalarF) { in getWidestVF()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h106 std::vector<VecDesc> VectorDescs; variable