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

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dipa-param-manipulation.c1847 tree name, vexpr, copy = NULL_TREE; local
1853 vexpr = NULL;
1868 if (vexpr == NULL && gsip != NULL)
1870 vexpr = make_node (DEBUG_EXPR_DECL);
1871 def_temp = gimple_build_debug_source_bind (vexpr, decl, NULL);
1872 DECL_ARTIFICIAL (vexpr) = 1;
1873 TREE_TYPE (vexpr) = TREE_TYPE (name);
1874 SET_DECL_MODE (vexpr, DECL_MODE (decl));
1877 if (vexpr)
1880 SET_USE (use_p, vexpr);
[all...]
H A Dtree-ssa.c437 tree vexpr = make_node (DEBUG_EXPR_DECL); local
439 def_temp = gimple_build_debug_bind (vexpr,
443 DECL_ARTIFICIAL (vexpr) = 1;
444 TREE_TYPE (vexpr) = TREE_TYPE (value);
446 SET_DECL_MODE (vexpr, DECL_MODE (value));
448 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (value)));
458 value = vexpr;
470 /* unshare_expr is not needed here. vexpr is either a
H A Domp-simd-clone.c901 tree vexpr = make_node (DEBUG_EXPR_DECL); local
902 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL);
903 DECL_ARTIFICIAL (vexpr) = 1;
904 TREE_TYPE (vexpr) = TREE_TYPE (repl);
905 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (repl)));
906 repl = vexpr;
H A Dtree-inline.c216 tree vexpr = make_node (DEBUG_EXPR_DECL); local
233 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
234 DECL_ARTIFICIAL (vexpr) = 1;
235 TREE_TYPE (vexpr) = TREE_TYPE (name);
236 SET_DECL_MODE (vexpr, DECL_MODE (SSA_NAME_VAR (name)));
239 insert_decl_map (id, val, vexpr);
240 return vexpr;
6504 tree vexpr;
6518 vexpr = make_node (DEBUG_EXPR_DECL);
6520 DECL_ARTIFICIAL (vexpr)
6503 tree vexpr; local
[all...]
H A Dcfgexpand.c4183 tree &vexpr = deep_ter_debug_map->get_or_insert (use); local
4184 if (vexpr != NULL)
4186 vexpr = make_node (DEBUG_EXPR_DECL);
4187 gimple *def_temp = gimple_build_debug_bind (vexpr, use, g);
4188 DECL_ARTIFICIAL (vexpr) = 1;
4189 TREE_TYPE (vexpr) = TREE_TYPE (use);
4190 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (use)));
5743 tree vexpr = make_node (DEBUG_EXPR_DECL); local
5749 DECL_ARTIFICIAL (vexpr) = 1;
5750 TREE_TYPE (vexpr)
[all...]
H A Dtree-ssa-pre.c693 pre_expr vexpr = expression_for_id (i); local
694 if (vexpr->kind == NAME)
695 return VN_INFO (PRE_EXPR_NAME (vexpr))->valnum;
696 else if (vexpr->kind == CONSTANT)
697 return PRE_EXPR_CONSTANT (vexpr);
H A Dtree-ssa-loop-ivopts.c7682 tree vexpr = make_node (DEBUG_EXPR_DECL); local
7683 DECL_ARTIFICIAL (vexpr) = 1;
7684 TREE_TYPE (vexpr) = TREE_TYPE (comp);
7686 SET_DECL_MODE (vexpr, DECL_MODE (SSA_NAME_VAR (def)));
7688 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (vexpr)));
7690 = gimple_build_debug_bind (vexpr, comp, NULL);
7700 comp = vexpr;
H A Dvar-tracking.c9921 tree vexpr = DECL_VALUE_EXPR (DECL_RESULT (current_function_decl)); local
9923 if (TREE_CODE (vexpr) == INDIRECT_REF)
9924 vexpr = TREE_OPERAND (vexpr, 0);
9926 if (TREE_CODE (vexpr) == PARM_DECL
9927 && DECL_ARTIFICIAL (vexpr)
9928 && !DECL_IGNORED_P (vexpr)
9929 && DECL_NAMELESS (vexpr))
9930 vt_add_function_parameter (vexpr);
H A Domp-low.c5762 tree vexpr = nv;
5764 vexpr = build_fold_addr_expr (nv);
5765 SET_DECL_VALUE_EXPR (new_vard, vexpr);
5894 tree vexpr = nv;
5896 vexpr = build_fold_addr_expr (nv);
5897 SET_DECL_VALUE_EXPR (new_vard, vexpr);
9408 tree vexpr = val;
9410 vexpr = build_fold_addr_expr_loc (clause_loc, val);
9412 SET_DECL_VALUE_EXPR (new_vard, vexpr);
9471 tree vexpr
5761 tree vexpr = nv; local
5893 tree vexpr = nv; local
9406 tree vexpr = val; local
9469 tree vexpr = unshare_expr (var4); local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dipa-param-manipulation.cc1292 tree vexpr = build_debug_expr_decl (TREE_TYPE (val)); local
1294 m_dead_ssa_debug_equiv.put (dead_ssa, vexpr);
2297 tree name, vexpr, copy = NULL_TREE; local
2303 vexpr = NULL;
2318 if (vexpr == NULL && gsip != NULL)
2320 vexpr = build_debug_expr_decl (TREE_TYPE (name));
2322 SET_DECL_MODE (vexpr, DECL_MODE (decl));
2323 def_temp = gimple_build_debug_source_bind (vexpr, decl, NULL);
2326 if (vexpr)
2329 SET_USE (use_p, vexpr);
[all...]
H A Dtree-ssa.cc437 tree vexpr = build_debug_expr_decl (TREE_TYPE (value)); local
439 def_temp = gimple_build_debug_bind (vexpr,
445 SET_DECL_MODE (vexpr, DECL_MODE (value));
447 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (value)));
457 value = vexpr;
469 /* unshare_expr is not needed here. vexpr is either a
H A Dtree-inline.cc212 tree vexpr = build_debug_expr_decl (TREE_TYPE (name));
214 SET_DECL_MODE (vexpr, DECL_MODE (SSA_NAME_VAR (name)));
215 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
218 insert_decl_map (id, val, vexpr);
219 return vexpr;
6465 tree vexpr = NULL_TREE;
6476 vexpr = *d;
6477 if (!vexpr)
6479 vexpr = build_debug_expr_decl (TREE_TYPE (parm));
6481 SET_DECL_MODE (vexpr, DECL_MOD
6464 tree vexpr = NULL_TREE; local
[all...]
H A Domp-simd-clone.cc913 tree vexpr = build_debug_expr_decl (TREE_TYPE (repl)); local
914 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL);
915 repl = vexpr;
H A Dcfgexpand.cc4336 tree &vexpr = deep_ter_debug_map->get_or_insert (use); local
4337 if (vexpr != NULL)
4339 vexpr = build_debug_expr_decl (TREE_TYPE (use));
4340 gimple *def_temp = gimple_build_debug_bind (vexpr, use, g);
5906 tree vexpr = build_debug_expr_decl (TREE_TYPE (value)); local
5917 SET_DECL_MODE (vexpr, mode);
5920 (mode, vexpr, (rtx)value, VAR_INIT_STATUS_INITIALIZED);
5930 SET_USE (use_p, vexpr);
H A Dtree-ssa-pre.cc765 pre_expr vexpr = constant_value_expressions[-val]; local
766 if (vexpr)
767 return PRE_EXPR_CONSTANT (vexpr);
776 pre_expr vexpr = expression_for_id (i); local
777 if (vexpr->kind == NAME)
778 return VN_INFO (PRE_EXPR_NAME (vexpr))->valnum;
H A Dvar-tracking.cc9952 tree vexpr = DECL_VALUE_EXPR (DECL_RESULT (current_function_decl)); local
9954 if (TREE_CODE (vexpr) == INDIRECT_REF)
9955 vexpr = TREE_OPERAND (vexpr, 0);
9957 if (TREE_CODE (vexpr) == PARM_DECL
9958 && DECL_ARTIFICIAL (vexpr)
9959 && !DECL_IGNORED_P (vexpr)
9960 && DECL_NAMELESS (vexpr))
9961 vt_add_function_parameter (vexpr);
H A Domp-low.cc6430 tree vexpr = nv;
6432 vexpr = build_fold_addr_expr (nv);
6433 SET_DECL_VALUE_EXPR (new_vard, vexpr);
6562 tree vexpr = nv;
6564 vexpr = build_fold_addr_expr (nv);
6565 SET_DECL_VALUE_EXPR (new_vard, vexpr);
10252 tree vexpr = val;
10254 vexpr = build_fold_addr_expr_loc (clause_loc, val);
10256 SET_DECL_VALUE_EXPR (new_vard, vexpr);
10315 tree vexpr
6429 tree vexpr = nv; local
6561 tree vexpr = nv; local
[all...]
H A Dtree-ssa-loop-ivopts.cc7815 tree vexpr = build_debug_expr_decl (TREE_TYPE (comp)); local
7818 SET_DECL_MODE (vexpr, DECL_MODE (SSA_NAME_VAR (def)));
7820 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (vexpr)));
7822 = gimple_build_debug_bind (vexpr, comp, NULL);
7832 comp = vexpr;
H A Dtree.cc5378 tree vexpr = make_node (DEBUG_EXPR_DECL);
5379 DECL_ARTIFICIAL (vexpr) = 1;
5380 TREE_TYPE (vexpr) = type;
5381 SET_DECL_MODE (vexpr, TYPE_MODE (type));
5382 return vexpr;
5361 tree vexpr = make_node (DEBUG_EXPR_DECL); local

Completed in 746 milliseconds