Home
last modified time | relevance | path

Searched full:preserved (Results 1 – 25 of 1135) sorted by relevance

12345678910>>...46

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAnalysis.h32 /// preserved.
36 /// depends only on the CFG can then check if that AnalysisSetKey is preserved;
37 /// if it is, the analysis knows that it itself is preserved.
44 /// This lets a transformation say e.g. "I preserved all function analyses".
64 /// This can be used with \c PreservedAnalyses to mark the CFG as preserved and
65 /// to query whether it has been preserved.
80 /// A set of analyses that are preserved following a run of a transformation
85 /// fairly simple: if they don't change anything all analyses are preserved,
87 /// are preserved.
90 /// as preserved. A transformation that (say) does not alter the CFG can
[all …]
/freebsd/crypto/openssl/util/
H A Dlang-compress.pl23 # Regexp for things that should be preserved
24 my $preserved =
43 (?| # All things preserved end up in $1
52 $preserved
66 (?| # All things preserved end up in $1
73 $preserved
81 (?| # All things preserved end up in $1
88 $preserved
124 # Regexp for things that should be preserved
125 my $preserved =
[all …]
/freebsd/contrib/openpam/doc/man/
H A Dopenpam_readword.333 including the newline character, are preserved as-is.
36 which is preserved as-is, unless that character is a newline, in
42 preserved as-is.
44 Within a double-quoted string, a single quote is preserved as-is,
45 and a backslash is preserved as-is unless used to escape a double
51 If a hash character occurs within a word, however, it is preserved
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DPassManager.cpp32 // If literally everything is preserved, we're done. in invalidate()
36 // If this proxy isn't marked as preserved, then even if the result remains in invalidate()
42 // forcibly cleared. When preserved, this proxy will only invalidate results in invalidate()
45 if (!PAC.preserved() && !PAC.preservedSet<AllAnalysesOn<Module>>()) { in invalidate()
50 // Directly check if the relevant set is preserved. in invalidate()
59 // Check to see whether the preserved set needs to be pruned based on in invalidate()
133 // Then intersect the preserved set so that invalidation of module in run()
138 // The FunctionAnalysisManagerModuleProxy is preserved because (we assume) in run()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePassManager.cpp46 // If literally everything is preserved, we're done. in invalidate()
50 // If this proxy isn't marked as preserved, then even if the result remains in invalidate()
56 // forcibly cleared. When preserved, this proxy will only invalidate results in invalidate()
59 if (!PAC.preserved() && !PAC.preservedSet<AllAnalysesOn<Module>>()) { in invalidate()
79 // If literally everything is preserved, we're done. in invalidate()
83 // If this proxy isn't marked as preserved, then even if the result remains in invalidate()
89 // forcibly cleared. When preserved, this proxy will only invalidate results in invalidate()
92 if (!PAC.preserved() && !PAC.preservedSet<AllAnalysesOn<Function>>()) { in invalidate()
/freebsd/contrib/llvm-project/llvm/include/llvm/
H A DPassAnalysisSupport.h52 /// Sets of analyses required and preserved by a pass
58 SmallVector<AnalysisID, 2> Preserved; variable
87 /// Add the specified ID to the set of analyses preserved by this pass.
89 pushUnique(Preserved, ID); in addPreservedID()
93 pushUnique(Preserved, &ID); in addPreservedID()
96 /// Add the specified Pass class to the set of analyses preserved by this pass.
99 pushUnique(Preserved, &PassClass::ID); in addPreserved()
124 /// preserved by this pass. If no such Pass exists, do nothing. This can be
125 /// useful when a pass is trivially preserved, but may not be linked in. Be
141 /// that only depend on the CFG are preserved by this pass.
[all …]
/freebsd/bin/cp/
H A Dcp.1178 If the user ID and group ID cannot be preserved, no error message
182 be preserved, the set-user-ID bit is not preserved
185 be preserved, the set-group-ID bit is not preserved
188 and either the user ID or group ID cannot be preserved, neither
189 the set-user-ID nor set-group-ID bits are preserved in the copy's
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPassManager.cpp36 // the remaining analysis results in the AnalysisManager are preserved. We in run()
40 // be preserved, but unrolling should invalidate the parent loop's analyses. in run()
132 // Finally, we intersect the final preserved analyses to compute the in runWithLoopNestPasses()
133 // aggregate preserved set for this pass manager. in runWithLoopNestPasses()
136 // Check if the current pass preserved the loop-nest object or not. in runWithLoopNestPasses()
137 IsLoopNestPtrValid &= PassPA->getChecker<LoopNestAnalysis>().preserved(); in runWithLoopNestPasses()
179 // Finally, we intersect the final preserved analyses to compute the in runWithoutLoopNestPasses()
180 // aggregate preserved set for this pass manager. in runWithoutLoopNestPasses()
314 if (LAR.MSSA && !PassPA.getChecker<MemorySSAAnalysis>().preserved()) in run()
338 // Then intersect the preserved se in run()
[all...]
/freebsd/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c159 * including the newline character, are preserved as-is.
162 * which is preserved as-is, unless that character is a newline, in
168 * preserved as-is.
170 * - Within a double-quoted string, a single quote is preserved as-is,
171 * and a backslash is preserved as-is unless used to escape a double
176 * If a hash character occurs within a word, however, it is preserved
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCGSCCPassManager.cpp98 // Intersect the final preserved analyses to compute the aggregate in run()
99 // preserved set for this pass manager. in run()
120 // Before we mark all of *this* SCC's analyses as preserved below, intersect in run()
121 // this with the cross-SCC preserved analysis set. This is used to allow in run()
128 // preserved. We mark this with a set so that we don't need to inspect each in run()
246 // cross-SCC preserved set. This preserved set is intersected by any in run()
248 // to marking its SCC as preserved. That lets us track everything that in run()
286 // Intersect with the cross-SCC preserved set to capture any in run()
289 // Intersect the preserved set so that invalidation of module in run()
426 // of preserved analyses so we're ready to iterate. in run()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64SMEAttributes.h34 Preserved = 4, // aarch64_preserves_zt0 enumerator
92 return decodeZAState(Bitmask) == StateValue::Preserved; in isPreservesZA()
97 State == StateValue::InOut || State == StateValue::Preserved; in sharesZA()
122 return decodeZT0State(Bitmask) == StateValue::Preserved; in isPreservesZT0()
127 State == StateValue::InOut || State == StateValue::Preserved; in sharesZT0()
/freebsd/contrib/bmake/unit-tests/
H A Dvar-op-expand.mk23 # expressions based on undefined variables are preserved though.
87 # the variable modifier is not preserved. To preserve it, ParseModifierPart
103 # preserved, no matter how indirectly they are referenced.
117 # In variable assignments using the ':=' operator, '$$' are preserved, no
127 # In variable assignments using the ':=' operator, '$$' are preserved in the
193 # The following test case demonstrates that the variable 'LATER' is preserved
240 # from the nested expression could be preserved, like this:
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h192 /// 'copy' clause alias 'pcopy'. Preserved for diagnostic purposes.
194 /// 'copy' clause alias 'present_or_copy'. Preserved for diagnostic purposes.
231 /// 'copyout' clause alias 'pcopyout'. Preserved for diagnostic purposes.
233 /// 'copyout' clause alias 'present_or_copyout'. Preserved for diagnostic
239 /// 'copyin' clause alias 'pcopyin'. Preserved for diagnostic purposes.
241 /// 'copyin' clause alias 'present_or_copyin'. Preserved for diagnostic
247 /// 'create' clause alias 'pcreate'. Preserved for diagnostic purposes.
249 /// 'create' clause alias 'present_or_create'. Preserved for diagnostic
/freebsd/crypto/heimdal/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
26 # with or without modifications, as long as this notice is preserved.
64 # with or without modifications, as long as this notice is preserved.
118 # with or without modifications, as long as this notice is preserved.
152 # with or without modifications, as long as this notice is preserved.
336 # with or without modifications, as long as this notice is preserved.
416 # with or without modifications, as long as this notice is preserved.
552 # with or without modifications, as long as this notice is preserved.
573 # with or without modifications, as long as this notice is preserved.
595 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_003_pos.ksh42 # 4. Verify that the initial pool creation is preserved.
93 # Verify that the creation of the pool was preserved in the history.
95 log_fail "zpool creation history was not preserved."
/freebsd/contrib/openpam/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
65 # with or without modifications, as long as this notice is preserved.
117 # with or without modifications, as long as this notice is preserved.
154 # with or without modifications, as long as this notice is preserved.
185 # with or without modifications, as long as this notice is preserved.
376 # with or without modifications, as long as this notice is preserved.
444 # with or without modifications, as long as this notice is preserved.
659 # with or without modifications, as long as this notice is preserved.
680 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_raw_spill_block.ksh24 # Verify spill blocks are correctly preserved in raw sends.
34 # preserved when receiving the incremental stream.
39 log_assert "Verify spill blocks are correctly preserved in raw sends"
161 log_pass "Verify spill blocks are correctly preserved in raw sends"
H A Dsend_spill_block.ksh23 # Verify spill blocks are correctly preserved.
32 # preserved when receiving the incremental stream.
37 log_assert "Verify spill blocks are correctly preserved"
155 log_pass "Verify spill blocks are correctly preserved"
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/
H A Dreservation_013_pos.ksh38 # Reservation properties on data objects should be preserved when the
56 log_assert "Reservation properties preserved across exports and imports"
110 log_pass "Reservation properties preserved across exports and imports"
/freebsd/contrib/openbsm/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
65 # with or without modifications, as long as this notice is preserved.
117 # with or without modifications, as long as this notice is preserved.
148 # with or without modifications, as long as this notice is preserved.
339 # with or without modifications, as long as this notice is preserved.
415 # with or without modifications, as long as this notice is preserved.
612 # with or without modifications, as long as this notice is preserved.
633 # with or without modifications, as long as this notice is preserved.
655 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/contrib/ntp/sntp/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
63 # with or without modifications, as long as this notice is preserved.
125 # with or without modifications, as long as this notice is preserved.
177 # with or without modifications, as long as this notice is preserved.
208 # with or without modifications, as long as this notice is preserved.
399 # with or without modifications, as long as this notice is preserved.
467 # with or without modifications, as long as this notice is preserved.
682 # with or without modifications, as long as this notice is preserved.
703 # with or without modifications, as long as this notice is preserved
[all...]
/freebsd/contrib/ntp/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
63 # with or without modifications, as long as this notice is preserved.
125 # with or without modifications, as long as this notice is preserved.
177 # with or without modifications, as long as this notice is preserved.
208 # with or without modifications, as long as this notice is preserved.
399 # with or without modifications, as long as this notice is preserved.
467 # with or without modifications, as long as this notice is preserved.
682 # with or without modifications, as long as this notice is preserved.
703 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/contrib/ntp/sntp/libevent/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
65 # with or without modifications, as long as this notice is preserved.
117 # with or without modifications, as long as this notice is preserved.
148 # with or without modifications, as long as this notice is preserved.
339 # with or without modifications, as long as this notice is preserved.
407 # with or without modifications, as long as this notice is preserved.
622 # with or without modifications, as long as this notice is preserved.
643 # with or without modifications, as long as this notice is preserved.
664 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/contrib/file/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
65 # with or without modifications, as long as this notice is preserved.
117 # with or without modifications, as long as this notice is preserved.
148 # with or without modifications, as long as this notice is preserved.
339 # with or without modifications, as long as this notice is preserved.
407 # with or without modifications, as long as this notice is preserved.
622 # with or without modifications, as long as this notice is preserved.
643 # with or without modifications, as long as this notice is preserved.
664 # with or without modifications, as long as this notice is preserved.
[all …]
/freebsd/contrib/libevent/
H A Daclocal.m47 # with or without modifications, as long as this notice is preserved.
27 # with or without modifications, as long as this notice is preserved.
65 # with or without modifications, as long as this notice is preserved.
117 # with or without modifications, as long as this notice is preserved.
148 # with or without modifications, as long as this notice is preserved.
339 # with or without modifications, as long as this notice is preserved.
407 # with or without modifications, as long as this notice is preserved.
604 # with or without modifications, as long as this notice is preserved.
625 # with or without modifications, as long as this notice is preserved.
646 # with or without modifications, as long as this notice is preserved.
[all …]

12345678910>>...46