Searched refs:SizeAndAction (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp358 for (SizeAndAction BitsizeAndAction : VectorSpecifiedActions.second) {
563 LegalizerInfo::SizeAndAction
570 Vec, [=](const SizeAndAction &A) { return A.first <= Size; });
642 auto SizeAndAction = findAction(Vec, Aspect.Type.getSizeInBits()); local
643 return {SizeAndAction.second,
644 Aspect.Type.isScalar() ? LLT::scalar(SizeAndAction.first)
646 SizeAndAction.first)};
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h1022 using SizeAndAction = std::pair<uint16_t, LegalizeAction>;
1023 using SizeAndActionsVec = std::vector<SizeAndAction>;
1316 for(auto SizeAndAction: v) {
1317 assert(SizeAndAction.first > prev_size);
1318 prev_size = SizeAndAction.first;
1379 static SizeAndAction findAction(const SizeAndActionsVec &Vec,

Completed in 126 milliseconds