Searched refs:vexpr (Results 1 - 9 of 9) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dtree-ssa.c454 tree vexpr = make_node (DEBUG_EXPR_DECL); local
456 def_temp = gimple_build_debug_bind (vexpr,
460 DECL_ARTIFICIAL (vexpr) = 1;
461 TREE_TYPE (vexpr) = TREE_TYPE (value);
463 DECL_MODE (vexpr) = DECL_MODE (value);
465 DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (value));
475 value = vexpr;
487 /* unshare_expr is not needed here. vexpr is either a
H A Dipa-split.c1531 tree var, vexpr; local
1547 vexpr = make_node (DEBUG_EXPR_DECL);
1549 DECL_ARTIFICIAL (vexpr) = 1;
1550 TREE_TYPE (vexpr) = TREE_TYPE (parm);
1551 DECL_MODE (vexpr) = DECL_MODE (parm);
1552 def_temp = gimple_build_debug_source_bind (vexpr, parm,
1555 def_temp = gimple_build_debug_bind (var, vexpr, NULL);
H A Dtree-sra.c4819 tree name, vexpr, copy = NULL_TREE; local
4826 vexpr = NULL;
4841 if (vexpr == NULL && gsip != NULL)
4844 vexpr = make_node (DEBUG_EXPR_DECL);
4845 def_temp = gimple_build_debug_source_bind (vexpr, adj->base,
4847 DECL_ARTIFICIAL (vexpr) = 1;
4848 TREE_TYPE (vexpr) = TREE_TYPE (name);
4849 DECL_MODE (vexpr) = DECL_MODE (adj->base);
4852 if (vexpr)
4855 SET_USE (use_p, vexpr);
[all...]
H A Dcfgexpand.c3836 tree &vexpr = deep_ter_debug_map->get_or_insert (use); local
3837 if (vexpr != NULL)
3839 vexpr = make_node (DEBUG_EXPR_DECL);
3840 gimple def_temp = gimple_build_debug_bind (vexpr, use, g);
3841 DECL_ARTIFICIAL (vexpr) = 1;
3842 TREE_TYPE (vexpr) = TREE_TYPE (use);
3843 DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (use));
5362 tree vexpr = make_node (DEBUG_EXPR_DECL); local
5368 DECL_ARTIFICIAL (vexpr) = 1;
5369 TREE_TYPE (vexpr)
[all...]
H A Dtree-ssa-loop-ivopts.c6819 tree vexpr = make_node (DEBUG_EXPR_DECL); local
6820 DECL_ARTIFICIAL (vexpr) = 1;
6821 TREE_TYPE (vexpr) = TREE_TYPE (comp);
6823 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (def));
6825 DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (vexpr));
6827 = gimple_build_debug_bind (vexpr, comp, NULL);
6837 comp = vexpr;
H A Dtree-ssa-pre.c683 pre_expr vexpr = expression_for_id (i); local
684 if (vexpr->kind == NAME)
685 return VN_INFO (PRE_EXPR_NAME (vexpr))->valnum;
686 else if (vexpr->kind == CONSTANT)
687 return PRE_EXPR_CONSTANT (vexpr);
H A Dtree-inline.c243 tree vexpr = make_node (DEBUG_EXPR_DECL); local
256 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
257 DECL_ARTIFICIAL (vexpr) = 1;
258 TREE_TYPE (vexpr) = TREE_TYPE (name);
259 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (name));
262 return vexpr;
H A Dvar-tracking.c9837 tree vexpr = DECL_VALUE_EXPR (DECL_RESULT (current_function_decl)); local
9839 if (TREE_CODE (vexpr) == INDIRECT_REF)
9840 vexpr = TREE_OPERAND (vexpr, 0);
9842 if (TREE_CODE (vexpr) == PARM_DECL
9843 && DECL_ARTIFICIAL (vexpr)
9844 && !DECL_IGNORED_P (vexpr)
9845 && DECL_NAMELESS (vexpr))
9846 vt_add_function_parameter (vexpr);
H A Domp-low.c13150 tree vexpr = make_node (DEBUG_EXPR_DECL);
13151 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL);
13152 DECL_ARTIFICIAL (vexpr) = 1;
13153 TREE_TYPE (vexpr) = TREE_TYPE (repl);
13154 DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (repl));
13155 repl = vexpr;
13145 tree vexpr = make_node (DEBUG_EXPR_DECL); local

Completed in 361 milliseconds