Home
last modified time | relevance | path

Searched refs:UF (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp213 Value *V = State.get(ExitValue, VPIteration(State.UF - 1, Lane)); in fixPhi()
458 createStepForVF(Builder, ScalarTC->getType(), State.VF, State.UF); in generatePerPart()
560 VectorParts RdxParts(State.UF); in generatePerPart()
561 for (unsigned Part = 0; Part < State.UF; ++Part) in generatePerPart()
570 for (unsigned Part = 0; Part < State.UF; ++Part) in generatePerPart()
580 ReducedPartRdx = RdxParts[State.UF - 1]; in generatePerPart()
585 for (unsigned Part = 1; Part < State.UF; ++Part) { in generatePerPart()
634 VPIteration(State.UF - 1, VPLane::getLaneFromEnd(State.VF, Offset))); in generatePerPart()
636 assert(Offset <= State.UF && "invalid offset to extract from"); in generatePerPart()
638 Res = State.get(getOperand(0), State.UF - Offset); in generatePerPart()
[all …]
H A DVPlan.cpp219 VPTransformState::VPTransformState(ElementCount VF, unsigned UF, LoopInfo *LI, in VPTransformState() argument
223 : VF(VF), UF(UF), CFG(DT), LI(LI), Builder(Builder), ILV(ILV), Plan(Plan), in VPTransformState()
391 DIL->cloneByMultiplyingDuplicationFactor(UF * VF.getKnownMinValue()); in setDebugLocFrom()
762 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute() local
933 createStepForVF(Builder, TripCountV->getType(), State.VF, State.UF)); in prepareToExecute()
1069 unsigned LastPartForNewPhi = SinglePartNeeded ? 1 : State->UF; in execute()
1075 SinglePartNeeded ? State->UF - 1 : Part, NeedsScalar); in execute()
1164 for (unsigned UF : drop_begin(UFs)) in getName() local
1165 RSO << "," << UF; in getName()
H A DLoopVectorize.cpp481 AC(AC), ORE(ORE), VF(VecWidth), UF(UnrollFactor), in InnerLoopVectorizer()
645 unsigned UF; member in llvm::InnerLoopVectorizer
2312 ElementCount VF, std::optional<unsigned> UF = std::nullopt) { in isIndvarOverflowCheckKnownFalse() argument
2314 unsigned MaxUF = UF ? *UF : Cost->TTI.getMaxInterleaveFactor(VF); in isIndvarOverflowCheckKnownFalse()
2417 Value *Step = createStepForVF(Builder, Ty, VF, UF); in getOrCreateVectorTripCount()
2428 assert(isPowerOf2_32(VF.getKnownMinValue() * UF) && in getOrCreateVectorTripCount()
2477 if (UF * VF.getKnownMinValue() >= MinProfitableTripCount.getKnownMinValue()) in emitIterationCountCheck()
2478 return createStepForVF(Builder, CountTy, VF, UF); in emitIterationCountCheck()
2485 Intrinsic::umax, MinProfTC, createStepForVF(Builder, CountTy, VF, UF)); in emitIterationCountCheck()
2493 !isIndvarOverflowCheckKnownFalse(Cost, VF, UF) && in emitIterationCountCheck()
[all …]
H A DVPlan.h256 VPTransformState(ElementCount VF, unsigned UF, LoopInfo *LI,
262 unsigned UF; member
315 DataState::PerPartValuesTy Entry(UF);
3406 bool hasUF(unsigned UF) const { return UFs.empty() || UFs.contains(UF); } in hasUF() argument
3408 void setUF(unsigned UF) { in setUF() argument
3409 assert(hasUF(UF) && "Cannot set the UF not already in plan"); in setUF()
3411 UFs.insert(UF); in setUF()
H A DLoopVectorizationPlanner.h385 executePlan(ElementCount VF, unsigned UF, VPlan &BestPlan,
/freebsd/sys/cam/scsi/
H A Dscsi_ses.h41 #define GEN_GETTER(LS, US, LF, UF) \ argument
44 return ((elem->bytes[MK_ENUM(US,UF,_BYTE)] & MK_ENUM(US,UF,_MASK)) \
45 >> MK_ENUM(US,UF,_SHIFT)); \
48 #define GEN_SETTER(LS, US, LF, UF) \ argument
51 elem->bytes[MK_ENUM(US,UF,_BYTE)] &= ~MK_ENUM(US,UF,_MASK); \
52 elem->bytes[MK_ENUM(US,UF,_BYTE)] |= \
53 (val << MK_ENUM(US,UF,_SHIFT)) & MK_ENUM(US,UF,_MASK); \
56 #define GEN_HDR_GETTER(LS, US, LF, UF) \ argument
59 return ((page->hdr.page_specific_flags & MK_ENUM(US,UF,_MASK)) \
60 >> MK_ENUM(US,UF,_SHIFT)); \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp761 NodeToUsesMap::iterator UF = Uses.find(Node); in recalculatePlacement() local
762 assert(UF != Uses.end() && "Used node with no use information"); in recalculatePlacement()
763 UseSet &Us = UF->second; in recalculatePlacement()
969 NodeToUsesMap::iterator UF = Uses.find(Node); in separateChainForNode() local
970 assert(UF != Uses.end()); in separateChainForNode()
971 UseSet &Us = UF->second; in separateChainForNode()
982 Uses.erase(UF); in separateChainForNode()
1005 NodeToUsesMap::iterator UF = Uses.find(N); in separateConstantChains() local
1006 assert(UF != Uses.end()); in separateConstantChains()
1007 UseSet &Us = UF->second; in separateConstantChains()
[all …]
/freebsd/bin/pax/
H A Doptions.h68 #define UF 0x00004000 macro
109 #define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CPF|CXF|CYF|CZF)
H A Doptions.c343 flg |= UF; in pax_options()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h502 Loop *RemainderLoop, uint64_t UF);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1702 Loop *RemainderLoop, uint64_t UF) { in setProfileInfoAfterUnrolling() argument
1703 assert(UF > 0 && "Zero unrolled factor is not supported"); in setProfileInfoAfterUnrolling()
1715 unsigned UnrolledAverageTripCount = *OrigAverageTripCount / UF; in setProfileInfoAfterUnrolling()
1717 unsigned RemainderAverageTripCount = *OrigAverageTripCount % UF; in setProfileInfoAfterUnrolling()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp470 void annotateSelects(PGOUseFunc *UF, unsigned *Ind) { in annotateSelects()
472 UseFunc = UF; in annotateSelects()
/freebsd/contrib/bmake/
H A Dbmake.cat1528 ..SSUUFFFFIIXXEESS) removed; also known as `_*'.
1613 The suffix must have been previously declared with ..SSUUFFFFIIXXEESS.
1676 ..SSUUFFFFIIXXEESS
1747 with the notable exception of ..PPHHOONNYY, ..PPRREECCIIOOUUSS, and ..SSUUFFFFIIXXEESS.
/freebsd/share/misc/
H A Dusb_vendors4743 0104 GT-7600UF [Perfection 1200U/1200U Photo]
4755 0110 GT-8200U/GT-8200UF [Perfection 1650/1650 PHOTO]
4758 0116 GT-9400UF [Perfection 3170]
4762 011b GT-9300UF [Perfection 2400 PHOTO]
4765 011e GT-8300UF [Perfection 1660 PHOTO]
4766 011f GT-8400UF [Perfection 1670/1670 PHOTO]
6833 1006 Hantek DSO-2100 UF
8800 2017 UF ICE Scanner
12403 0042 PX-712UF DVD RW
18575 300c TEW-429UF A1 802.11bg Wireless Adapter [ZyDAS ZD1211B]
H A Dpci_vendors18644 1023 CP-102UF
/freebsd/sys/dev/usb/
H A Dusbdevs2005 product EPSON GT9300UF 0x011b GT-9300UF scanner