Home
last modified time | relevance | path

Searched refs:call_expr (Results 1 – 25 of 30) sorted by relevance

12

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dbuiltins.c150 tree call_expr; in build_function_call_expr() local
152 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn); in build_function_call_expr()
153 call_expr = build (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)), in build_function_call_expr()
154 call_expr, arglist); in build_function_call_expr()
155 TREE_SIDE_EFFECTS (call_expr) = 1; in build_function_call_expr()
156 return call_expr; in build_function_call_expr()
H A DChangeLog1350 a call_expr wrapped in a convert. Fixes PR java/5848.
/openbsd-src/gnu/gcc/gcc/
H A Dipa-pure-const.c316 check_call (funct_state local, tree call_expr) in check_call() argument
318 int flags = call_expr_flags(call_expr); in check_call()
319 tree operand_list = TREE_OPERAND (call_expr, 1); in check_call()
321 tree callee_t = get_callee_fndecl (call_expr); in check_call()
H A Dipa-reference.c436 check_call (ipa_reference_local_vars_info_t local, tree call_expr) in check_call() argument
438 int flags = call_expr_flags (call_expr); in check_call()
439 tree operand_list = TREE_OPERAND (call_expr, 1); in check_call()
441 tree callee_t = get_callee_fndecl (call_expr); in check_call()
H A Dipa-type-escape.c1016 check_call (tree call_expr) in check_call() argument
1018 int flags = call_expr_flags(call_expr); in check_call()
1019 tree operand_list = TREE_OPERAND (call_expr, 1); in check_call()
1021 tree callee_t = get_callee_fndecl (call_expr); in check_call()
H A Dtree-outof-ssa.c1558 tree call_expr; in check_replaceable() local
1587 if ((call_expr = get_call_expr_in (stmt)) != NULL_TREE) in check_replaceable()
1589 int call_flags = call_expr_flags (call_expr); in check_replaceable()
1590 if (TREE_SIDE_EFFECTS (call_expr) in check_replaceable()
H A Dexpr.c1343 tree call_expr, arg_list, fn, src_tree, dst_tree, size_tree; in emit_block_move_via_libcall() local
1379 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn); in emit_block_move_via_libcall()
1380 call_expr = build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)), in emit_block_move_via_libcall()
1381 call_expr, arg_list, NULL_TREE); in emit_block_move_via_libcall()
1382 CALL_EXPR_TAILCALL (call_expr) = tailcall; in emit_block_move_via_libcall()
1384 retval = expand_normal (call_expr); in emit_block_move_via_libcall()
2558 tree call_expr, arg_list, fn, object_tree, size_tree; in clear_storage_via_libcall() local
2586 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn); in clear_storage_via_libcall()
2587 call_expr = build3 (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)), in clear_storage_via_libcall()
2588 call_expr, arg_list, NULL_TREE); in clear_storage_via_libcall()
[all …]
H A Dpredict.c1269 goto call_expr; in tree_bb_level_predictions()
1273 call_expr:; in tree_bb_level_predictions()
H A Dbuiltins.c9223 tree call_expr; in build_function_call_expr() local
9225 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn); in build_function_call_expr()
9227 call_expr, arglist, NULL_TREE); in build_function_call_expr()
H A Dtree.def529 DEFTREECODE (CALL_EXPR, "call_expr", tcc_expression, 3)
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dsemantics.c2196 tree call_expr; local
2234 call_expr = build (CALL_EXPR,
2237 TREE_SIDE_EFFECTS (call_expr) = 1;
2249 call_expr = build_aggr_init (slot, call_expr,
2261 call_expr = build (COMPOUND_EXPR, type,
2262 call_expr, slot);
2263 TREE_SIDE_EFFECTS (call_expr) = 1;
2267 TREE_CHAIN (call_expr) = TREE_CHAIN (aggr_init_expr);
2268 *tp = call_expr;
H A Dcall.c3933 tree call_expr; local
3936 call_expr = placement;
3939 while (TREE_CODE (call_expr) == COMPOUND_EXPR)
3940 call_expr = TREE_OPERAND (call_expr, 1);
3942 alloc_fn = get_callee_fndecl (call_expr);
3947 args = TREE_CHAIN (TREE_OPERAND (call_expr, 1));
/openbsd-src/gnu/gcc/gcc/cp/
H A Dsemantics.c2972 tree call_expr; in simplify_aggr_init_expr() local
2999 call_expr = build3 (CALL_EXPR, in simplify_aggr_init_expr()
3008 CALL_EXPR_RETURN_SLOT_OPT (call_expr) = true; in simplify_aggr_init_expr()
3009 call_expr = build2 (MODIFY_EXPR, TREE_TYPE (call_expr), slot, call_expr); in simplify_aggr_init_expr()
3017 call_expr = build_aggr_init (slot, call_expr, in simplify_aggr_init_expr()
3020 call_expr = build2 (COMPOUND_EXPR, TREE_TYPE (slot), call_expr, slot); in simplify_aggr_init_expr()
3023 *tp = call_expr; in simplify_aggr_init_expr()
H A DChangeLog.tree-ssa68 static chain operand to call_expr.
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dbuiltins.c4361 tree call_expr; local
4363 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
4364 call_expr = build (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
4365 call_expr, arglist);
4366 TREE_SIDE_EFFECTS (call_expr) = 1;
4367 return fold (call_expr);
H A Dexpr.c1952 tree call_expr, arg_list, fn, src_tree, dst_tree, size_tree; local
2016 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
2017 call_expr = build (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
2018 call_expr, arg_list, NULL_TREE);
2019 TREE_SIDE_EFFECTS (call_expr) = 1;
2021 retval = expand_expr (call_expr, NULL_RTX, VOIDmode, 0);
3072 tree call_expr, arg_list, fn, object_tree, size_tree; local
3127 call_expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (fn)), fn);
3128 call_expr = build (CALL_EXPR, TREE_TYPE (TREE_TYPE (fn)),
3129 call_expr, arg_list, NULL_TREE);
[all …]
H A Dtree.def469 DEFTREECODE (CALL_EXPR, "call_expr", 'e', 2)
H A DChangeLog.38902 call_expr. Move checks for call_expr and current_function_decl ...
/openbsd-src/gnu/gcc/gcc/objc/
H A Dobjc-act.c9501 objc_get_callee_fndecl (tree call_expr) in objc_get_callee_fndecl() argument
9503 tree addr = TREE_OPERAND (call_expr, 0); in objc_get_callee_fndecl()
/openbsd-src/gnu/usr.bin/gcc/gcc/po/
H A Dgcc.pot16513 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
H A Dbe.po16453 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
H A Del.po16694 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
H A Dja.po17117 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
H A Dnl.po16933 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"
H A Dde.po16370 msgid "call_expr cannot be mangled due to a defect in the C++ ABI"

12