Lines Matching refs:e_proxy

964   tree e_proxy = STRIP_NOPS (o);  in build_co_await()  local
965 if (INDIRECT_REF_P (e_proxy)) in build_co_await()
966 e_proxy = TREE_OPERAND (e_proxy, 0); in build_co_await()
967 while (TREE_CODE (e_proxy) == COMPONENT_REF) in build_co_await()
969 e_proxy = TREE_OPERAND (e_proxy, 0); in build_co_await()
970 if (INDIRECT_REF_P (e_proxy)) in build_co_await()
971 e_proxy = TREE_OPERAND (e_proxy, 0); in build_co_await()
972 if (TREE_CODE (e_proxy) == CALL_EXPR) in build_co_await()
975 tree op = TREE_OPERAND (CALL_EXPR_FN (e_proxy), 0); in build_co_await()
979 e_proxy = CALL_EXPR_ARG (e_proxy, 0); in build_co_await()
980 STRIP_NOPS (e_proxy); in build_co_await()
981 gcc_checking_assert (TREE_CODE (e_proxy) == ADDR_EXPR); in build_co_await()
982 e_proxy = TREE_OPERAND (e_proxy, 0); in build_co_await()
985 STRIP_NOPS (e_proxy); in build_co_await()
989 if (TREE_CODE (e_proxy) == PARM_DECL in build_co_await()
990 || (VAR_P (e_proxy) && !is_local_temp (e_proxy))) in build_co_await()
992 e_proxy = o; in build_co_await()
997 e_proxy = get_awaitable_var (suspend_kind, o_type); in build_co_await()
999 o = build_special_member_call (e_proxy, complete_ctor_identifier, in build_co_await()
1005 e_proxy = get_awaitable_var (suspend_kind, o_type); in build_co_await()
1006 o = build2 (INIT_EXPR, o_type, e_proxy, rvalue (o)); in build_co_await()
1012 = build_new_method_call (e_proxy, awrd_meth, NULL, NULL_TREE, LOOKUP_NORMAL, in build_co_await()
1026 = build_new_method_call (e_proxy, awsp_meth, &args, NULL_TREE, in build_co_await()
1057 = build_new_method_call (e_proxy, awrs_meth, NULL, NULL_TREE, LOOKUP_NORMAL, in build_co_await()
1073 = build_special_member_call (e_proxy, complete_dtor_identifier, in build_co_await()
1101 a, e_proxy, o, awaiter_calls, in build_co_await()