grpc 1.65.2 → 1.66.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +17 -7
- data/include/grpc/event_engine/event_engine.h +14 -0
- data/include/grpc/event_engine/extensible.h +3 -0
- data/include/grpc/event_engine/memory_request.h +18 -0
- data/include/grpc/support/log.h +0 -18
- data/include/grpc/support/metrics.h +14 -3
- data/include/grpc/support/port_platform.h +22 -0
- data/src/core/client_channel/client_channel.cc +125 -30
- data/src/core/client_channel/client_channel_filter.cc +37 -113
- data/src/core/client_channel/client_channel_internal.h +6 -0
- data/src/core/client_channel/config_selector.h +17 -14
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +3 -1
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +56 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +8 -70
- data/src/core/client_channel/retry_filter.cc +1 -1
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +164 -185
- data/src/core/client_channel/subchannel.cc +58 -42
- data/src/core/client_channel/subchannel.h +4 -10
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +6 -7
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +2 -0
- data/src/core/ext/filters/census/grpc_context.cc +4 -4
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +13 -14
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +4 -0
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +4 -5
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +2 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.h +2 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -2
- data/src/core/ext/filters/http/client_authority_filter.h +2 -0
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +16 -19
- data/src/core/ext/filters/http/message_compress/compression_filter.h +5 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +4 -4
- data/src/core/ext/filters/http/server/http_server_filter.h +2 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +12 -14
- data/src/core/ext/filters/message_size/message_size_filter.h +4 -0
- data/src/core/ext/filters/rbac/rbac_filter.cc +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.h +2 -0
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +2 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +53 -66
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +90 -112
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +17 -29
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +189 -168
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +3 -7
- data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -10
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +5 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +9 -10
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +7 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +3 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +47 -38
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +54 -9
- data/src/core/ext/transport/chttp2/transport/parsing.cc +59 -59
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +7 -7
- data/src/core/ext/transport/chttp2/transport/writing.cc +105 -79
- data/src/core/ext/transport/inproc/inproc_transport.cc +94 -35
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +101 -98
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +11 -11
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +23 -23
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +11 -11
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +50 -50
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +57 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +110 -78
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +23 -15
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +4 -4
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +11 -2
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +30 -30
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +48 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +361 -250
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +139 -48
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +10 -10
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +314 -137
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +120 -22
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +115 -23
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +27 -3
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +31 -31
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +45 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +23 -23
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +24 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +646 -68
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +230 -16
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +5 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +21 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +130 -58
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +63 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +104 -58
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +42 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +132 -72
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +65 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +58 -30
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +30 -7
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +237 -33
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +58 -12
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +59 -43
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +37 -6
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +25 -25
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +21 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +66 -9
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +10 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +5 -5
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +18 -18
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +24 -0
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +17 -17
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +30 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +63 -34
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +39 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +9 -9
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +273 -229
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +191 -14
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +31 -31
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +36 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +109 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +38 -11
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +11 -11
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +4 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +114 -98
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +52 -3
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +18 -18
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +41 -9
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +15 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +8 -8
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +4 -4
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +146 -130
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +74 -10
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +10 -10
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +7 -7
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +111 -27
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +43 -7
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +8 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +35 -35
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +21 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +16 -16
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +36 -36
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +42 -0
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +4 -4
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +20 -20
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +5 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +4 -4
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +5 -5
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +37 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +20 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +2 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +8 -8
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +21 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +13 -13
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +15 -0
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +1 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +6 -6
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +5 -5
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +3 -3
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +32 -32
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +39 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +43 -43
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +42 -0
- data/src/core/ext/upb-gen/google/api/http.upb.h +12 -12
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +2 -2
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +2 -2
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +381 -177
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +148 -22
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +2 -2
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +6 -6
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +2 -2
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +9 -9
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -0
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +2 -2
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +10 -10
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +6 -6
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +35 -35
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +36 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +4 -4
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +2 -2
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +18 -18
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +27 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +4 -4
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +15 -15
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +27 -0
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +54 -9
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +12 -3
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +1 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +12 -3
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +11 -2
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/validate/validate.upb.h +175 -166
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +69 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +54 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +12 -3
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +1 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +35 -8
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +11 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +1 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +5 -5
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +7 -7
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +4 -4
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +6 -6
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +12 -0
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +1 -1
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +1 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +3 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +18 -18
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +30 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +3 -3
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +18 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +6 -6
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +4 -4
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +6 -0
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +6 -6
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +9 -0
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +2 -2
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +3 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +86 -81
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +61 -60
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +221 -210
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +317 -297
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +114 -105
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +185 -140
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +25 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +10 -11
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +173 -164
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +197 -187
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +229 -222
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +39 -36
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +122 -93
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +41 -39
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +20 -12
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +69 -65
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +611 -604
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +30 -20
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +18 -17
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +62 -59
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +21 -20
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +145 -142
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +36 -33
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +290 -288
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +82 -75
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +39 -33
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +281 -256
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +5 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +9 -7
- data/src/core/handshaker/handshaker.cc +122 -135
- data/src/core/handshaker/handshaker.h +51 -43
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +102 -137
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +13 -16
- data/src/core/handshaker/security/secure_endpoint.cc +36 -39
- data/src/core/handshaker/security/secure_endpoint.h +5 -3
- data/src/core/handshaker/security/security_handshaker.cc +95 -119
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +36 -49
- data/src/core/lib/channel/channel_args.h +5 -0
- data/src/core/lib/channel/channel_stack.cc +3 -8
- data/src/core/lib/channel/channel_stack.h +2 -12
- data/src/core/lib/channel/connected_channel.cc +2 -2
- data/src/core/lib/channel/promise_based_filter.cc +120 -145
- data/src/core/lib/channel/promise_based_filter.h +6 -18
- data/src/core/lib/compression/compression.cc +3 -3
- data/src/core/lib/config/config_vars.cc +1 -8
- data/src/core/lib/config/config_vars.h +0 -6
- data/src/core/lib/debug/trace.cc +1 -2
- data/src/core/lib/debug/trace_flags.cc +2 -0
- data/src/core/lib/debug/trace_flags.h +1 -0
- data/src/core/lib/debug/trace_impl.h +4 -0
- data/src/core/lib/event_engine/ares_resolver.cc +47 -0
- data/src/core/lib/event_engine/ares_resolver.h +13 -6
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +10 -11
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +29 -28
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +0 -1
- data/src/core/lib/event_engine/default_event_engine.cc +6 -7
- data/src/core/lib/event_engine/event_engine.cc +8 -2
- data/src/core/lib/event_engine/event_engine_context.h +4 -2
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +32 -30
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +7 -21
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +17 -10
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +2 -0
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +7 -8
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +3 -2
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +10 -12
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +32 -6
- data/src/core/lib/event_engine/windows/iocp.cc +10 -9
- data/src/core/lib/event_engine/windows/win_socket.cc +14 -12
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +10 -8
- data/src/core/lib/event_engine/windows/windows_engine.cc +35 -40
- data/src/core/lib/event_engine/windows/windows_listener.cc +8 -11
- data/src/core/lib/experiments/config.cc +33 -7
- data/src/core/lib/experiments/config.h +55 -1
- data/src/core/lib/experiments/experiments.cc +15 -51
- data/src/core/lib/experiments/experiments.h +33 -49
- data/src/core/lib/gprpp/bitset.h +1 -1
- data/src/core/lib/gprpp/construct_destruct.h +2 -2
- data/src/core/lib/gprpp/debug_location.h +7 -0
- data/src/core/lib/gprpp/down_cast.h +2 -2
- data/src/core/lib/gprpp/dump_args.cc +8 -8
- data/src/core/lib/gprpp/dump_args.h +51 -3
- data/src/core/lib/gprpp/status_helper.cc +1 -1
- data/src/core/lib/gprpp/table.h +23 -15
- data/src/core/lib/gprpp/time.h +12 -17
- data/src/core/lib/gprpp/unique_type_name.h +28 -8
- data/src/core/lib/gprpp/work_serializer.cc +22 -17
- data/src/core/lib/iomgr/call_combiner.cc +28 -44
- data/src/core/lib/iomgr/call_combiner.h +7 -5
- data/src/core/lib/iomgr/cfstream_handle.cc +10 -10
- data/src/core/lib/iomgr/closure.h +5 -5
- data/src/core/lib/iomgr/combiner.cc +30 -39
- data/src/core/lib/iomgr/endpoint.h +2 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +21 -25
- data/src/core/lib/iomgr/error.cc +3 -3
- data/src/core/lib/iomgr/ev_apple.cc +3 -3
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +31 -38
- data/src/core/lib/iomgr/ev_poll_posix.cc +14 -14
- data/src/core/lib/iomgr/ev_posix.cc +5 -4
- data/src/core/lib/iomgr/ev_posix.h +3 -3
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +6 -6
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +9 -11
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +7 -10
- data/src/core/lib/iomgr/exec_ctx.cc +6 -6
- data/src/core/lib/iomgr/executor.cc +8 -5
- data/src/core/lib/iomgr/lockfree_event.cc +6 -9
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +13 -13
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -7
- data/src/core/lib/iomgr/tcp_client_posix.cc +6 -7
- data/src/core/lib/iomgr/tcp_posix.cc +30 -34
- data/src/core/lib/iomgr/tcp_server_posix.cc +20 -29
- data/src/core/lib/iomgr/tcp_windows.cc +8 -12
- data/src/core/lib/iomgr/timer_generic.cc +52 -61
- data/src/core/lib/iomgr/timer_manager.cc +4 -6
- data/src/core/lib/promise/activity.h +13 -2
- data/src/core/lib/promise/all_ok.h +15 -8
- data/src/core/lib/promise/cancel_callback.h +11 -7
- data/src/core/lib/promise/context.h +7 -7
- data/src/core/lib/promise/detail/join_state.h +418 -579
- data/src/core/lib/promise/detail/promise_factory.h +44 -27
- data/src/core/lib/promise/detail/promise_like.h +14 -5
- data/src/core/lib/promise/detail/seq_state.h +208 -614
- data/src/core/lib/promise/detail/status.h +34 -13
- data/src/core/lib/promise/for_each.h +25 -20
- data/src/core/lib/promise/if.h +19 -15
- data/src/core/lib/promise/interceptor_list.h +12 -13
- data/src/core/lib/promise/latch.h +9 -14
- data/src/core/lib/promise/loop.h +13 -8
- data/src/core/lib/promise/map.h +9 -8
- data/src/core/lib/promise/party.cc +81 -62
- data/src/core/lib/promise/party.h +68 -89
- data/src/core/lib/promise/pipe.h +2 -3
- data/src/core/lib/promise/poll.h +99 -33
- data/src/core/lib/promise/promise.h +11 -5
- data/src/core/lib/promise/race.h +10 -5
- data/src/core/lib/promise/seq.h +51 -36
- data/src/core/lib/promise/status_flag.h +146 -47
- data/src/core/lib/promise/try_join.h +34 -18
- data/src/core/lib/promise/try_seq.h +83 -46
- data/src/core/lib/resource_quota/arena.cc +19 -17
- data/src/core/lib/resource_quota/arena.h +30 -10
- data/src/core/lib/resource_quota/memory_quota.cc +14 -15
- data/src/core/lib/resource_quota/memory_quota.h +3 -2
- data/src/core/lib/resource_quota/periodic_update.cc +3 -2
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +13 -17
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +2 -0
- data/src/core/lib/security/context/security_context.cc +31 -28
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +7 -9
- data/src/core/lib/security/credentials/credentials.cc +11 -9
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -3
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +3 -5
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -14
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +19 -23
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +11 -18
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +16 -20
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +5 -6
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +2 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +5 -7
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -2
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +12 -8
- data/src/core/lib/security/security_connector/security_connector.cc +3 -3
- data/src/core/lib/security/security_connector/ssl_utils.cc +9 -6
- data/src/core/lib/security/transport/auth_filters.h +4 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +1 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +8 -11
- data/src/core/lib/slice/slice_refcount.h +4 -6
- data/src/core/lib/surface/call.cc +33 -26
- data/src/core/lib/surface/call.h +9 -18
- data/src/core/lib/surface/call_details.cc +4 -3
- data/src/core/lib/surface/call_log_batch.cc +4 -5
- data/src/core/lib/surface/call_utils.cc +5 -7
- data/src/core/lib/surface/channel.cc +32 -34
- data/src/core/lib/surface/channel_create.cc +15 -6
- data/src/core/lib/surface/channel_init.cc +257 -196
- data/src/core/lib/surface/channel_init.h +156 -21
- data/src/core/lib/surface/client_call.cc +32 -21
- data/src/core/lib/surface/client_call.h +12 -12
- data/src/core/lib/surface/completion_queue.cc +51 -64
- data/src/core/lib/surface/filter_stack_call.cc +15 -14
- data/src/core/lib/surface/init.cc +25 -7
- data/src/core/lib/surface/lame_client.cc +1 -2
- data/src/core/lib/surface/lame_client.h +2 -0
- data/src/core/lib/surface/legacy_channel.cc +9 -7
- data/src/core/lib/surface/metadata_array.cc +4 -3
- data/src/core/lib/surface/server_call.cc +2 -0
- data/src/core/lib/surface/server_call.h +8 -6
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +7 -9
- data/src/core/lib/transport/bdp_estimator.h +5 -5
- data/src/core/lib/transport/call_arena_allocator.h +2 -0
- data/src/core/lib/transport/call_filters.cc +72 -319
- data/src/core/lib/transport/call_filters.h +347 -770
- data/src/core/lib/transport/call_spine.cc +99 -72
- data/src/core/lib/transport/call_spine.h +23 -73
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +957 -0
- data/src/core/lib/transport/connectivity_state.cc +28 -25
- data/src/core/lib/transport/interception_chain.cc +6 -14
- data/src/core/lib/transport/interception_chain.h +34 -26
- data/src/core/lib/transport/metadata.cc +27 -3
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.h +5 -0
- data/src/core/lib/transport/transport.h +9 -5
- data/src/core/load_balancing/child_policy_handler.cc +24 -27
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -2
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +3 -0
- data/src/core/load_balancing/grpclb/grpclb.cc +95 -106
- data/src/core/load_balancing/health_check_client.cc +35 -41
- data/src/core/load_balancing/lb_policy.h +42 -22
- data/src/core/load_balancing/oob_backend_metric.cc +4 -4
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +86 -104
- data/src/core/load_balancing/pick_first/pick_first.cc +156 -180
- data/src/core/load_balancing/priority/priority.cc +63 -74
- data/src/core/load_balancing/ring_hash/ring_hash.cc +34 -40
- data/src/core/load_balancing/rls/rls.cc +136 -145
- data/src/core/load_balancing/round_robin/round_robin.cc +39 -38
- data/src/core/load_balancing/subchannel_interface.h +4 -0
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +75 -74
- data/src/core/load_balancing/weighted_target/weighted_target.cc +47 -55
- data/src/core/load_balancing/xds/cds.cc +22 -22
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +100 -75
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +31 -45
- data/src/core/load_balancing/xds/xds_override_host.cc +68 -91
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +19 -18
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +9 -0
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +14 -24
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +6 -6
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +4 -5
- data/src/core/resolver/dns/native/dns_resolver.cc +6 -7
- data/src/core/resolver/endpoint_addresses.h +3 -0
- data/src/core/resolver/resolver.h +0 -3
- data/src/core/resolver/xds/xds_dependency_manager.cc +67 -57
- data/src/core/resolver/xds/xds_dependency_manager.h +4 -0
- data/src/core/resolver/xds/xds_resolver.cc +72 -45
- data/src/core/resolver/xds/xds_resolver_attributes.h +5 -1
- data/src/core/server/server.cc +74 -78
- data/src/core/server/server_call_tracer_filter.cc +3 -2
- data/src/core/server/server_config_selector_filter.cc +6 -2
- data/src/core/server/xds_channel_stack_modifier.cc +1 -1
- data/src/core/server/xds_server_config_fetcher.cc +40 -44
- data/src/core/service_config/service_config_call_data.h +2 -1
- data/src/core/service_config/service_config_channel_arg_filter.cc +3 -2
- data/src/core/telemetry/call_tracer.cc +34 -0
- data/src/core/telemetry/call_tracer.h +15 -0
- data/src/core/telemetry/metrics.h +13 -8
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -7
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +8 -10
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +6 -9
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +13 -21
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +6 -8
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +6 -8
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +5 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -6
- data/src/core/tsi/fake_transport_security.cc +7 -7
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +5 -7
- data/src/core/tsi/ssl_transport_security.cc +44 -29
- data/src/core/tsi/ssl_transport_security_utils.cc +3 -4
- data/src/core/util/android/log.cc +0 -12
- data/src/core/util/http_client/httpcli.cc +21 -33
- data/src/core/util/http_client/httpcli.h +3 -4
- data/src/core/util/http_client/parser.cc +3 -3
- data/src/core/util/latent_see.cc +113 -0
- data/src/core/util/latent_see.h +214 -0
- data/src/core/util/linux/cpu.cc +8 -7
- data/src/core/util/log.cc +0 -18
- data/src/core/util/posix/cpu.cc +3 -2
- data/src/core/util/posix/tmpfile.cc +5 -5
- data/src/core/util/time_precise.cc +4 -3
- data/src/core/{xds/grpc → util}/upb_utils.h +3 -5
- data/src/core/util/useful.h +39 -44
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +1 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +0 -125
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +2 -27
- data/src/core/xds/grpc/xds_certificate_provider.cc +2 -1
- data/src/core/xds/grpc/xds_certificate_provider.h +3 -1
- data/src/core/xds/grpc/xds_client_grpc.cc +13 -14
- data/src/core/xds/grpc/xds_cluster.cc +0 -723
- data/src/core/xds/grpc/xds_cluster.h +2 -37
- data/src/core/xds/grpc/xds_cluster_parser.cc +730 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +57 -0
- data/src/core/xds/grpc/xds_common_types.cc +33 -437
- data/src/core/xds/grpc/xds_common_types.h +7 -24
- data/src/core/xds/grpc/xds_common_types_parser.cc +467 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +54 -0
- data/src/core/xds/grpc/xds_endpoint.cc +0 -419
- data/src/core/xds/grpc/xds_endpoint.h +0 -24
- data/src/core/xds/grpc/xds_endpoint_parser.cc +439 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +48 -0
- data/src/core/xds/grpc/xds_health_status.cc +0 -2
- data/src/core/xds/grpc/xds_health_status.h +0 -2
- data/src/core/xds/grpc/xds_http_fault_filter.cc +6 -1
- data/src/core/xds/grpc/xds_http_fault_filter.h +2 -1
- data/src/core/xds/grpc/{xds_http_filters.h → xds_http_filter.h} +6 -63
- data/src/core/xds/grpc/{xds_http_filters.cc → xds_http_filter_registry.cc} +2 -1
- data/src/core/xds/grpc/xds_http_filter_registry.h +98 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +5 -1
- data/src/core/xds/grpc/xds_http_rbac_filter.h +2 -1
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +8 -2
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +2 -1
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +4 -5
- data/src/core/xds/grpc/xds_listener.cc +18 -982
- data/src/core/xds/grpc/xds_listener.h +1 -33
- data/src/core/xds/grpc/xds_listener_parser.cc +997 -0
- data/src/core/xds/grpc/xds_listener_parser.h +60 -0
- data/src/core/xds/grpc/xds_route_config.cc +0 -915
- data/src/core/xds/grpc/xds_route_config.h +6 -38
- data/src/core/xds/grpc/xds_route_config_parser.cc +969 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +80 -0
- data/src/core/xds/grpc/xds_routing.cc +1 -1
- data/src/core/xds/grpc/xds_routing.h +1 -1
- data/src/core/xds/grpc/xds_server_grpc.cc +161 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +4 -5
- data/src/core/xds/xds_client/xds_api.cc +10 -10
- data/src/core/xds/xds_client/xds_client.cc +144 -177
- data/src/core/xds/xds_client/xds_client_stats.cc +21 -24
- data/src/ruby/ext/grpc/rb_call.c +2 -2
- data/src/ruby/ext/grpc/rb_channel.c +14 -14
- data/src/ruby/ext/grpc/rb_channel_args.c +1 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +3 -3
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -2
- data/src/ruby/ext/grpc/rb_grpc.c +4 -4
- data/src/ruby/ext/grpc/rb_grpc.h +8 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +0 -4
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +0 -6
- data/src/ruby/ext/grpc/rb_server.c +1 -1
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/third_party/upb/upb/base/string_view.h +1 -1
- data/third_party/upb/upb/json/decode.c +1 -0
- data/third_party/upb/upb/mem/arena.c +67 -2
- data/third_party/upb/upb/mem/arena.h +11 -9
- data/third_party/upb/upb/mem/internal/arena.h +11 -8
- data/third_party/upb/upb/message/accessors.c +6 -5
- data/third_party/upb/upb/message/accessors.h +49 -38
- data/third_party/upb/upb/message/array.c +26 -3
- data/third_party/upb/upb/message/array.h +17 -9
- data/third_party/upb/upb/message/compat.c +5 -5
- data/third_party/upb/upb/message/compat.h +3 -3
- data/third_party/upb/upb/message/copy.c +12 -13
- data/third_party/upb/upb/message/internal/accessors.h +45 -35
- data/third_party/upb/upb/message/internal/array.h +23 -15
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +11 -12
- data/third_party/upb/upb/message/internal/extension.h +9 -12
- data/third_party/upb/upb/message/internal/map.h +15 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
- data/third_party/upb/upb/message/internal/message.c +20 -3
- data/third_party/upb/upb/message/internal/message.h +10 -0
- data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
- data/third_party/upb/upb/message/internal/types.h +41 -1
- data/third_party/upb/upb/message/map.c +25 -0
- data/third_party/upb/upb/message/map.h +11 -7
- data/third_party/upb/upb/message/message.c +83 -4
- data/third_party/upb/upb/message/message.h +20 -1
- data/third_party/upb/upb/message/tagged_ptr.h +4 -8
- data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +12 -1
- data/third_party/upb/upb/mini_descriptor/link.c +16 -18
- data/third_party/upb/upb/mini_table/enum.h +2 -4
- data/third_party/upb/upb/mini_table/extension.h +4 -12
- data/third_party/upb/upb/mini_table/field.h +12 -38
- data/third_party/upb/upb/mini_table/file.h +6 -19
- data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
- data/third_party/upb/upb/mini_table/internal/extension.h +9 -9
- data/third_party/upb/upb/mini_table/internal/field.h +23 -23
- data/third_party/upb/upb/mini_table/internal/file.h +7 -7
- data/third_party/upb/upb/mini_table/internal/message.h +51 -27
- data/third_party/upb/upb/mini_table/internal/sub.h +4 -4
- data/third_party/upb/upb/mini_table/message.h +13 -22
- data/third_party/upb/upb/mini_table/sub.h +4 -12
- data/third_party/upb/upb/port/def.inc +12 -6
- data/third_party/upb/upb/port/undef.inc +1 -1
- data/third_party/upb/upb/reflection/def.hpp +27 -0
- data/third_party/upb/upb/reflection/def_pool.h +2 -2
- data/third_party/upb/upb/reflection/enum_def.c +5 -1
- data/third_party/upb/upb/reflection/enum_def.h +1 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
- data/third_party/upb/upb/reflection/field_def.c +61 -24
- data/third_party/upb/upb/reflection/field_def.h +3 -0
- data/third_party/upb/upb/reflection/file_def.c +30 -4
- data/third_party/upb/upb/reflection/file_def.h +3 -0
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
- data/third_party/upb/upb/reflection/message.c +19 -7
- data/third_party/upb/upb/reflection/message_def.c +14 -9
- data/third_party/upb/upb/reflection/method_def.h +8 -7
- data/third_party/upb/upb/reflection/service_def.h +6 -5
- data/third_party/upb/upb/text/encode.c +10 -3
- data/third_party/upb/upb/wire/decode.c +91 -57
- data/third_party/upb/upb/wire/decode.h +11 -1
- data/third_party/upb/upb/wire/encode.c +48 -30
- data/third_party/upb/upb/wire/encode.h +9 -1
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +25 -29
- data/third_party/upb/upb/wire/internal/reader.h +3 -3
- data/third_party/upb/upb/wire/reader.c +1 -2
- data/third_party/upb/upb/wire/reader.h +4 -8
- metadata +31 -9
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/lib/event_engine/trace.h +0 -37
- data/src/core/lib/surface/api_trace.h +0 -50
@@ -102,11 +102,13 @@ struct SeqState<Traits, P, F0> {
|
|
102
102
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
103
103
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
104
104
|
|
105
|
-
SeqState(P&& p, F0&& f0,
|
105
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0,
|
106
|
+
DebugLocation whence) noexcept
|
107
|
+
: whence(whence) {
|
106
108
|
Construct(&prior.current_promise, std::forward<P>(p));
|
107
109
|
Construct(&prior.next_factory, std::forward<F0>(f0));
|
108
110
|
}
|
109
|
-
~SeqState() {
|
111
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
110
112
|
switch (state) {
|
111
113
|
case State::kState0:
|
112
114
|
Destruct(&prior.current_promise);
|
@@ -118,29 +120,22 @@ struct SeqState<Traits, P, F0> {
|
|
118
120
|
tail0:
|
119
121
|
Destruct(&prior.next_factory);
|
120
122
|
}
|
121
|
-
SeqState(const SeqState& other) noexcept
|
123
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
122
124
|
: state(other.state), whence(other.whence) {
|
123
|
-
|
125
|
+
DCHECK(state == State::kState0);
|
124
126
|
Construct(&prior.current_promise, other.prior.current_promise);
|
125
127
|
Construct(&prior.next_factory, other.prior.next_factory);
|
126
128
|
}
|
127
129
|
SeqState& operator=(const SeqState& other) = delete;
|
128
|
-
SeqState(SeqState&& other) noexcept
|
130
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
129
131
|
: state(other.state), whence(other.whence) {
|
130
|
-
|
131
|
-
|
132
|
-
Construct(&prior.current_promise,
|
133
|
-
std::move(other.prior.current_promise));
|
134
|
-
goto tail0;
|
135
|
-
case State::kState1:
|
136
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
137
|
-
return;
|
138
|
-
}
|
139
|
-
tail0:
|
132
|
+
DCHECK(state == State::kState0);
|
133
|
+
Construct(&prior.current_promise, std::move(other.prior.current_promise));
|
140
134
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
141
135
|
}
|
142
|
-
SeqState& operator=(SeqState&& other) =
|
143
|
-
|
136
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
137
|
+
delete;
|
138
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
144
139
|
switch (state) {
|
145
140
|
case State::kState0: {
|
146
141
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -230,13 +225,14 @@ struct SeqState<Traits, P, F0, F1> {
|
|
230
225
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
231
226
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
232
227
|
|
233
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
228
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
229
|
+
DebugLocation whence) noexcept
|
234
230
|
: whence(whence) {
|
235
231
|
Construct(&prior.prior.current_promise, std::forward<P>(p));
|
236
232
|
Construct(&prior.prior.next_factory, std::forward<F0>(f0));
|
237
233
|
Construct(&prior.next_factory, std::forward<F1>(f1));
|
238
234
|
}
|
239
|
-
~SeqState() {
|
235
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
240
236
|
switch (state) {
|
241
237
|
case State::kState0:
|
242
238
|
Destruct(&prior.prior.current_promise);
|
@@ -253,37 +249,26 @@ struct SeqState<Traits, P, F0, F1> {
|
|
253
249
|
tail1:
|
254
250
|
Destruct(&prior.next_factory);
|
255
251
|
}
|
256
|
-
SeqState(const SeqState& other) noexcept
|
252
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
257
253
|
: state(other.state), whence(other.whence) {
|
258
|
-
|
259
|
-
Construct(&prior.current_promise, other.prior.current_promise);
|
254
|
+
DCHECK(state == State::kState0);
|
255
|
+
Construct(&prior.prior.current_promise, other.prior.prior.current_promise);
|
260
256
|
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
261
257
|
Construct(&prior.next_factory, other.prior.next_factory);
|
262
258
|
}
|
263
259
|
SeqState& operator=(const SeqState& other) = delete;
|
264
|
-
SeqState(SeqState&& other) noexcept
|
260
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
265
261
|
: state(other.state), whence(other.whence) {
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
std::move(other.prior.prior.current_promise));
|
270
|
-
goto tail0;
|
271
|
-
case State::kState1:
|
272
|
-
Construct(&prior.current_promise,
|
273
|
-
std::move(other.prior.current_promise));
|
274
|
-
goto tail1;
|
275
|
-
case State::kState2:
|
276
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
277
|
-
return;
|
278
|
-
}
|
279
|
-
tail0:
|
262
|
+
DCHECK(state == State::kState0);
|
263
|
+
Construct(&prior.prior.current_promise,
|
264
|
+
std::move(other.prior.prior.current_promise));
|
280
265
|
Construct(&prior.prior.next_factory,
|
281
266
|
std::move(other.prior.prior.next_factory));
|
282
|
-
tail1:
|
283
267
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
284
268
|
}
|
285
|
-
SeqState& operator=(SeqState&& other) =
|
286
|
-
|
269
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
270
|
+
delete;
|
271
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
287
272
|
switch (state) {
|
288
273
|
case State::kState0: {
|
289
274
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -417,14 +402,16 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
417
402
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
418
403
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
419
404
|
|
420
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
405
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
406
|
+
F2&& f2,
|
407
|
+
DebugLocation whence) noexcept
|
421
408
|
: whence(whence) {
|
422
409
|
Construct(&prior.prior.prior.current_promise, std::forward<P>(p));
|
423
410
|
Construct(&prior.prior.prior.next_factory, std::forward<F0>(f0));
|
424
411
|
Construct(&prior.prior.next_factory, std::forward<F1>(f1));
|
425
412
|
Construct(&prior.next_factory, std::forward<F2>(f2));
|
426
413
|
}
|
427
|
-
~SeqState() {
|
414
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
428
415
|
switch (state) {
|
429
416
|
case State::kState0:
|
430
417
|
Destruct(&prior.prior.prior.current_promise);
|
@@ -446,46 +433,31 @@ struct SeqState<Traits, P, F0, F1, F2> {
|
|
446
433
|
tail2:
|
447
434
|
Destruct(&prior.next_factory);
|
448
435
|
}
|
449
|
-
SeqState(const SeqState& other) noexcept
|
436
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
450
437
|
: state(other.state), whence(other.whence) {
|
451
|
-
|
452
|
-
Construct(&prior.
|
438
|
+
DCHECK(state == State::kState0);
|
439
|
+
Construct(&prior.prior.prior.current_promise,
|
440
|
+
other.prior.prior.prior.current_promise);
|
453
441
|
Construct(&prior.prior.prior.next_factory,
|
454
442
|
other.prior.prior.prior.next_factory);
|
455
443
|
Construct(&prior.prior.next_factory, other.prior.prior.next_factory);
|
456
444
|
Construct(&prior.next_factory, other.prior.next_factory);
|
457
445
|
}
|
458
446
|
SeqState& operator=(const SeqState& other) = delete;
|
459
|
-
SeqState(SeqState&& other) noexcept
|
447
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
460
448
|
: state(other.state), whence(other.whence) {
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
std::move(other.prior.prior.prior.current_promise));
|
465
|
-
goto tail0;
|
466
|
-
case State::kState1:
|
467
|
-
Construct(&prior.prior.current_promise,
|
468
|
-
std::move(other.prior.prior.current_promise));
|
469
|
-
goto tail1;
|
470
|
-
case State::kState2:
|
471
|
-
Construct(&prior.current_promise,
|
472
|
-
std::move(other.prior.current_promise));
|
473
|
-
goto tail2;
|
474
|
-
case State::kState3:
|
475
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
476
|
-
return;
|
477
|
-
}
|
478
|
-
tail0:
|
449
|
+
DCHECK(state == State::kState0);
|
450
|
+
Construct(&prior.prior.prior.current_promise,
|
451
|
+
std::move(other.prior.prior.prior.current_promise));
|
479
452
|
Construct(&prior.prior.prior.next_factory,
|
480
453
|
std::move(other.prior.prior.prior.next_factory));
|
481
|
-
tail1:
|
482
454
|
Construct(&prior.prior.next_factory,
|
483
455
|
std::move(other.prior.prior.next_factory));
|
484
|
-
tail2:
|
485
456
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
486
457
|
}
|
487
|
-
SeqState& operator=(SeqState&& other) =
|
488
|
-
|
458
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
459
|
+
delete;
|
460
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
489
461
|
switch (state) {
|
490
462
|
case State::kState0: {
|
491
463
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -663,8 +635,9 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
663
635
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
664
636
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
665
637
|
|
666
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
667
|
-
|
638
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
639
|
+
F2&& f2, F3&& f3,
|
640
|
+
DebugLocation whence) noexcept
|
668
641
|
: whence(whence) {
|
669
642
|
Construct(&prior.prior.prior.prior.current_promise, std::forward<P>(p));
|
670
643
|
Construct(&prior.prior.prior.prior.next_factory, std::forward<F0>(f0));
|
@@ -672,7 +645,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
672
645
|
Construct(&prior.prior.next_factory, std::forward<F2>(f2));
|
673
646
|
Construct(&prior.next_factory, std::forward<F3>(f3));
|
674
647
|
}
|
675
|
-
~SeqState() {
|
648
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
676
649
|
switch (state) {
|
677
650
|
case State::kState0:
|
678
651
|
Destruct(&prior.prior.prior.prior.current_promise);
|
@@ -699,10 +672,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
699
672
|
tail3:
|
700
673
|
Destruct(&prior.next_factory);
|
701
674
|
}
|
702
|
-
SeqState(const SeqState& other) noexcept
|
675
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
703
676
|
: state(other.state), whence(other.whence) {
|
704
|
-
|
705
|
-
Construct(&prior.
|
677
|
+
DCHECK(state == State::kState0);
|
678
|
+
Construct(&prior.prior.prior.prior.current_promise,
|
679
|
+
other.prior.prior.prior.prior.current_promise);
|
706
680
|
Construct(&prior.prior.prior.prior.next_factory,
|
707
681
|
other.prior.prior.prior.prior.next_factory);
|
708
682
|
Construct(&prior.prior.prior.next_factory,
|
@@ -711,43 +685,22 @@ struct SeqState<Traits, P, F0, F1, F2, F3> {
|
|
711
685
|
Construct(&prior.next_factory, other.prior.next_factory);
|
712
686
|
}
|
713
687
|
SeqState& operator=(const SeqState& other) = delete;
|
714
|
-
SeqState(SeqState&& other) noexcept
|
688
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
715
689
|
: state(other.state), whence(other.whence) {
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
720
|
-
goto tail0;
|
721
|
-
case State::kState1:
|
722
|
-
Construct(&prior.prior.prior.current_promise,
|
723
|
-
std::move(other.prior.prior.prior.current_promise));
|
724
|
-
goto tail1;
|
725
|
-
case State::kState2:
|
726
|
-
Construct(&prior.prior.current_promise,
|
727
|
-
std::move(other.prior.prior.current_promise));
|
728
|
-
goto tail2;
|
729
|
-
case State::kState3:
|
730
|
-
Construct(&prior.current_promise,
|
731
|
-
std::move(other.prior.current_promise));
|
732
|
-
goto tail3;
|
733
|
-
case State::kState4:
|
734
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
735
|
-
return;
|
736
|
-
}
|
737
|
-
tail0:
|
690
|
+
DCHECK(state == State::kState0);
|
691
|
+
Construct(&prior.prior.prior.prior.current_promise,
|
692
|
+
std::move(other.prior.prior.prior.prior.current_promise));
|
738
693
|
Construct(&prior.prior.prior.prior.next_factory,
|
739
694
|
std::move(other.prior.prior.prior.prior.next_factory));
|
740
|
-
tail1:
|
741
695
|
Construct(&prior.prior.prior.next_factory,
|
742
696
|
std::move(other.prior.prior.prior.next_factory));
|
743
|
-
tail2:
|
744
697
|
Construct(&prior.prior.next_factory,
|
745
698
|
std::move(other.prior.prior.next_factory));
|
746
|
-
tail3:
|
747
699
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
748
700
|
}
|
749
|
-
SeqState& operator=(SeqState&& other) =
|
750
|
-
|
701
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
702
|
+
delete;
|
703
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
751
704
|
switch (state) {
|
752
705
|
case State::kState0: {
|
753
706
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -976,8 +929,9 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
976
929
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
977
930
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
978
931
|
|
979
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
980
|
-
|
932
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
933
|
+
F2&& f2, F3&& f3, F4&& f4,
|
934
|
+
DebugLocation whence) noexcept
|
981
935
|
: whence(whence) {
|
982
936
|
Construct(&prior.prior.prior.prior.prior.current_promise,
|
983
937
|
std::forward<P>(p));
|
@@ -988,7 +942,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
988
942
|
Construct(&prior.prior.next_factory, std::forward<F3>(f3));
|
989
943
|
Construct(&prior.next_factory, std::forward<F4>(f4));
|
990
944
|
}
|
991
|
-
~SeqState() {
|
945
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
992
946
|
switch (state) {
|
993
947
|
case State::kState0:
|
994
948
|
Destruct(&prior.prior.prior.prior.prior.current_promise);
|
@@ -1020,10 +974,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1020
974
|
tail4:
|
1021
975
|
Destruct(&prior.next_factory);
|
1022
976
|
}
|
1023
|
-
SeqState(const SeqState& other) noexcept
|
977
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
1024
978
|
: state(other.state), whence(other.whence) {
|
1025
|
-
|
1026
|
-
Construct(&prior.
|
979
|
+
DCHECK(state == State::kState0);
|
980
|
+
Construct(&prior.prior.prior.prior.prior.current_promise,
|
981
|
+
other.prior.prior.prior.prior.prior.current_promise);
|
1027
982
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1028
983
|
other.prior.prior.prior.prior.prior.next_factory);
|
1029
984
|
Construct(&prior.prior.prior.prior.next_factory,
|
@@ -1034,51 +989,24 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4> {
|
|
1034
989
|
Construct(&prior.next_factory, other.prior.next_factory);
|
1035
990
|
}
|
1036
991
|
SeqState& operator=(const SeqState& other) = delete;
|
1037
|
-
SeqState(SeqState&& other) noexcept
|
992
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
1038
993
|
: state(other.state), whence(other.whence) {
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
&prior.prior.prior.prior.prior.current_promise,
|
1043
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
1044
|
-
goto tail0;
|
1045
|
-
case State::kState1:
|
1046
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
1047
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
1048
|
-
goto tail1;
|
1049
|
-
case State::kState2:
|
1050
|
-
Construct(&prior.prior.prior.current_promise,
|
1051
|
-
std::move(other.prior.prior.prior.current_promise));
|
1052
|
-
goto tail2;
|
1053
|
-
case State::kState3:
|
1054
|
-
Construct(&prior.prior.current_promise,
|
1055
|
-
std::move(other.prior.prior.current_promise));
|
1056
|
-
goto tail3;
|
1057
|
-
case State::kState4:
|
1058
|
-
Construct(&prior.current_promise,
|
1059
|
-
std::move(other.prior.current_promise));
|
1060
|
-
goto tail4;
|
1061
|
-
case State::kState5:
|
1062
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
1063
|
-
return;
|
1064
|
-
}
|
1065
|
-
tail0:
|
994
|
+
DCHECK(state == State::kState0);
|
995
|
+
Construct(&prior.prior.prior.prior.prior.current_promise,
|
996
|
+
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
1066
997
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1067
998
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
1068
|
-
tail1:
|
1069
999
|
Construct(&prior.prior.prior.prior.next_factory,
|
1070
1000
|
std::move(other.prior.prior.prior.prior.next_factory));
|
1071
|
-
tail2:
|
1072
1001
|
Construct(&prior.prior.prior.next_factory,
|
1073
1002
|
std::move(other.prior.prior.prior.next_factory));
|
1074
|
-
tail3:
|
1075
1003
|
Construct(&prior.prior.next_factory,
|
1076
1004
|
std::move(other.prior.prior.next_factory));
|
1077
|
-
tail4:
|
1078
1005
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
1079
1006
|
}
|
1080
|
-
SeqState& operator=(SeqState&& other) =
|
1081
|
-
|
1007
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
1008
|
+
delete;
|
1009
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
1082
1010
|
switch (state) {
|
1083
1011
|
case State::kState0: {
|
1084
1012
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -1353,8 +1281,10 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1353
1281
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
1354
1282
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
1355
1283
|
|
1356
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
1357
|
-
|
1284
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
1285
|
+
F2&& f2, F3&& f3, F4&& f4,
|
1286
|
+
F5&& f5,
|
1287
|
+
DebugLocation whence) noexcept
|
1358
1288
|
: whence(whence) {
|
1359
1289
|
Construct(&prior.prior.prior.prior.prior.prior.current_promise,
|
1360
1290
|
std::forward<P>(p));
|
@@ -1367,7 +1297,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1367
1297
|
Construct(&prior.prior.next_factory, std::forward<F4>(f4));
|
1368
1298
|
Construct(&prior.next_factory, std::forward<F5>(f5));
|
1369
1299
|
}
|
1370
|
-
~SeqState() {
|
1300
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
1371
1301
|
switch (state) {
|
1372
1302
|
case State::kState0:
|
1373
1303
|
Destruct(&prior.prior.prior.prior.prior.prior.current_promise);
|
@@ -1404,10 +1334,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1404
1334
|
tail5:
|
1405
1335
|
Destruct(&prior.next_factory);
|
1406
1336
|
}
|
1407
|
-
SeqState(const SeqState& other) noexcept
|
1337
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
1408
1338
|
: state(other.state), whence(other.whence) {
|
1409
|
-
|
1410
|
-
Construct(&prior.
|
1339
|
+
DCHECK(state == State::kState0);
|
1340
|
+
Construct(&prior.prior.prior.prior.prior.prior.current_promise,
|
1341
|
+
other.prior.prior.prior.prior.prior.prior.current_promise);
|
1411
1342
|
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
1412
1343
|
other.prior.prior.prior.prior.prior.prior.next_factory);
|
1413
1344
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
@@ -1420,61 +1351,28 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5> {
|
|
1420
1351
|
Construct(&prior.next_factory, other.prior.next_factory);
|
1421
1352
|
}
|
1422
1353
|
SeqState& operator=(const SeqState& other) = delete;
|
1423
|
-
SeqState(SeqState&& other) noexcept
|
1354
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
1424
1355
|
: state(other.state), whence(other.whence) {
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
std::move(
|
1430
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
1431
|
-
goto tail0;
|
1432
|
-
case State::kState1:
|
1433
|
-
Construct(
|
1434
|
-
&prior.prior.prior.prior.prior.current_promise,
|
1435
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
1436
|
-
goto tail1;
|
1437
|
-
case State::kState2:
|
1438
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
1439
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
1440
|
-
goto tail2;
|
1441
|
-
case State::kState3:
|
1442
|
-
Construct(&prior.prior.prior.current_promise,
|
1443
|
-
std::move(other.prior.prior.prior.current_promise));
|
1444
|
-
goto tail3;
|
1445
|
-
case State::kState4:
|
1446
|
-
Construct(&prior.prior.current_promise,
|
1447
|
-
std::move(other.prior.prior.current_promise));
|
1448
|
-
goto tail4;
|
1449
|
-
case State::kState5:
|
1450
|
-
Construct(&prior.current_promise,
|
1451
|
-
std::move(other.prior.current_promise));
|
1452
|
-
goto tail5;
|
1453
|
-
case State::kState6:
|
1454
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
1455
|
-
return;
|
1456
|
-
}
|
1457
|
-
tail0:
|
1356
|
+
DCHECK(state == State::kState0);
|
1357
|
+
Construct(
|
1358
|
+
&prior.prior.prior.prior.prior.prior.current_promise,
|
1359
|
+
std::move(other.prior.prior.prior.prior.prior.prior.current_promise));
|
1458
1360
|
Construct(
|
1459
1361
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
1460
1362
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
1461
|
-
tail1:
|
1462
1363
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1463
1364
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
1464
|
-
tail2:
|
1465
1365
|
Construct(&prior.prior.prior.prior.next_factory,
|
1466
1366
|
std::move(other.prior.prior.prior.prior.next_factory));
|
1467
|
-
tail3:
|
1468
1367
|
Construct(&prior.prior.prior.next_factory,
|
1469
1368
|
std::move(other.prior.prior.prior.next_factory));
|
1470
|
-
tail4:
|
1471
1369
|
Construct(&prior.prior.next_factory,
|
1472
1370
|
std::move(other.prior.prior.next_factory));
|
1473
|
-
tail5:
|
1474
1371
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
1475
1372
|
}
|
1476
|
-
SeqState& operator=(SeqState&& other) =
|
1477
|
-
|
1373
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
1374
|
+
delete;
|
1375
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
1478
1376
|
switch (state) {
|
1479
1377
|
case State::kState0: {
|
1480
1378
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -1796,8 +1694,10 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1796
1694
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
1797
1695
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
1798
1696
|
|
1799
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
1800
|
-
|
1697
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
1698
|
+
F2&& f2, F3&& f3, F4&& f4,
|
1699
|
+
F5&& f5, F6&& f6,
|
1700
|
+
DebugLocation whence) noexcept
|
1801
1701
|
: whence(whence) {
|
1802
1702
|
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
1803
1703
|
std::forward<P>(p));
|
@@ -1812,7 +1712,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1812
1712
|
Construct(&prior.prior.next_factory, std::forward<F5>(f5));
|
1813
1713
|
Construct(&prior.next_factory, std::forward<F6>(f6));
|
1814
1714
|
}
|
1815
|
-
~SeqState() {
|
1715
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
1816
1716
|
switch (state) {
|
1817
1717
|
case State::kState0:
|
1818
1718
|
Destruct(&prior.prior.prior.prior.prior.prior.prior.current_promise);
|
@@ -1854,10 +1754,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1854
1754
|
tail6:
|
1855
1755
|
Destruct(&prior.next_factory);
|
1856
1756
|
}
|
1857
|
-
SeqState(const SeqState& other) noexcept
|
1757
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
1858
1758
|
: state(other.state), whence(other.whence) {
|
1859
|
-
|
1860
|
-
Construct(&prior.
|
1759
|
+
DCHECK(state == State::kState0);
|
1760
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
1761
|
+
other.prior.prior.prior.prior.prior.prior.prior.current_promise);
|
1861
1762
|
Construct(&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
1862
1763
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
1863
1764
|
Construct(&prior.prior.prior.prior.prior.prior.next_factory,
|
@@ -1872,71 +1773,33 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6> {
|
|
1872
1773
|
Construct(&prior.next_factory, other.prior.next_factory);
|
1873
1774
|
}
|
1874
1775
|
SeqState& operator=(const SeqState& other) = delete;
|
1875
|
-
SeqState(SeqState&& other) noexcept
|
1776
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
1876
1777
|
: state(other.state), whence(other.whence) {
|
1877
|
-
|
1878
|
-
|
1879
|
-
|
1880
|
-
|
1881
|
-
|
1882
|
-
goto tail0;
|
1883
|
-
case State::kState1:
|
1884
|
-
Construct(
|
1885
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
1886
|
-
std::move(
|
1887
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
1888
|
-
goto tail1;
|
1889
|
-
case State::kState2:
|
1890
|
-
Construct(
|
1891
|
-
&prior.prior.prior.prior.prior.current_promise,
|
1892
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
1893
|
-
goto tail2;
|
1894
|
-
case State::kState3:
|
1895
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
1896
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
1897
|
-
goto tail3;
|
1898
|
-
case State::kState4:
|
1899
|
-
Construct(&prior.prior.prior.current_promise,
|
1900
|
-
std::move(other.prior.prior.prior.current_promise));
|
1901
|
-
goto tail4;
|
1902
|
-
case State::kState5:
|
1903
|
-
Construct(&prior.prior.current_promise,
|
1904
|
-
std::move(other.prior.prior.current_promise));
|
1905
|
-
goto tail5;
|
1906
|
-
case State::kState6:
|
1907
|
-
Construct(&prior.current_promise,
|
1908
|
-
std::move(other.prior.current_promise));
|
1909
|
-
goto tail6;
|
1910
|
-
case State::kState7:
|
1911
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
1912
|
-
return;
|
1913
|
-
}
|
1914
|
-
tail0:
|
1778
|
+
DCHECK(state == State::kState0);
|
1779
|
+
Construct(
|
1780
|
+
&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
1781
|
+
std::move(
|
1782
|
+
other.prior.prior.prior.prior.prior.prior.prior.current_promise));
|
1915
1783
|
Construct(
|
1916
1784
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
1917
1785
|
std::move(
|
1918
1786
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
1919
|
-
tail1:
|
1920
1787
|
Construct(
|
1921
1788
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
1922
1789
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
1923
|
-
tail2:
|
1924
1790
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
1925
1791
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
1926
|
-
tail3:
|
1927
1792
|
Construct(&prior.prior.prior.prior.next_factory,
|
1928
1793
|
std::move(other.prior.prior.prior.prior.next_factory));
|
1929
|
-
tail4:
|
1930
1794
|
Construct(&prior.prior.prior.next_factory,
|
1931
1795
|
std::move(other.prior.prior.prior.next_factory));
|
1932
|
-
tail5:
|
1933
1796
|
Construct(&prior.prior.next_factory,
|
1934
1797
|
std::move(other.prior.prior.next_factory));
|
1935
|
-
tail6:
|
1936
1798
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
1937
1799
|
}
|
1938
|
-
SeqState& operator=(SeqState&& other) =
|
1939
|
-
|
1800
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
1801
|
+
delete;
|
1802
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
1940
1803
|
switch (state) {
|
1941
1804
|
case State::kState0: {
|
1942
1805
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -2306,8 +2169,10 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2306
2169
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
2307
2170
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
2308
2171
|
|
2309
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
2310
|
-
|
2172
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
2173
|
+
F2&& f2, F3&& f3, F4&& f4,
|
2174
|
+
F5&& f5, F6&& f6, F7&& f7,
|
2175
|
+
DebugLocation whence) noexcept
|
2311
2176
|
: whence(whence) {
|
2312
2177
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2313
2178
|
std::forward<P>(p));
|
@@ -2324,7 +2189,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2324
2189
|
Construct(&prior.prior.next_factory, std::forward<F6>(f6));
|
2325
2190
|
Construct(&prior.next_factory, std::forward<F7>(f7));
|
2326
2191
|
}
|
2327
|
-
~SeqState() {
|
2192
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
2328
2193
|
switch (state) {
|
2329
2194
|
case State::kState0:
|
2330
2195
|
Destruct(
|
@@ -2372,10 +2237,12 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2372
2237
|
tail7:
|
2373
2238
|
Destruct(&prior.next_factory);
|
2374
2239
|
}
|
2375
|
-
SeqState(const SeqState& other) noexcept
|
2240
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
2376
2241
|
: state(other.state), whence(other.whence) {
|
2377
|
-
|
2378
|
-
Construct(
|
2242
|
+
DCHECK(state == State::kState0);
|
2243
|
+
Construct(
|
2244
|
+
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2245
|
+
other.prior.prior.prior.prior.prior.prior.prior.prior.current_promise);
|
2379
2246
|
Construct(
|
2380
2247
|
&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2381
2248
|
other.prior.prior.prior.prior.prior.prior.prior.prior.next_factory);
|
@@ -2393,81 +2260,35 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7> {
|
|
2393
2260
|
Construct(&prior.next_factory, other.prior.next_factory);
|
2394
2261
|
}
|
2395
2262
|
SeqState& operator=(const SeqState& other) = delete;
|
2396
|
-
SeqState(SeqState&& other) noexcept
|
2263
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
2397
2264
|
: state(other.state), whence(other.whence) {
|
2398
|
-
|
2399
|
-
|
2400
|
-
|
2401
|
-
|
2402
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
2403
|
-
.current_promise));
|
2404
|
-
goto tail0;
|
2405
|
-
case State::kState1:
|
2406
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2407
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
2408
|
-
.current_promise));
|
2409
|
-
goto tail1;
|
2410
|
-
case State::kState2:
|
2411
|
-
Construct(
|
2412
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
2413
|
-
std::move(
|
2414
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
2415
|
-
goto tail2;
|
2416
|
-
case State::kState3:
|
2417
|
-
Construct(
|
2418
|
-
&prior.prior.prior.prior.prior.current_promise,
|
2419
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
2420
|
-
goto tail3;
|
2421
|
-
case State::kState4:
|
2422
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
2423
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
2424
|
-
goto tail4;
|
2425
|
-
case State::kState5:
|
2426
|
-
Construct(&prior.prior.prior.current_promise,
|
2427
|
-
std::move(other.prior.prior.prior.current_promise));
|
2428
|
-
goto tail5;
|
2429
|
-
case State::kState6:
|
2430
|
-
Construct(&prior.prior.current_promise,
|
2431
|
-
std::move(other.prior.prior.current_promise));
|
2432
|
-
goto tail6;
|
2433
|
-
case State::kState7:
|
2434
|
-
Construct(&prior.current_promise,
|
2435
|
-
std::move(other.prior.current_promise));
|
2436
|
-
goto tail7;
|
2437
|
-
case State::kState8:
|
2438
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
2439
|
-
return;
|
2440
|
-
}
|
2441
|
-
tail0:
|
2265
|
+
DCHECK(state == State::kState0);
|
2266
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2267
|
+
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
2268
|
+
.current_promise));
|
2442
2269
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2443
2270
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
2444
2271
|
.next_factory));
|
2445
|
-
tail1:
|
2446
2272
|
Construct(
|
2447
2273
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2448
2274
|
std::move(
|
2449
2275
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
2450
|
-
tail2:
|
2451
2276
|
Construct(
|
2452
2277
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
2453
2278
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
2454
|
-
tail3:
|
2455
2279
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
2456
2280
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
2457
|
-
tail4:
|
2458
2281
|
Construct(&prior.prior.prior.prior.next_factory,
|
2459
2282
|
std::move(other.prior.prior.prior.prior.next_factory));
|
2460
|
-
tail5:
|
2461
2283
|
Construct(&prior.prior.prior.next_factory,
|
2462
2284
|
std::move(other.prior.prior.prior.next_factory));
|
2463
|
-
tail6:
|
2464
2285
|
Construct(&prior.prior.next_factory,
|
2465
2286
|
std::move(other.prior.prior.next_factory));
|
2466
|
-
tail7:
|
2467
2287
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
2468
2288
|
}
|
2469
|
-
SeqState& operator=(SeqState&& other) =
|
2470
|
-
|
2289
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
2290
|
+
delete;
|
2291
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
2471
2292
|
switch (state) {
|
2472
2293
|
case State::kState0: {
|
2473
2294
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -2886,8 +2707,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2886
2707
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
2887
2708
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
2888
2709
|
|
2889
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
2890
|
-
|
2710
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
2711
|
+
F2&& f2, F3&& f3, F4&& f4,
|
2712
|
+
F5&& f5, F6&& f6, F7&& f7,
|
2713
|
+
F8&& f8,
|
2714
|
+
DebugLocation whence) noexcept
|
2891
2715
|
: whence(whence) {
|
2892
2716
|
Construct(
|
2893
2717
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
@@ -2908,7 +2732,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2908
2732
|
Construct(&prior.prior.next_factory, std::forward<F7>(f7));
|
2909
2733
|
Construct(&prior.next_factory, std::forward<F8>(f8));
|
2910
2734
|
}
|
2911
|
-
~SeqState() {
|
2735
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
2912
2736
|
switch (state) {
|
2913
2737
|
case State::kState0:
|
2914
2738
|
Destruct(&prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -2963,10 +2787,13 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2963
2787
|
tail8:
|
2964
2788
|
Destruct(&prior.next_factory);
|
2965
2789
|
}
|
2966
|
-
SeqState(const SeqState& other) noexcept
|
2790
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
2967
2791
|
: state(other.state), whence(other.whence) {
|
2968
|
-
|
2969
|
-
Construct(
|
2792
|
+
DCHECK(state == State::kState0);
|
2793
|
+
Construct(
|
2794
|
+
&prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2795
|
+
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
2796
|
+
.current_promise);
|
2970
2797
|
Construct(
|
2971
2798
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
2972
2799
|
other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -2988,92 +2815,40 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8> {
|
|
2988
2815
|
Construct(&prior.next_factory, other.prior.next_factory);
|
2989
2816
|
}
|
2990
2817
|
SeqState& operator=(const SeqState& other) = delete;
|
2991
|
-
SeqState(SeqState&& other) noexcept
|
2818
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
2992
2819
|
: state(other.state), whence(other.whence) {
|
2993
|
-
|
2994
|
-
|
2995
|
-
|
2996
|
-
|
2997
|
-
|
2998
|
-
.prior.prior.current_promise));
|
2999
|
-
goto tail0;
|
3000
|
-
case State::kState1:
|
3001
|
-
Construct(
|
3002
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3003
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3004
|
-
.current_promise));
|
3005
|
-
goto tail1;
|
3006
|
-
case State::kState2:
|
3007
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3008
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
3009
|
-
.current_promise));
|
3010
|
-
goto tail2;
|
3011
|
-
case State::kState3:
|
3012
|
-
Construct(
|
3013
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
3014
|
-
std::move(
|
3015
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
3016
|
-
goto tail3;
|
3017
|
-
case State::kState4:
|
3018
|
-
Construct(
|
3019
|
-
&prior.prior.prior.prior.prior.current_promise,
|
3020
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
3021
|
-
goto tail4;
|
3022
|
-
case State::kState5:
|
3023
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
3024
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
3025
|
-
goto tail5;
|
3026
|
-
case State::kState6:
|
3027
|
-
Construct(&prior.prior.prior.current_promise,
|
3028
|
-
std::move(other.prior.prior.prior.current_promise));
|
3029
|
-
goto tail6;
|
3030
|
-
case State::kState7:
|
3031
|
-
Construct(&prior.prior.current_promise,
|
3032
|
-
std::move(other.prior.prior.current_promise));
|
3033
|
-
goto tail7;
|
3034
|
-
case State::kState8:
|
3035
|
-
Construct(&prior.current_promise,
|
3036
|
-
std::move(other.prior.current_promise));
|
3037
|
-
goto tail8;
|
3038
|
-
case State::kState9:
|
3039
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
3040
|
-
return;
|
3041
|
-
}
|
3042
|
-
tail0:
|
2820
|
+
DCHECK(state == State::kState0);
|
2821
|
+
Construct(
|
2822
|
+
&prior.prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
2823
|
+
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
2824
|
+
.current_promise));
|
3043
2825
|
Construct(
|
3044
2826
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3045
2827
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3046
2828
|
.next_factory));
|
3047
|
-
tail1:
|
3048
2829
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3049
2830
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3050
2831
|
.next_factory));
|
3051
|
-
tail2:
|
3052
2832
|
Construct(
|
3053
2833
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3054
2834
|
std::move(
|
3055
2835
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
3056
|
-
tail3:
|
3057
2836
|
Construct(
|
3058
2837
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
3059
2838
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
3060
|
-
tail4:
|
3061
2839
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
3062
2840
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
3063
|
-
tail5:
|
3064
2841
|
Construct(&prior.prior.prior.prior.next_factory,
|
3065
2842
|
std::move(other.prior.prior.prior.prior.next_factory));
|
3066
|
-
tail6:
|
3067
2843
|
Construct(&prior.prior.prior.next_factory,
|
3068
2844
|
std::move(other.prior.prior.prior.next_factory));
|
3069
|
-
tail7:
|
3070
2845
|
Construct(&prior.prior.next_factory,
|
3071
2846
|
std::move(other.prior.prior.next_factory));
|
3072
|
-
tail8:
|
3073
2847
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
3074
2848
|
}
|
3075
|
-
SeqState& operator=(SeqState&& other) =
|
3076
|
-
|
2849
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
2850
|
+
delete;
|
2851
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
3077
2852
|
switch (state) {
|
3078
2853
|
case State::kState0: {
|
3079
2854
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -3543,8 +3318,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3543
3318
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
3544
3319
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
3545
3320
|
|
3546
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
3547
|
-
|
3321
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
3322
|
+
F2&& f2, F3&& f3, F4&& f4,
|
3323
|
+
F5&& f5, F6&& f6, F7&& f7,
|
3324
|
+
F8&& f8, F9&& f9,
|
3325
|
+
DebugLocation whence) noexcept
|
3548
3326
|
: whence(whence) {
|
3549
3327
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3550
3328
|
.current_promise,
|
@@ -3568,7 +3346,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3568
3346
|
Construct(&prior.prior.next_factory, std::forward<F8>(f8));
|
3569
3347
|
Construct(&prior.next_factory, std::forward<F9>(f9));
|
3570
3348
|
}
|
3571
|
-
~SeqState() {
|
3349
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
3572
3350
|
switch (state) {
|
3573
3351
|
case State::kState0:
|
3574
3352
|
Destruct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -3630,10 +3408,13 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3630
3408
|
tail9:
|
3631
3409
|
Destruct(&prior.next_factory);
|
3632
3410
|
}
|
3633
|
-
SeqState(const SeqState& other) noexcept
|
3411
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
3634
3412
|
: state(other.state), whence(other.whence) {
|
3635
|
-
|
3636
|
-
Construct(&prior.
|
3413
|
+
DCHECK(state == State::kState0);
|
3414
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3415
|
+
.current_promise,
|
3416
|
+
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3417
|
+
.current_promise);
|
3637
3418
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3638
3419
|
.next_factory,
|
3639
3420
|
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -3659,103 +3440,44 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> {
|
|
3659
3440
|
Construct(&prior.next_factory, other.prior.next_factory);
|
3660
3441
|
}
|
3661
3442
|
SeqState& operator=(const SeqState& other) = delete;
|
3662
|
-
SeqState(SeqState&& other) noexcept
|
3443
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
3663
3444
|
: state(other.state), whence(other.whence) {
|
3664
|
-
|
3665
|
-
|
3666
|
-
|
3667
|
-
|
3668
|
-
|
3669
|
-
.prior.prior.prior.current_promise));
|
3670
|
-
goto tail0;
|
3671
|
-
case State::kState1:
|
3672
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3673
|
-
.current_promise,
|
3674
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
3675
|
-
.prior.prior.current_promise));
|
3676
|
-
goto tail1;
|
3677
|
-
case State::kState2:
|
3678
|
-
Construct(
|
3679
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3680
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3681
|
-
.current_promise));
|
3682
|
-
goto tail2;
|
3683
|
-
case State::kState3:
|
3684
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
3685
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
3686
|
-
.current_promise));
|
3687
|
-
goto tail3;
|
3688
|
-
case State::kState4:
|
3689
|
-
Construct(
|
3690
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
3691
|
-
std::move(
|
3692
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
3693
|
-
goto tail4;
|
3694
|
-
case State::kState5:
|
3695
|
-
Construct(
|
3696
|
-
&prior.prior.prior.prior.prior.current_promise,
|
3697
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
3698
|
-
goto tail5;
|
3699
|
-
case State::kState6:
|
3700
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
3701
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
3702
|
-
goto tail6;
|
3703
|
-
case State::kState7:
|
3704
|
-
Construct(&prior.prior.prior.current_promise,
|
3705
|
-
std::move(other.prior.prior.prior.current_promise));
|
3706
|
-
goto tail7;
|
3707
|
-
case State::kState8:
|
3708
|
-
Construct(&prior.prior.current_promise,
|
3709
|
-
std::move(other.prior.prior.current_promise));
|
3710
|
-
goto tail8;
|
3711
|
-
case State::kState9:
|
3712
|
-
Construct(&prior.current_promise,
|
3713
|
-
std::move(other.prior.current_promise));
|
3714
|
-
goto tail9;
|
3715
|
-
case State::kState10:
|
3716
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
3717
|
-
return;
|
3718
|
-
}
|
3719
|
-
tail0:
|
3445
|
+
DCHECK(state == State::kState0);
|
3446
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3447
|
+
.current_promise,
|
3448
|
+
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3449
|
+
.prior.prior.current_promise));
|
3720
3450
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3721
3451
|
.next_factory,
|
3722
3452
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3723
3453
|
.prior.prior.next_factory));
|
3724
|
-
tail1:
|
3725
3454
|
Construct(
|
3726
3455
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3727
3456
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
3728
3457
|
.next_factory));
|
3729
|
-
tail2:
|
3730
3458
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3731
3459
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
3732
3460
|
.next_factory));
|
3733
|
-
tail3:
|
3734
3461
|
Construct(
|
3735
3462
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
3736
3463
|
std::move(
|
3737
3464
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
3738
|
-
tail4:
|
3739
3465
|
Construct(
|
3740
3466
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
3741
3467
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
3742
|
-
tail5:
|
3743
3468
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
3744
3469
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
3745
|
-
tail6:
|
3746
3470
|
Construct(&prior.prior.prior.prior.next_factory,
|
3747
3471
|
std::move(other.prior.prior.prior.prior.next_factory));
|
3748
|
-
tail7:
|
3749
3472
|
Construct(&prior.prior.prior.next_factory,
|
3750
3473
|
std::move(other.prior.prior.prior.next_factory));
|
3751
|
-
tail8:
|
3752
3474
|
Construct(&prior.prior.next_factory,
|
3753
3475
|
std::move(other.prior.prior.next_factory));
|
3754
|
-
tail9:
|
3755
3476
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
3756
3477
|
}
|
3757
|
-
SeqState& operator=(SeqState&& other) =
|
3758
|
-
|
3478
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
3479
|
+
delete;
|
3480
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
3759
3481
|
switch (state) {
|
3760
3482
|
case State::kState0: {
|
3761
3483
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -4277,8 +3999,11 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4277
3999
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
4278
4000
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
4279
4001
|
|
4280
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
4281
|
-
|
4002
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
4003
|
+
F2&& f2, F3&& f3, F4&& f4,
|
4004
|
+
F5&& f5, F6&& f6, F7&& f7,
|
4005
|
+
F8&& f8, F9&& f9, F10&& f10,
|
4006
|
+
DebugLocation whence) noexcept
|
4282
4007
|
: whence(whence) {
|
4283
4008
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4284
4009
|
.current_promise,
|
@@ -4305,7 +4030,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4305
4030
|
Construct(&prior.prior.next_factory, std::forward<F9>(f9));
|
4306
4031
|
Construct(&prior.next_factory, std::forward<F10>(f10));
|
4307
4032
|
}
|
4308
|
-
~SeqState() {
|
4033
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
4309
4034
|
switch (state) {
|
4310
4035
|
case State::kState0:
|
4311
4036
|
Destruct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -4374,10 +4099,13 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4374
4099
|
tail10:
|
4375
4100
|
Destruct(&prior.next_factory);
|
4376
4101
|
}
|
4377
|
-
SeqState(const SeqState& other) noexcept
|
4102
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
4378
4103
|
: state(other.state), whence(other.whence) {
|
4379
|
-
|
4380
|
-
Construct(&prior.
|
4104
|
+
DCHECK(state == State::kState0);
|
4105
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4106
|
+
.current_promise,
|
4107
|
+
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4108
|
+
.prior.current_promise);
|
4381
4109
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4382
4110
|
.next_factory,
|
4383
4111
|
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -4407,114 +4135,48 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> {
|
|
4407
4135
|
Construct(&prior.next_factory, other.prior.next_factory);
|
4408
4136
|
}
|
4409
4137
|
SeqState& operator=(const SeqState& other) = delete;
|
4410
|
-
SeqState(SeqState&& other) noexcept
|
4138
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
4411
4139
|
: state(other.state), whence(other.whence) {
|
4412
|
-
|
4413
|
-
|
4414
|
-
|
4415
|
-
|
4416
|
-
|
4417
|
-
.prior.prior.prior.prior.current_promise));
|
4418
|
-
goto tail0;
|
4419
|
-
case State::kState1:
|
4420
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4421
|
-
.current_promise,
|
4422
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
4423
|
-
.prior.prior.prior.current_promise));
|
4424
|
-
goto tail1;
|
4425
|
-
case State::kState2:
|
4426
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4427
|
-
.current_promise,
|
4428
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
4429
|
-
.prior.prior.current_promise));
|
4430
|
-
goto tail2;
|
4431
|
-
case State::kState3:
|
4432
|
-
Construct(
|
4433
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
4434
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4435
|
-
.current_promise));
|
4436
|
-
goto tail3;
|
4437
|
-
case State::kState4:
|
4438
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
4439
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
4440
|
-
.current_promise));
|
4441
|
-
goto tail4;
|
4442
|
-
case State::kState5:
|
4443
|
-
Construct(
|
4444
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
4445
|
-
std::move(
|
4446
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
4447
|
-
goto tail5;
|
4448
|
-
case State::kState6:
|
4449
|
-
Construct(
|
4450
|
-
&prior.prior.prior.prior.prior.current_promise,
|
4451
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
4452
|
-
goto tail6;
|
4453
|
-
case State::kState7:
|
4454
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
4455
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
4456
|
-
goto tail7;
|
4457
|
-
case State::kState8:
|
4458
|
-
Construct(&prior.prior.prior.current_promise,
|
4459
|
-
std::move(other.prior.prior.prior.current_promise));
|
4460
|
-
goto tail8;
|
4461
|
-
case State::kState9:
|
4462
|
-
Construct(&prior.prior.current_promise,
|
4463
|
-
std::move(other.prior.prior.current_promise));
|
4464
|
-
goto tail9;
|
4465
|
-
case State::kState10:
|
4466
|
-
Construct(&prior.current_promise,
|
4467
|
-
std::move(other.prior.current_promise));
|
4468
|
-
goto tail10;
|
4469
|
-
case State::kState11:
|
4470
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
4471
|
-
return;
|
4472
|
-
}
|
4473
|
-
tail0:
|
4140
|
+
DCHECK(state == State::kState0);
|
4141
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4142
|
+
.current_promise,
|
4143
|
+
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4144
|
+
.prior.prior.prior.current_promise));
|
4474
4145
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4475
4146
|
.next_factory,
|
4476
4147
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4477
4148
|
.prior.prior.prior.next_factory));
|
4478
|
-
tail1:
|
4479
4149
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4480
4150
|
.next_factory,
|
4481
4151
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4482
4152
|
.prior.prior.next_factory));
|
4483
|
-
tail2:
|
4484
4153
|
Construct(
|
4485
4154
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4486
4155
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4487
4156
|
.next_factory));
|
4488
|
-
tail3:
|
4489
4157
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4490
4158
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4491
4159
|
.next_factory));
|
4492
|
-
tail4:
|
4493
4160
|
Construct(
|
4494
4161
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
4495
4162
|
std::move(
|
4496
4163
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
4497
|
-
tail5:
|
4498
4164
|
Construct(
|
4499
4165
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
4500
4166
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
4501
|
-
tail6:
|
4502
4167
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
4503
4168
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
4504
|
-
tail7:
|
4505
4169
|
Construct(&prior.prior.prior.prior.next_factory,
|
4506
4170
|
std::move(other.prior.prior.prior.prior.next_factory));
|
4507
|
-
tail8:
|
4508
4171
|
Construct(&prior.prior.prior.next_factory,
|
4509
4172
|
std::move(other.prior.prior.prior.next_factory));
|
4510
|
-
tail9:
|
4511
4173
|
Construct(&prior.prior.next_factory,
|
4512
4174
|
std::move(other.prior.prior.next_factory));
|
4513
|
-
tail10:
|
4514
4175
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
4515
4176
|
}
|
4516
|
-
SeqState& operator=(SeqState&& other) =
|
4517
|
-
|
4177
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
4178
|
+
delete;
|
4179
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
4518
4180
|
switch (state) {
|
4519
4181
|
case State::kState0: {
|
4520
4182
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|
@@ -5089,9 +4751,12 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5089
4751
|
GPR_NO_UNIQUE_ADDRESS State state = State::kState0;
|
5090
4752
|
GPR_NO_UNIQUE_ADDRESS DebugLocation whence;
|
5091
4753
|
|
5092
|
-
SeqState(P&& p, F0&& f0, F1&& f1,
|
5093
|
-
|
5094
|
-
|
4754
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(P&& p, F0&& f0, F1&& f1,
|
4755
|
+
F2&& f2, F3&& f3, F4&& f4,
|
4756
|
+
F5&& f5, F6&& f6, F7&& f7,
|
4757
|
+
F8&& f8, F9&& f9, F10&& f10,
|
4758
|
+
F11&& f11,
|
4759
|
+
DebugLocation whence) noexcept
|
5095
4760
|
: whence(whence) {
|
5096
4761
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5097
4762
|
.prior.current_promise,
|
@@ -5121,7 +4786,7 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5121
4786
|
Construct(&prior.prior.next_factory, std::forward<F10>(f10));
|
5122
4787
|
Construct(&prior.next_factory, std::forward<F11>(f11));
|
5123
4788
|
}
|
5124
|
-
~SeqState() {
|
4789
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION ~SeqState() {
|
5125
4790
|
switch (state) {
|
5126
4791
|
case State::kState0:
|
5127
4792
|
Destruct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -5197,10 +4862,13 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5197
4862
|
tail11:
|
5198
4863
|
Destruct(&prior.next_factory);
|
5199
4864
|
}
|
5200
|
-
SeqState(const SeqState& other) noexcept
|
4865
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(const SeqState& other) noexcept
|
5201
4866
|
: state(other.state), whence(other.whence) {
|
5202
|
-
|
5203
|
-
Construct(&prior.
|
4867
|
+
DCHECK(state == State::kState0);
|
4868
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4869
|
+
.prior.current_promise,
|
4870
|
+
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4871
|
+
.prior.prior.current_promise);
|
5204
4872
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5205
4873
|
.prior.next_factory,
|
5206
4874
|
other.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
@@ -5234,126 +4902,52 @@ struct SeqState<Traits, P, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> {
|
|
5234
4902
|
Construct(&prior.next_factory, other.prior.next_factory);
|
5235
4903
|
}
|
5236
4904
|
SeqState& operator=(const SeqState& other) = delete;
|
5237
|
-
SeqState(SeqState&& other) noexcept
|
4905
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState(SeqState&& other) noexcept
|
5238
4906
|
: state(other.state), whence(other.whence) {
|
5239
|
-
|
5240
|
-
|
5241
|
-
|
5242
|
-
|
5243
|
-
|
5244
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5245
|
-
.prior.prior.prior.prior.current_promise));
|
5246
|
-
goto tail0;
|
5247
|
-
case State::kState1:
|
5248
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5249
|
-
.prior.current_promise,
|
5250
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
5251
|
-
.prior.prior.prior.prior.current_promise));
|
5252
|
-
goto tail1;
|
5253
|
-
case State::kState2:
|
5254
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5255
|
-
.current_promise,
|
5256
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
5257
|
-
.prior.prior.prior.current_promise));
|
5258
|
-
goto tail2;
|
5259
|
-
case State::kState3:
|
5260
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5261
|
-
.current_promise,
|
5262
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
5263
|
-
.prior.prior.current_promise));
|
5264
|
-
goto tail3;
|
5265
|
-
case State::kState4:
|
5266
|
-
Construct(
|
5267
|
-
&prior.prior.prior.prior.prior.prior.prior.prior.current_promise,
|
5268
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5269
|
-
.current_promise));
|
5270
|
-
goto tail4;
|
5271
|
-
case State::kState5:
|
5272
|
-
Construct(&prior.prior.prior.prior.prior.prior.prior.current_promise,
|
5273
|
-
std::move(other.prior.prior.prior.prior.prior.prior.prior
|
5274
|
-
.current_promise));
|
5275
|
-
goto tail5;
|
5276
|
-
case State::kState6:
|
5277
|
-
Construct(
|
5278
|
-
&prior.prior.prior.prior.prior.prior.current_promise,
|
5279
|
-
std::move(
|
5280
|
-
other.prior.prior.prior.prior.prior.prior.current_promise));
|
5281
|
-
goto tail6;
|
5282
|
-
case State::kState7:
|
5283
|
-
Construct(
|
5284
|
-
&prior.prior.prior.prior.prior.current_promise,
|
5285
|
-
std::move(other.prior.prior.prior.prior.prior.current_promise));
|
5286
|
-
goto tail7;
|
5287
|
-
case State::kState8:
|
5288
|
-
Construct(&prior.prior.prior.prior.current_promise,
|
5289
|
-
std::move(other.prior.prior.prior.prior.current_promise));
|
5290
|
-
goto tail8;
|
5291
|
-
case State::kState9:
|
5292
|
-
Construct(&prior.prior.prior.current_promise,
|
5293
|
-
std::move(other.prior.prior.prior.current_promise));
|
5294
|
-
goto tail9;
|
5295
|
-
case State::kState10:
|
5296
|
-
Construct(&prior.prior.current_promise,
|
5297
|
-
std::move(other.prior.prior.current_promise));
|
5298
|
-
goto tail10;
|
5299
|
-
case State::kState11:
|
5300
|
-
Construct(&prior.current_promise,
|
5301
|
-
std::move(other.prior.current_promise));
|
5302
|
-
goto tail11;
|
5303
|
-
case State::kState12:
|
5304
|
-
Construct(¤t_promise, std::move(other.current_promise));
|
5305
|
-
return;
|
5306
|
-
}
|
5307
|
-
tail0:
|
4907
|
+
DCHECK(state == State::kState0);
|
4908
|
+
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
4909
|
+
.prior.current_promise,
|
4910
|
+
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
4911
|
+
.prior.prior.prior.prior.current_promise));
|
5308
4912
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5309
4913
|
.prior.next_factory,
|
5310
4914
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5311
4915
|
.prior.prior.prior.prior.next_factory));
|
5312
|
-
tail1:
|
5313
4916
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5314
4917
|
.next_factory,
|
5315
4918
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5316
4919
|
.prior.prior.prior.next_factory));
|
5317
|
-
tail2:
|
5318
4920
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5319
4921
|
.next_factory,
|
5320
4922
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5321
4923
|
.prior.prior.next_factory));
|
5322
|
-
tail3:
|
5323
4924
|
Construct(
|
5324
4925
|
&prior.prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
5325
4926
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior.prior
|
5326
4927
|
.next_factory));
|
5327
|
-
tail4:
|
5328
4928
|
Construct(&prior.prior.prior.prior.prior.prior.prior.prior.next_factory,
|
5329
4929
|
std::move(other.prior.prior.prior.prior.prior.prior.prior.prior
|
5330
4930
|
.next_factory));
|
5331
|
-
tail5:
|
5332
4931
|
Construct(
|
5333
4932
|
&prior.prior.prior.prior.prior.prior.prior.next_factory,
|
5334
4933
|
std::move(
|
5335
4934
|
other.prior.prior.prior.prior.prior.prior.prior.next_factory));
|
5336
|
-
tail6:
|
5337
4935
|
Construct(
|
5338
4936
|
&prior.prior.prior.prior.prior.prior.next_factory,
|
5339
4937
|
std::move(other.prior.prior.prior.prior.prior.prior.next_factory));
|
5340
|
-
tail7:
|
5341
4938
|
Construct(&prior.prior.prior.prior.prior.next_factory,
|
5342
4939
|
std::move(other.prior.prior.prior.prior.prior.next_factory));
|
5343
|
-
tail8:
|
5344
4940
|
Construct(&prior.prior.prior.prior.next_factory,
|
5345
4941
|
std::move(other.prior.prior.prior.prior.next_factory));
|
5346
|
-
tail9:
|
5347
4942
|
Construct(&prior.prior.prior.next_factory,
|
5348
4943
|
std::move(other.prior.prior.prior.next_factory));
|
5349
|
-
tail10:
|
5350
4944
|
Construct(&prior.prior.next_factory,
|
5351
4945
|
std::move(other.prior.prior.next_factory));
|
5352
|
-
tail11:
|
5353
4946
|
Construct(&prior.next_factory, std::move(other.prior.next_factory));
|
5354
4947
|
}
|
5355
|
-
SeqState& operator=(SeqState&& other) =
|
5356
|
-
|
4948
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION SeqState& operator=(SeqState&& other) =
|
4949
|
+
delete;
|
4950
|
+
GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Poll<Result> PollOnce() {
|
5357
4951
|
switch (state) {
|
5358
4952
|
case State::kState0: {
|
5359
4953
|
if (GRPC_TRACE_FLAG_ENABLED(promise_primitives)) {
|