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.cpp899 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
912 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1176 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1177 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1287 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1288 return I != VectorDescs.end() && StringRef(I->getScalarFnName()) == funcName; in isFunctionVectorizable()
1307 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorMappingInfo()
1308 while (I != VectorDescs.end() && StringRef(I->getScalarFnName()) == F) { in getVectorMappingInfo()
1384 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1385 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