Searched refs:VectorDescs (Results 1 – 2 of 2) sorted by relevance
654 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()
71 std::vector<VecDesc> VectorDescs; variable