HomeSort by: relevance | last modified time | path
    Searched refs:stmts (Results 1 - 25 of 202) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/gpl3/gcc/dist/gcc/
tree-complex.cc 787 this pass that might walk SSA_NAME def stmts,
928 gimple_seq stmts = NULL; local
934 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
941 ri = gimple_build (&stmts, loc, MINUS_EXPR, inner_type, ai, bi);
948 rr = gimple_build (&stmts, loc, MINUS_EXPR, inner_type, ar, br);
956 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi);
960 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
966 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi);
972 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
980 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi)
1108 gimple_seq stmts = NULL; local
1260 gimple_seq stmts = NULL; local
1295 gimple_seq stmts = NULL; local
1455 gimple_seq stmts = NULL; local
1538 gimple_seq stmts = NULL; local
1557 gimple_seq stmts = NULL; local
1574 gimple_seq stmts = NULL; local
    [all...]
gimplify-me.cc 39 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
44 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
50 *stmts = NULL;
73 gimplify_and_add (expr, stmts);
78 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
88 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
94 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
96 return force_gimple_operand_1 (expr, stmts,
113 gimple_seq stmts; local
115 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var)
    [all...]
tree-ssa-loop-manip.cc 69 gimple_seq stmts; local
125 step = force_gimple_operand (step, &stmts, true, NULL_TREE);
126 if (stmts)
127 gsi_insert_seq_on_edge_immediate (pe, stmts);
154 initial = force_gimple_operand (base, &stmts, true, var);
155 if (stmts)
156 gsi_insert_seq_on_edge_immediate (pe, stmts);
933 gimple_seq stmts; local
1016 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE);
1017 if (stmts)
1018 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1026 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1032 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1035 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1402 gimple_seq stmts; local
1439 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
    [all...]
tree-vect-loop.cc 113 The loop transformation phase scans all the stmts in the loop, and
114 creates a vector stmt (or a sequence of stmts) for each scalar stmt S in
119 stmts which use the def of stmt S. Stmt S is removed if it writes to memory;
195 /* The only case when a vectype had been already set is for stmts
196 that contain a data ref, or for "pattern-stmts" (stmts generated
233 /* If a pattern statement has def stmts, analyze them too. */
792 /* Fixup scalar cycles that now have their stmts detected as patterns. */
812 the group to group the pattern stmts instead. */
1026 stmt_vec_info structs for all the stmts in LOOP_IN. *
1180 gimple_seq stmts = NULL; local
5548 gimple_seq stmts = NULL; local
6161 gimple_seq stmts = NULL; local
6222 gimple_seq stmts = NULL; local
6301 gimple_seq stmts = NULL; local
6443 gimple_seq stmts = NULL; local
6514 gimple_seq stmts = NULL; local
6535 gimple_seq stmts = NULL; local
6687 gimple_seq stmts = NULL; local
6720 gimple_seq stmts = NULL; local
6770 gimple_seq stmts = NULL; local
6863 gimple_seq stmts = NULL; local
8770 vec<stmt_vec_info> &stmts = SLP_TREE_SCALAR_STMTS (slp_node); local
8884 gimple_seq stmts = NULL; local
8931 stmts); local
9281 gimple_seq stmts = NULL; local
9835 gimple_seq stmts = NULL; local
10270 gimple_seq stmts = NULL; local
10331 gimple_seq stmts = NULL; local
10355 gimple_seq stmts = NULL; local
10599 gimple_seq stmts = NULL; local
10652 gimple_seq stmts = NULL; local
11026 gimple_seq stmts = NULL; local
    [all...]
tree-ssa-loop-split.cc 410 necessary statements for that computation into *STMTS.
433 compute_new_first_bound (gimple_seq *stmts, class tree_niter_desc *niter,
440 stmts, true, NULL_TREE);
445 controlstep = gimple_build (stmts, NEGATE_EXPR,
447 enddiff = gimple_build (stmts, POINTER_PLUS_EXPR,
452 enddiff = gimple_build (stmts, MINUS_EXPR,
460 gimple_seq_add_seq_without_update (stmts, stmts2);
463 tree tem = gimple_convert (stmts, sizetype, enddiff);
464 tem = gimple_build (stmts, NEGATE_EXPR, sizetype, tem);
465 enddiff = gimple_build (stmts, POINTER_PLUS_EXPR
759 gimple_seq stmts = NULL; local
764 stmts); local
    [all...]
gimple-isel.cc 197 gimple_seq stmts = NULL; local
200 tree tem0 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op1, op0);
201 tree tem1 = gimple_build (&stmts, loc, BIT_NOT_EXPR, type, op0);
202 tree tem2 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op2, tem1);
203 tree tem3 = gimple_build (&stmts, loc, BIT_IOR_EXPR, type, tem0, tem2);
204 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
tree-predcom.cc 329 /* gimple stmts intializing the initial variables of the chain. */
332 /* gimple stmts finalizing the eliminated stores of the chain. */
1737 of the loop it was analyzed in. Append init stmts to STMTS. */
1741 gimple_seq *stmts, tree niters = NULL_TREE)
1821 addr = force_gimple_operand_1 (unshare_expr (addr), stmts,
1875 gimple_seq stmts; local
1906 init = force_gimple_operand (init, &stmts, true, NULL_TREE);
1907 if (stmts)
1908 gsi_insert_seq_on_edge_immediate (entry, stmts);
2021 gimple_seq stmts; local
2134 gimple_seq stmts; local
3174 gimple_seq stmts = NULL; local
3221 gimple_seq stmts = NULL; local
3289 gimple_seq stmts = NULL; local
    [all...]
gimple-fold.cc 589 /* Replace a statement at *SI_P with a sequence of statements in STMTS,
590 adjusting the replacement stmts location and virtual operands.
595 gsi_replace_with_seq_vops (gimple_stmt_iterator *si_p, gimple_seq stmts)
600 annotate_all_with_location (stmts, gimple_location (stmt));
605 for (gimple_stmt_iterator i = gsi_last (stmts);
630 for (gimple_stmt_iterator i = gsi_start (stmts);
658 gsi_replace_with_seq (si_p, stmts, false);
743 gimple_seq stmts = NULL; local
777 gimplify_and_add (expr, &stmts);
782 if (gimple_seq_empty_p (stmts))
1348 gimple_seq stmts = NULL; local
2230 gimple_seq stmts = NULL; local
2320 gimple_seq stmts = NULL; local
2782 gimple_seq stmts = NULL; local
2797 gimple_seq stmts = NULL; local
2818 gimple_seq stmts = NULL; local
2909 gimple_seq stmts = NULL; local
3033 gimple_seq stmts = NULL; local
3571 gimple_seq stmts = NULL; local
8803 gimple_seq stmts = NULL; local
    [all...]
tree-ssa-pre.cc 2545 unsigned int *operand, gimple_seq *stmts)
2558 stmts);
2587 stmts);
2592 genop0 = find_or_generate_expression (block, currop->op0, stmts);
2598 genop1 = find_or_generate_expression (block, nextop->op0, stmts);
2622 stmts);
2631 stmts);
2634 tree genop1 = find_or_generate_expression (block, currop->op0, stmts);
2643 stmts);
2664 stmts);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-complex.cc 782 this pass that might walk SSA_NAME def stmts,
921 gimple_seq stmts = NULL; local
927 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
934 ri = gimple_build (&stmts, loc, MINUS_EXPR, inner_type, ai, bi);
941 rr = gimple_build (&stmts, loc, MINUS_EXPR, inner_type, ar, br);
949 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi);
953 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
959 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi);
965 rr = gimple_build (&stmts, loc, code, inner_type, ar, br);
973 ri = gimple_build (&stmts, loc, code, inner_type, ai, bi)
1101 gimple_seq stmts = NULL; local
1253 gimple_seq stmts = NULL; local
1288 gimple_seq stmts = NULL; local
1448 gimple_seq stmts = NULL; local
1531 gimple_seq stmts = NULL; local
1550 gimple_seq stmts = NULL; local
1567 gimple_seq stmts = NULL; local
    [all...]
gimplify-me.cc 39 /* Expand EXPR to list of gimple statements STMTS. GIMPLE_TEST_F specifies
44 force_gimple_operand_1 (tree expr, gimple_seq *stmts,
50 *stmts = NULL;
73 gimplify_and_add (expr, stmts);
78 ret = gimplify_expr (&expr, stmts, NULL, gimple_test_f, fb_rvalue);
88 /* Expand EXPR to list of gimple statements STMTS. If SIMPLE is true,
94 force_gimple_operand (tree expr, gimple_seq *stmts, bool simple, tree var)
96 return force_gimple_operand_1 (expr, stmts,
113 gimple_seq stmts; local
115 expr = force_gimple_operand_1 (expr, &stmts, gimple_test_f, var)
    [all...]
gimple-isel.cc 152 gimple_seq stmts = NULL; local
155 tree tem0 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op1, op0);
156 tree tem1 = gimple_build (&stmts, loc, BIT_NOT_EXPR, type, op0);
157 tree tem2 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op2, tem1);
158 tree tem3 = gimple_build (&stmts, loc, BIT_IOR_EXPR, type, tem0, tem2);
159 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
tree-ssa-loop-manip.cc 67 gimple_seq stmts; local
123 step = force_gimple_operand (step, &stmts, true, NULL_TREE);
124 if (stmts)
125 gsi_insert_seq_on_edge_immediate (pe, stmts);
152 initial = force_gimple_operand (base, &stmts, true, var);
153 if (stmts)
154 gsi_insert_seq_on_edge_immediate (pe, stmts);
1010 gimple_seq stmts; local
1093 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE);
1094 if (stmts)
1095 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1103 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1109 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1112 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
1612 gimple_seq stmts; local
1649 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts); local
    [all...]
tree-vect-loop.cc 110 The loop transformation phase scans all the stmts in the loop, and
111 creates a vector stmt (or a sequence of stmts) for each scalar stmt S in
116 stmts which use the def of stmt S. Stmt S is removed if it writes to memory;
192 /* The only case when a vectype had been already set is for stmts
193 that contain a data ref, or for "pattern-stmts" (stmts generated
230 /* If a pattern statement has def stmts, analyze them too. */
663 /* Fixup scalar cycles that now have their stmts detected as patterns. */
683 the group to group the pattern stmts instead. */
816 stmt_vec_info structs for all the stmts in LOOP_IN. *
963 gimple_seq stmts = NULL; local
4748 gimple_seq stmts = NULL; local
5374 gimple_seq stmts = NULL; local
5434 gimple_seq stmts = NULL; local
5495 gimple_seq stmts = NULL; local
5637 gimple_seq stmts = NULL; local
5709 gimple_seq stmts = NULL; local
5730 gimple_seq stmts = NULL; local
5881 gimple_seq stmts = NULL; local
5914 gimple_seq stmts = NULL; local
5964 gimple_seq stmts = NULL; local
6056 gimple_seq stmts = NULL; local
7695 vec<stmt_vec_info> &stmts = SLP_TREE_SCALAR_STMTS (slp_node); local
7809 gimple_seq stmts = NULL; local
7855 stmts); local
8417 gimple_seq stmts = NULL; local
8478 gimple_seq stmts = NULL; local
8503 gimple_seq stmts = NULL; local
8719 gimple_seq stmts = NULL; local
8941 gimple_seq stmts = NULL; local
9024 gimple_seq stmts = NULL; local
    [all...]
tree-ssa-loop-split.cc 371 necessary statements for that computation into *STMTS.
394 compute_new_first_bound (gimple_seq *stmts, class tree_niter_desc *niter,
401 stmts, true, NULL_TREE);
406 controlstep = gimple_build (stmts, NEGATE_EXPR,
408 enddiff = gimple_build (stmts, POINTER_PLUS_EXPR,
413 enddiff = gimple_build (stmts, MINUS_EXPR,
421 gimple_seq_add_seq_without_update (stmts, stmts2);
424 tree tem = gimple_convert (stmts, sizetype, enddiff);
425 tem = gimple_build (stmts, NEGATE_EXPR, sizetype, tem);
426 enddiff = gimple_build (stmts, POINTER_PLUS_EXPR
638 gimple_seq stmts = NULL; local
643 stmts); local
    [all...]
gimple-fold.cc 590 /* Replace a statement at *SI_P with a sequence of statements in STMTS,
591 adjusting the replacement stmts location and virtual operands.
596 gsi_replace_with_seq_vops (gimple_stmt_iterator *si_p, gimple_seq stmts)
601 annotate_all_with_location (stmts, gimple_location (stmt));
606 for (gimple_stmt_iterator i = gsi_last (stmts);
631 for (gimple_stmt_iterator i = gsi_start (stmts);
659 gsi_replace_with_seq (si_p, stmts, false);
744 gimple_seq stmts = NULL; local
778 gimplify_and_add (expr, &stmts);
783 if (gimple_seq_empty_p (stmts))
1348 gimple_seq stmts = NULL; local
2231 gimple_seq stmts = NULL; local
2321 gimple_seq stmts = NULL; local
2783 gimple_seq stmts = NULL; local
2798 gimple_seq stmts = NULL; local
2819 gimple_seq stmts = NULL; local
2910 gimple_seq stmts = NULL; local
3033 gimple_seq stmts = NULL; local
3571 gimple_seq stmts = NULL; local
8643 gimple_seq stmts = NULL; local
    [all...]
tree-predcom.cc 329 /* gimple stmts intializing the initial variables of the chain. */
332 /* gimple stmts finalizing the eliminated stores of the chain. */
1706 of the loop it was analyzed in. Append init stmts to STMTS. */
1710 gimple_seq *stmts, tree niters = NULL_TREE)
1790 addr = force_gimple_operand_1 (unshare_expr (addr), stmts,
1844 gimple_seq stmts; local
1875 init = force_gimple_operand (init, &stmts, true, NULL_TREE);
1876 if (stmts)
1877 gsi_insert_seq_on_edge_immediate (entry, stmts);
1990 gimple_seq stmts; local
2103 gimple_seq stmts; local
3143 gimple_seq stmts = NULL; local
3190 gimple_seq stmts = NULL; local
3258 gimple_seq stmts = NULL; local
    [all...]
tree-if-conv.cc 137 /* True if we have to rewrite stmts that may invoke undefined behavior
261 /* Sets the sequence of statements STMTS of the gimplification of the
265 set_bb_predicate_gimplified_stmts (basic_block bb, gimple_seq stmts)
267 ((struct bb_predicate *) bb->aux)->predicate_gimplified_stmts = stmts;
270 /* Adds the sequence of statements STMTS to the sequence of statements
274 add_bb_predicate_gimplified_stmts (basic_block bb, gimple_seq stmts)
276 /* We might have updated some stmts in STMTS via force_gimple_operand
277 calling fold_stmt and that producing multiple stmts. Delink immediate
280 ??? This should go away once we reliably avoid updating stmts
308 gimple_seq stmts = bb_predicate_gimplified_stmts (bb); local
565 gimple_seq stmts; local
1830 gimple_seq stmts = NULL; local
2191 gimple_seq stmts; local
2555 gimple_seq stmts = NULL; local
2602 gimple_seq stmts = rewrite_to_defined_overflow (stmt); local
    [all...]
tree-ssa-pre.cc 2541 unsigned int *operand, gimple_seq *stmts)
2554 stmts);
2583 stmts);
2588 genop0 = find_or_generate_expression (block, currop->op0, stmts);
2594 genop1 = find_or_generate_expression (block, nextop->op0, stmts);
2618 stmts);
2627 stmts);
2630 tree genop1 = find_or_generate_expression (block, currop->op0, stmts);
2639 stmts);
2660 stmts);
3157 gimple_seq stmts = NULL; local
3712 gimple_seq stmts = NULL; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
pass-by-ref.exp 257 proc generate_program { classes stmts } {
287 $stmts
316 set stmts ""
320 append stmts [generate_stmts "Small" $state]
323 append stmts [generate_stmts "Large" $state]
326 append stmts [generate_stmts "Derived" $state]
329 append stmts [generate_stmts "Container" $state "cbv_container"]
333 set program [generate_program $classes $stmts]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
pass-by-ref.exp 257 proc generate_program { classes stmts } {
287 $stmts
316 set stmts ""
320 append stmts [generate_stmts "Small" $state]
323 append stmts [generate_stmts "Large" $state]
326 append stmts [generate_stmts "Derived" $state]
329 append stmts [generate_stmts "Container" $state "cbv_container"]
333 set program [generate_program $classes $stmts]
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_sugar.c 358 * stmts
362 dt_sugar_new_basic_block(dt_sugar_parse_t *dp, int condid, dt_node_t *stmts)
382 dt_node_clause(dp->dtsp_pdescs, pred, stmts));
390 dt_sugar_visit_stmts(dt_sugar_parse_t *dp, dt_node_t *stmts, int precondition)
397 for (stmt = stmts; stmt != NULL; stmt = next_stmt) {
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-builtin.cc 1329 gimple_seq stmts = NULL; local
1331 tree uarg0 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1333 tree uarg1 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1335 tree res = gimple_build (&stmts, gimple_location (stmt), bcode,
1337 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
1687 gimple_seq stmts = NULL; local
1688 tree unsigned_arg1 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1690 tree new_arg1 = gimple_build (&stmts, loc, TRUNC_MOD_EXPR,
1693 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
1708 gimple_seq stmts = NULL local
1757 gimple_seq stmts = NULL; local
1807 gimple_seq stmts = NULL; local
1859 gimple_seq stmts = NULL; local
1907 gimple_seq stmts = NULL; local
1950 gimple_seq stmts = NULL; local
2215 gimple_seq stmts = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-builtin.cc 1353 gimple_seq stmts = NULL; local
1355 tree uarg0 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1357 tree uarg1 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1359 tree res = gimple_build (&stmts, gimple_location (stmt), bcode,
1361 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
1707 gimple_seq stmts = NULL; local
1708 tree unsigned_arg1 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
1710 tree new_arg1 = gimple_build (&stmts, loc, TRUNC_MOD_EXPR,
1713 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
1728 gimple_seq stmts = NULL local
1777 gimple_seq stmts = NULL; local
1827 gimple_seq stmts = NULL; local
1879 gimple_seq stmts = NULL; local
1927 gimple_seq stmts = NULL; local
1970 gimple_seq stmts = NULL; local
2240 gimple_seq stmts = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64-sve-builtins-base.cc 399 gimple_seq stmts = NULL; variable
400 rhs2 = f.force_vector (stmts, TREE_TYPE (rhs1), rhs2);
401 gsi_insert_seq_before (f.gsi, stmts, GSI_SAME_STMT);
782 gimple_seq stmts = NULL; variable
783 tree pred = f.convert_pred (stmts, vec_type, 0);
784 rhs = f.force_vector (stmts, vec_type, rhs);
785 gsi_insert_seq_before (f.gsi, stmts, GSI_SAME_STMT);
1102 gimple_seq stmts = NULL; variable
1103 tree pred = f.convert_pred (stmts, vectype, 0);
1104 tree base = f.fold_contiguous_base (stmts, vectype)
1256 gimple_seq stmts = NULL; variable
1997 gimple_seq stmts = NULL; variable
2103 gimple_seq stmts = NULL; variable
2201 gimple_seq stmts = NULL; variable
    [all...]

Completed in 58 milliseconds

1 2 3 4 5 6 7 8 9