Home
last modified time | relevance | path

Searched refs:LargestVectorWidth (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp203 uint64_t LargestVectorWidth = 0; in doPromotion() local
206 LargestVectorWidth = std::max( in doPromotion()
207 LargestVectorWidth, VT->getPrimitiveSizeInBits().getKnownMinSize()); in doPromotion()
213 AttributeFuncs::updateMinLegalVectorWidthAttr(*NF, LargestVectorWidth); in doPromotion()
288 LargestVectorWidth); in doPromotion()
H A DAttributor.cpp2572 uint64_t LargestVectorWidth = 0; in rewriteFunctionSignatures() local
2575 LargestVectorWidth = std::max( in rewriteFunctionSignatures()
2576 LargestVectorWidth, VT->getPrimitiveSizeInBits().getKnownMinSize()); in rewriteFunctionSignatures()
2607 AttributeFuncs::updateMinLegalVectorWidthAttr(*NewFn, LargestVectorWidth); in rewriteFunctionSignatures()
2686 LargestVectorWidth); in rewriteFunctionSignatures()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp478 LargestVectorWidth = in FinishFunction()
479 std::max((uint64_t)LargestVectorWidth, in FinishFunction()
484 LargestVectorWidth = in FinishFunction()
485 std::max((uint64_t)LargestVectorWidth, in FinishFunction()
488 if (CurFnInfo->getMaxVectorWidth() > LargestVectorWidth) in FinishFunction()
489 LargestVectorWidth = CurFnInfo->getMaxVectorWidth(); in FinishFunction()
498 CurFn->addFnAttr("min-legal-vector-width", llvm::utostr(LargestVectorWidth)); in FinishFunction()
1219 LargestVectorWidth = VecWidth->getVectorWidth(); in StartFunction()
H A DCGStmt.cpp2468 LargestVectorWidth = in EmitAsmStmt()
2469 std::max((uint64_t)LargestVectorWidth, in EmitAsmStmt()
2507 LargestVectorWidth = in EmitAsmStmt()
2508 std::max((uint64_t)LargestVectorWidth, in EmitAsmStmt()
2597 LargestVectorWidth = in EmitAsmStmt()
2598 std::max((uint64_t)LargestVectorWidth, in EmitAsmStmt()
H A DCGCall.cpp5248 LargestVectorWidth = std::max(LargestVectorWidth, in EmitCall()
5371 LargestVectorWidth = in EmitCall()
5372 std::max(LargestVectorWidth, getMaxVectorWidth(CI->getType())); in EmitCall()
H A DCodeGenFunction.h1968 unsigned LargestVectorWidth = 0;
H A DCGBuiltin.cpp5265 LargestVectorWidth = std::max(LargestVectorWidth, VectorWidth); in EmitBuiltinExpr()