Searched refs:UP (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp185 TargetTransformInfo::UnrollingPreferences UP; local
188 UP.Threshold = OptLevel > 2 ? 300 : 150;
189 UP.MaxPercentThresholdBoost = 400;
190 UP.OptSizeThreshold = 0;
191 UP.PartialThreshold = 150;
192 UP.PartialOptSizeThreshold = 0;
193 UP.Count = 0;
194 UP.PeelCount = 0;
195 UP.DefaultUnrollRuntimeCount = 8;
196 UP
723 getUnrolledLoopSize( unsigned LoopSize, TargetTransformInfo::UnrollingPreferences &UP) argument
738 computeUnrollCount( Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues, OptimizationRemarkEmitter *ORE, unsigned &TripCount, unsigned MaxTripCount, bool MaxOrZero, unsigned &TripMultiple, unsigned LoopSize, TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) argument
1045 TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences( local
[all...]
H A DLoopUnrollAndJamPass.cpp147 TargetTransformInfo::UnrollingPreferences &UP) {
148 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!");
149 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns;
152 // Calculates unroll and jam count and writes it to UP.Count. Returns true if
160 unsigned InnerLoopSize, TargetTransformInfo::UnrollingPreferences &UP) {
163 // unrolling we leave to the unroller. This uses UP.Threshold /
164 // UP.PartialThreshold / UP
146 getUnrollAndJammedLoopSize(unsigned LoopSize, TargetTransformInfo::UnrollingPreferences &UP) argument
154 computeUnrollAndJamCount( Loop *L, Loop *SubLoop, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues, OptimizationRemarkEmitter *ORE, unsigned OuterTripCount, unsigned OuterTripMultiple, unsigned OuterLoopSize, unsigned InnerTripCount, unsigned InnerLoopSize, TargetTransformInfo::UnrollingPreferences &UP) argument
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dtcap.h45 extern char *UP, *BC;
H A Dterminal.c104 char PC, *BC, *UP;
501 UP = _rl_term_up;
512 UP = _rl_term_up;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp145 TTI::UnrollingPreferences &UP) {
146 BaseT::getUnrollingPreferences(L, SE, UP);
152 UP.Partial = UP.Runtime = true;
153 UP.PartialThreshold = UP.Threshold / 4;
144 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
H A DNVPTXTargetTransformInfo.h98 TTI::UnrollingPreferences &UP);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv4remote.pl57 # "UP" is always printed first (see print_flags() in ifconfig.c):
58 $up = 1 if /^[a-z].*<UP,/;
H A Dget.ipv6remote.pl60 # "UP" is always printed first (see print_flags() in ifconfig.c):
61 $up = 1 if /^[a-z].*<UP,/;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.h49 typedef std::unique_ptr<Matcher> UP; typedef in class:lldb_private::formatters::NSDictionary_Additionals::AdditionalFormatterMatching::Matcher
69 typedef Matcher::UP MatcherUP;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollPeel.cpp282 TargetTransformInfo::UnrollingPreferences &UP,
285 // Save the UP.PeelCount value set by the target in
287 unsigned TargetPeelCount = UP.PeelCount;
288 UP.PeelCount = 0;
301 UP.PeelCount = UnrollForcePeelCount;
302 UP.PeelProfiledIterations = true;
307 if (!UP.AllowPeeling)
323 if (2 * LoopSize <= UP.Threshold && UnrollPeelMaxCount > 0) {
328 // Start the max computation with the UP.PeelCount value set by the target
343 MaxPeelCount = std::min(MaxPeelCount, UP
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/route/
H A Dt_change.sh128 flags: <UP,GATEWAY,DONE,STATIC>
147 flags: <UP,GATEWAY,DONE,STATIC>
195 flags: <UP,GATEWAY,DONE,STATIC>
214 flags: <UP,GATEWAY,DONE,STATIC>
262 flags: <UP,GATEWAY,DONE,STATIC>
281 flags: <UP,GATEWAY,DONE,STATIC>
H A Dt_route.sh235 flags: <UP,HOST,DONE,LLINFO,LOCAL>
251 flags: <UP,DONE,CONNECTED>
267 flags: <UP,GATEWAY,DONE,STATIC>
285 flags: <UP,DONE,CONNECTED>
310 flags: <UP,HOST,DONE,LLINFO,LOCAL>
325 flags: <UP,DONE,CONNECTED>
341 flags: <UP,GATEWAY,DONE,STATIC>
359 flags: <UP,DONE,CONNECTED>
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp92 TTI::UnrollingPreferences &UP) {
94 UP.Threshold = AMDGPU::getIntegerAttribute(F, "amdgpu-unroll-threshold", 300);
95 UP.MaxCount = std::numeric_limits<unsigned>::max();
96 UP.Partial = true;
120 if (UP.Threshold < MaxBoost && Br->isConditional()) {
127 UP.Threshold += UnrollThresholdIf;
128 LLVM_DEBUG(dbgs() << "Set unroll threshold " << UP.Threshold
131 if (UP.Threshold >= MaxBoost)
151 if (UP.Threshold >= Threshold)
206 UP
91 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
753 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
969 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
[all...]
H A DAMDGPUTargetTransformInfo.h63 TTI::UnrollingPreferences &UP);
141 TTI::UnrollingPreferences &UP);
254 TTI::UnrollingPreferences &UP);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DUnrollLoop.h95 TargetTransformInfo::UnrollingPreferences &UP,
119 TargetTransformInfo::UnrollingPreferences &UP,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp79 TTI::UnrollingPreferences &UP) {
80 UP.Runtime = UP.Partial = true;
86 UP.PeelCount = 2;
78 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
H A DHexagonTargetTransformInfo.h65 TTI::UnrollingPreferences &UP);
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_termcap.c55 NCURSES_EXPORT_VAR(char *) UP = 0;
166 UP = 0;
180 UP = cursor_up;
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Deqn.y68 %token UP
110 %right ROMAN BOLD ITALIC FAT FONT SIZE FWD BACK DOWN UP TYPE VCENTER SPECIAL
247 | UP number simple
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp241 TTI::UnrollingPreferences &UP) {
273 UP.FullUnrollMaxCount = Max;
274 UP.MaxCount = 1;
278 UP.MaxCount = Max;
279 if (UP.MaxCount <= 1)
283 UP.Partial = UP.Runtime = true;
285 UP.PartialThreshold = 75;
286 UP.DefaultUnrollRuntimeCount = 4;
289 UP
240 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_ucast_updn.c63 UP = 0, enumerator in enum:updn_switch_dir
88 directly, but in case they are we assign to root node an UP direction to allow UPDN to discover
92 return UP;
97 return UP;
99 /* Equal rank, decide by id number, bigger == UP direction */
101 return UP;
131 u->dir = UP;
160 /* Decide which direction to mark it (UP/DOWN) */
165 from DOWN to UP */
166 if ((current_dir == DOWN) && (next_dir == UP)) {
[all...]
H A Dosm_ucast_dnup.c64 UP = 0, enumerator in enum:dnup_switch_dir
87 directly, but in case they are we assign to root node an UP direction to allow DNUP to discover
96 return UP;
155 /* Decide which direction to mark it (UP/DOWN) */
166 from UP to DOWN */
167 if ((current_dir == UP) && (next_dir == DOWN)) {
/freebsd-11-stable/sys/net/
H A Dif_atm.h311 #define ATMEV_SEND_VCC_CHANGED(ATMIF, VPI, VCI, UP) \
316 _arg.up = (UP); \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp1202 TTI::UnrollingPreferences &UP) {
1205 return BasicTTIImplBase::getUnrollingPreferences(L, SE, UP);
1208 UP.OptSizeThreshold = 0;
1209 UP.PartialOptSizeThreshold = 0;
1260 UP.Partial = true;
1261 UP.Runtime = true;
1262 UP.UpperBound = true;
1263 UP.UnrollRemainder = true;
1264 UP.DefaultUnrollRuntimeCount = 4;
1265 UP
1201 getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAlignment.h119 using UP = llvm::Optional<Align>;
132 using UP::UP;

Completed in 381 milliseconds

12