Home
last modified time | relevance | path

Searched refs:passes (Results 1 – 25 of 442) sorted by relevance

12345678910>>...18

/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
Dattach-into-signal.exp53 set passes 1
54 while { $passes < 3 && $attempt <= $attempts } {
55 set test "attach (pass $passes), pending signal catch"
61 set passes [expr $passes + 1]
91 set passes [expr $passes + 1]
101 if {$passes < 3} {
/netbsd/src/external/gpl3/gcc/dist/gcc/doc/
Doptinfo.texi14 * Optimization groups:: Groups made up of optimization passes.
25 A dump_manager class is defined in @file{dumpfile.h}. Various passes
27 @file{passes.cc}. During the registration, an optimization pass can
30 (presumably from multiple passes) can be output via command-line
36 passes could also call @code{dump_begin} which returns a stream in
39 away once all the passes are converted to use the new dump
48 The optimization passes are grouped into several categories. Currently
54 IPA optimization passes. Enabled by @option{-ipa}
57 Loop optimization passes. Enabled by @option{-loop}.
60 Inlining passes. Enabled by @option{-inline}.
[all …]
Dpasses.texi9 @cindex passes and files of the compiler
10 @cindex files and passes of the compiler
11 @cindex compiler passes and files
15 code generation passes of the compiler. In the process, it describes
22 * Pass manager:: Sequencing the optimization passes.
23 * IPA passes:: Inter-procedural optimizations.
24 * Tree SSA passes:: Optimizations on a high-level representation.
25 * RTL passes:: Optimizations on a low-level representation.
26 * Optimization info:: Dumping optimization information from passes.
131 passes through here at least once, and it is from here that we
[all …]
Dlto.texi25 * IPA:: Using summary information in IPA passes.
66 pass manager executes all the passes in @code{all_lto_gen_passes}.
67 Currently, this phase is composed of two IPA passes:
252 @item Summaries and optimization summaries used by IPA passes
256 These sections are used by IPA passes that need to emit summary
267 @section Using summary information in IPA passes
275 individual passes, which operate on the callgraph and the
335 The implementation of the inter-procedural passes are shared
352 between normal inter-procedural passes (@pxref{Regular IPA passes}),
353 small inter-procedural passes (@pxref{Small IPA passes})
[all …]
Dplugins.texi28 * Plugins gate:: Controlling which passes are being run.
29 * Plugins tracking:: Keeping track of available passes.
267 There needs to be a way to add/reorder/remove passes dynamically. This
271 Basic support for inserting new passes or replacing existing passes is
439 The event PLUGIN_PASS_EXECUTION passes the pointer to the executed pass
452 @section Controlling which passes are being run
463 @section Keeping track of available passes
466 pass lists to determine what passes are available. However, other
467 plugins might add new passes. Also, future changes to GCC might cause
468 generic passes to be added after plugin loading.
Dcollect2.texi29 where the passes of the compiler are installed. When @code{collect2}
59 @command{gcc} searches for passes of the compiler. This includes
/netbsd/src/external/bsd/kyua-cli/dist/bootstrap/
Dtestsuite.at103 AT_SETUP([run test case that passes])
107 AT_CHECK([RUN_ATF_HELPERS([passes])], [0], [stdout], [])
109 AT_CHECK([grep "atf_helpers:passes.*passed" stdout], [0], [ignore], [])
122 AT_CHECK([grep "atf_helpers:passes" stdout], [1], [], [])
134 AT_CHECK([grep "atf_helpers:passes" stdout], [1], [], [])
145 AT_CHECK([RUN_ATF_HELPERS([passes skips])], [0], [stdout], [])
147 AT_CHECK([grep "atf_helpers:passes.*passed" stdout], [0], [ignore], [])
158 AT_CHECK([RUN_ATF_HELPERS([fails passes])], [1], [stdout], [])
161 AT_CHECK([grep "atf_helpers:passes.*passed" stdout], [0], [ignore], [])
171 AT_CHECK([RUN_ATF_HELPERS([fails passes skips])], [1], [stdout], [])
[all …]
Datf_helpers.cpp43 ATF_TEST_CASE_WITHOUT_HEAD(passes);
44 ATF_TEST_CASE_BODY(passes) in ATF_TEST_CASE_BODY() argument
69 ATF_ADD_TEST_CASE(tcs, passes); in ATF_INIT_TEST_CASES()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
Dgdb-sigterm.exp86 set passes 50
88 for {set pass 0} {$pass < $passes} {incr pass} {
97 gdb_assert {$pass == $passes} "$passes SIGTERM passes"
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dpasses.cc1856 pass_manager *passes = g->get_passes (); in check_profile_consistency() local
1861 passes->passes_by_id_size); in check_profile_consistency()
1862 gcc_assert (index < passes->passes_by_id_size && index >= 0); in check_profile_consistency()
1875 pass_manager *passes = g->get_passes (); in account_profile() local
1880 passes->passes_by_id_size); in account_profile()
1881 gcc_assert (index < passes->passes_by_id_size && index >= 0); in account_profile()
2370 gcc::pass_manager *passes = g->get_passes (); in execute_all_ipa_transforms() local
2383 if (passes->get_pass_for_id (j) in execute_all_ipa_transforms()
2384 && passes->get_pass_for_id (j)->type == IPA_PASS in execute_all_ipa_transforms()
2385 && ((ipa_opt_pass_d *)passes->get_pass_for_id (j)) in execute_all_ipa_transforms()
[all …]
Dpasses.def29 /* All passes needed to lower the function into shape optimizers can
30 operate on. These passes are always run first on the function, but
32 by these passes. */
51 /* Interprocedural optimization passes. */
175 /* Simple IPA passes executed after the regular passes. In WHOPR mode the
176 passes are executed after partitioning and thus see just parts of the
183 /* These passes are run after IPA passes on every function that is being
302 Please do not add any other passes in between. */
377 passes and all optimization work is done early. */
Dstatistics.cc237 gcc::pass_manager *passes = g->get_passes (); in statistics_fini() local
246 && passes->get_pass_for_id (i) != NULL) in statistics_fini()
249 (passes->get_pass_for_id (i)); in statistics_fini()
Doptinfo-emit-json.cc75 json::array *passes = new json::array (); in optrecord_json_writer() local
76 m_root_tuple->append (passes); in optrecord_json_writer()
81 add_pass_list (passes, g->get_passes ()->LIST); in optrecord_json_writer()
DChangeLog.dataflow528 * passes.c (init_optimization_passes):
617 * passes.c (init_optimization_passes): New pass.
860 * passes.c (init_iptimization_passes): Removed dse after combine.
937 * passes.c (init_optimization_passes): Initialize dataflow before CSE.
972 * passes.c (init_optimizations_passes): Remove pass_df_finish_no_opt.
1003 * passes.c (init_optimization_passes): Added passes to turn on df
1048 * passes.c (init_optimization_passes): Moved pass_subregs_of_mode_init
1215 df_recompute_luids so that it only happens on subsequent passes of
1315 * passes.c (init_optimization_passes): Move df_finish after
1324 * passes.c (init_optimization_passes): Ditto.
[all …]
DChangeLog.tuples951 * passes.c (init_optimization_passes): Re-enable
1079 * passes.c (init_optimization_passes): Reenable pass_refactor_eh.
1559 * passes.c: Re-enable pass_tree_ifcombine.
1593 * passes.c (init_optimization_passes): Re-enable mudflap passes.
1614 * passes.c (init_optimization_passes): Re-enable pass_uncprop.
1651 * passes.c (init_optimization_passes): Enable
1704 * passes.c (init_optimization_passes): Enable pass_forwprop.
2253 * passes.c (gimple_verify_flow_info): Enable remaining
2254 pass_rename_ssa_copies passes.
2300 * passes.c (init_optimization_passes): Enable first pass_merge_phi,
[all …]
/netbsd/src/usr.sbin/timed/timed/
Dcorrect.c119 static int passes = 0; in adjclock() local
162 if (passes > 1 in adjclock()
165 passes = 0; in adjclock()
/netbsd/src/external/gpl2/lvm2/dist/lib/commands/
Dtoolcontext.c318 int *passes) in _check_host_filters() argument
323 *passes = 1; in _check_host_filters()
329 *passes = 0; in _check_host_filters()
339 *passes = 1; in _check_host_filters()
357 int passes; in _init_tags() local
382 passes = 0; in _init_tags()
383 if (!_check_host_filters(cmd, cn->child, &passes)) in _init_tags()
385 if (!passes) in _init_tags()
/netbsd/src/external/gpl3/gcc/dist/contrib/regression/
Dbtest-gcc.sh34 --add-passes-despite-regression)
84 PASSES=$STATE/passes
/netbsd/src/external/gpl3/gcc/usr.bin/backend/
DMakefile208 pass-instances.def: passes.def gen-pass-instances.awk
211 ${GNUHOSTDIST}/gcc/passes.def > pass-instances.def
469 pass_manager.h passes.cc: pass-instances.def
470 context.d coverage.d lto-cgraph.d passes.d statistics.d toplev.d cgraphunit.d: pass_manager.h
471 context.o coverage.o lto-cgraph.o passes.o statistics.o toplev.o cgraphunit.o: pass_manager.h
/netbsd/src/external/bsd/nvi/docs/internals/
Dstructures62 loop (see nvi/ex/ex.c) builds this up and then passes it to the
67 loop (see nvi/vi/vi.c) builds this up and then passes it to the
/netbsd/src/sys/arch/x68k/stand/boot/
Dversion17 1.8: Fix blocksize parameter passes to SCSI IOCS.
/netbsd/src/external/gpl3/gcc/dist/gcc/config/alpha/
Dt-alpha19 PASSES_EXTRA += $(srcdir)/config/alpha/alpha-passes.def
Dalpha-passes.def1 /* Description of target passes for DEC Alpha
/netbsd/src/external/gpl3/gcc/dist/gcc/config/s390/
Ds390-passes.def1 /* Description of target passes for S/390.
/netbsd/src/external/gpl3/gcc/dist/gcc/config/cris/
Dcris-passes.def1 /* Description of target passes for Visium.

12345678910>>...18