HomeSort by: relevance | last modified time | path
    Searched refs:swtch (Results 1 - 23 of 23) sorted by relevancy

  /src/usr.sbin/wsconscfg/
wsconscfg.c 63 int c, delete, kbd, idx, wsfd, swtch, get, mux; local
73 swtch = 0;
105 swtch++;
120 if ((kbd || swtch) ? (argc > 1) : (argc != 1))
130 if (swtch) {
  /src/external/gpl3/gcc/dist/gcc/
tree-switch-conversion.h 564 switch_decision_tree (gswitch *swtch): m_switch (swtch), m_phi_mapping (),
645 static inline void reset_out_edges_aux (gswitch *swtch);
737 one is given in SWTCH) and runs the individual phases of switch
741 void expand (gswitch *swtch);
743 /* Collection information about SWTCH statement. */
744 void collect (gswitch *swtch);
790 the variable in question with a value from the static array. SWTCH is
906 switch_decision_tree::reset_out_edges_aux (gswitch *swtch)
908 basic_block bb = gimple_bb (swtch);
    [all...]
loop-unroll.cc 884 basic_block preheader, *body, swtch, ezc_swtch = NULL; local
984 swtch = split_edge (loop_preheader_edge (loop));
989 iter_count = new_count = swtch->count / (max_unroll + 1);
990 swtch->count = new_count;
1019 swtch = split_edge_and_insert (single_pred_edge (swtch), branch_code);
1020 set_immediate_dominator (CDI_DOMINATORS, preheader, swtch);
1021 single_succ_edge (swtch)->probability = p.invert ();
1023 swtch->count = new_count;
1024 e = make_edge (swtch, preheader
    [all...]
tree-switch-conversion.cc 74 /* Collection information about SWTCH statement. */
77 switch_conversion::collect (gswitch *swtch)
79 unsigned int branch_num = gimple_switch_num_labels (swtch);
85 m_switch = swtch;
90 m_index_expr = gimple_switch_index (swtch);
91 m_switch_bb = gimple_bb (swtch);
92 e_default = gimple_switch_default_edge (cfun, swtch);
97 min_case = gimple_switch_label (swtch, 1);
98 max_case = gimple_switch_label (swtch, branch_num - 1);
110 tree elt = gimple_switch_label (swtch, i)
    [all...]
dumpfile.h 300 const char *swtch; member in struct:dump_file_info
325 /* Fields "suffix", "swtch", "glob" can be const strings,
675 SUFFIX, SWTCH, and GLOB. */
677 dump_register (const char *suffix, const char *swtch, const char *glob,
691 get_dump_file_info_by_switch (const char *swtch) const;
dumpfile.cc 90 #define DUMP_FILE_INFO(suffix, swtch, dkind, num) \
91 {suffix, swtch, NULL, NULL, NULL, NULL, NULL, dkind, TDF_NONE, TDF_NONE, \
197 /* suffix, swtch, glob are statically allocated for the entries
203 XDELETEVEC (const_cast <char *> (dfi->swtch));
215 dump_register (const char *suffix, const char *swtch, const char *glob,
243 m_extra_dump_files[count].swtch = swtch;
287 /* Locate the dump_file_info with swtch equal to SWTCH,
292 get_dump_file_info_by_switch (const char *swtch) cons
    [all...]
tree-ssa-loop-unswitch.cc 741 else if (gswitch *swtch = dyn_cast<gswitch *> (stmt))
743 unsigned nlabels = gimple_switch_num_labels (swtch);
745 tree idx = gimple_switch_index (swtch);
759 tree lab = gimple_switch_label (swtch, i);
832 else if (gswitch *swtch = dyn_cast<gswitch *> (stmt))
849 gimple_switch_set_index (swtch, folded);
850 update_stmt (swtch);
907 else if (gswitch *swtch = safe_dyn_cast<gswitch *> (last))
910 evaluate_control_stmt_using_entry_checks (swtch, *predicate_path,
tree-cfgcleanup.cc 80 /* Convert a SWTCH with single non-default case to gcond and replace it
84 convert_single_case_switch (gswitch *swtch, gimple_stmt_iterator &gsi)
86 if (gimple_switch_num_labels (swtch) != 2)
89 tree index = gimple_switch_index (swtch);
90 tree label = gimple_switch_label (swtch, 1);
94 basic_block default_bb = gimple_switch_default_bb (cfun, swtch);
97 basic_block bb = gimple_bb (swtch);
gimple-lower-bitint.cc 6125 if (gswitch *swtch = safe_dyn_cast <gswitch *> (*gsi_last_bb (bb)))
6127 tree idx = gimple_switch_index (swtch);
6133 group_case_labels_stmt (swtch);
6134 if (gimple_switch_num_labels (swtch) == 1)
6137 gimple_stmt_iterator gsi = gsi_for_stmt (swtch);
6141 switch_statements.safe_push (swtch);
6153 gswitch *swtch = as_a<gswitch *> (stmt);
6154 tree_switch_conversion::switch_decision_tree dt (swtch);
cfgexpand.cc 3926 gswitch *swtch = as_a <gswitch *> (stmt); local
3927 if (gimple_switch_num_labels (swtch) == 1)
3928 expand_goto (CASE_LABEL (gimple_switch_default_label (swtch)));
3930 expand_case (swtch);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-switch-conversion.h 556 switch_decision_tree (gswitch *swtch): m_switch (swtch), m_phi_mapping (),
637 static inline void reset_out_edges_aux (gswitch *swtch);
729 one is given in SWTCH) and runs the individual phases of switch
733 void expand (gswitch *swtch);
735 /* Collection information about SWTCH statement. */
736 void collect (gswitch *swtch);
782 the variable in question with a value from the static array. SWTCH is
898 switch_decision_tree::reset_out_edges_aux (gswitch *swtch)
900 basic_block bb = gimple_bb (swtch);
    [all...]
loop-unroll.cc 876 basic_block preheader, *body, swtch, ezc_swtch = NULL; local
976 swtch = split_edge (loop_preheader_edge (loop));
981 iter_count = new_count = swtch->count.apply_scale (1, max_unroll + 1);
982 swtch->count = new_count;
1011 swtch = split_edge_and_insert (single_pred_edge (swtch), branch_code);
1012 set_immediate_dominator (CDI_DOMINATORS, preheader, swtch);
1013 single_succ_edge (swtch)->probability = p.invert ();
1015 swtch->count = new_count;
1016 e = make_edge (swtch, preheader
    [all...]
tree-switch-conversion.cc 73 /* Collection information about SWTCH statement. */
76 switch_conversion::collect (gswitch *swtch)
78 unsigned int branch_num = gimple_switch_num_labels (swtch);
84 m_switch = swtch;
89 m_index_expr = gimple_switch_index (swtch);
90 m_switch_bb = gimple_bb (swtch);
91 e_default = gimple_switch_default_edge (cfun, swtch);
96 min_case = gimple_switch_label (swtch, 1);
97 max_case = gimple_switch_label (swtch, branch_num - 1);
109 tree elt = gimple_switch_label (swtch, i)
    [all...]
dumpfile.h 300 const char *swtch; member in struct:dump_file_info
325 /* Fields "suffix", "swtch", "glob" can be const strings,
678 SUFFIX, SWTCH, and GLOB. */
680 dump_register (const char *suffix, const char *swtch, const char *glob,
694 get_dump_file_info_by_switch (const char *swtch) const;
dumpfile.cc 90 #define DUMP_FILE_INFO(suffix, swtch, dkind, num) \
91 {suffix, swtch, NULL, NULL, NULL, NULL, NULL, dkind, TDF_NONE, TDF_NONE, \
197 /* suffix, swtch, glob are statically allocated for the entries
203 XDELETEVEC (const_cast <char *> (dfi->swtch));
215 dump_register (const char *suffix, const char *swtch, const char *glob,
243 m_extra_dump_files[count].swtch = swtch;
287 /* Locate the dump_file_info with swtch equal to SWTCH,
292 get_dump_file_info_by_switch (const char *swtch) cons
    [all...]
tree-cfgcleanup.cc 80 /* Convert a SWTCH with single non-default case to gcond and replace it
84 convert_single_case_switch (gswitch *swtch, gimple_stmt_iterator &gsi)
86 if (gimple_switch_num_labels (swtch) != 2)
89 tree index = gimple_switch_index (swtch);
90 tree label = gimple_switch_label (swtch, 1);
94 basic_block default_bb = gimple_switch_default_bb (cfun, swtch);
97 basic_block bb = gimple_bb (swtch);
cfgexpand.cc 3889 gswitch *swtch = as_a <gswitch *> (stmt); local
3890 if (gimple_switch_num_labels (swtch) == 1)
3891 expand_goto (CASE_LABEL (gimple_switch_default_label (swtch)));
3893 expand_case (swtch);
  /src/sys/uvm/
uvm_meter.c 130 u.swtch = cpu_count_get(CPU_COUNT_NSWTCH);
453 uvmexp.swtch = (int)cpu_count_get(CPU_COUNT_NSWTCH);
uvm_extern.h 357 int swtch; /* context switch count */ member in struct:uvmexp
453 int64_t swtch; member in struct:uvmexp_sysctl
  /src/libexec/rpc.rstatd/
rstat_proc.c 246 stats_all.s3.v_swtch = uvmexp.swtch;
  /src/sys/arch/atari/dev/
fd.c 399 u_short swtch; local
410 swtch = rd_cfg_switch();
411 def_type = (swtch & CFG_SWITCH_NOHD) ? FLP_TYPE_720 : FLP_TYPE_144;
  /src/usr.bin/systat/
vmstat.c 440 PUTRATE(us, us1, uvmexp->swtch, GENSTATROW + 1, GENSTATCOL - 1, 7);
  /src/usr.bin/vmstat/
vmstat.c 1184 cc->nswtch = uvmexp.swtch;

Completed in 62 milliseconds