Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DTargetLibraryInfo.cpp881 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
894 VectorDescs = TLI.VectorDescs; in TargetLibraryInfoImpl()
1131 llvm::append_range(VectorDescs, Fns); in addVectorizableFunctions()
1132 llvm::sort(VectorDescs, compareByScalarFnName); in addVectorizableFunctions()
1213 llvm::lower_bound(VectorDescs, funcName, compareWithScalarFnName); in isFunctionVectorizable()
1214 return I != VectorDescs.end() && StringRef(I->ScalarFnName) == funcName; in isFunctionVectorizable()
1224 llvm::lower_bound(VectorDescs, F, compareWithScalarFnName); in getVectorizedFunction()
1225 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == F) { in getVectorizedFunction()
1301 llvm::lower_bound(VectorDescs, ScalarF, compareWithScalarFnName); in getWidestVF()
1302 while (I != VectorDescs.end() && StringRef(I->ScalarFnName) == ScalarF) { in getWidestVF()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h73 std::vector<VecDesc> VectorDescs; variable