grpc 1.47.0 → 1.48.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +105 -47
- data/include/grpc/compression.h +1 -1
- data/include/grpc/event_engine/event_engine.h +20 -11
- data/include/grpc/event_engine/slice_buffer.h +8 -2
- data/include/grpc/grpc.h +3 -3
- data/include/grpc/impl/codegen/compression_types.h +2 -1
- data/include/grpc/impl/codegen/connectivity_state.h +2 -1
- data/include/grpc/impl/codegen/gpr_types.h +2 -1
- data/include/grpc/impl/codegen/grpc_types.h +2 -1
- data/include/grpc/impl/codegen/port_platform.h +6 -3
- data/src/core/ext/filters/census/grpc_context.cc +3 -0
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +17 -5
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +16 -0
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +2 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +3 -1
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +2 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +51 -65
- data/src/core/ext/filters/client_channel/client_channel.h +19 -4
- data/src/core/ext/filters/client_channel/config_selector.h +1 -1
- data/src/core/ext/filters/client_channel/connector.h +1 -1
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +6 -4
- data/src/core/ext/filters/client_channel/dynamic_filters.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +2 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +73 -43
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +0 -1
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +33 -35
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +106 -112
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +91 -42
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +177 -138
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +4 -1
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +47 -44
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +118 -103
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +83 -78
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +57 -67
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +2 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +5 -7
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +13 -17
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +3 -3
- data/src/core/ext/filters/client_channel/lb_policy.h +0 -7
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +3 -5
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +0 -1
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +3 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +6 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +10 -5
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +12 -3
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +3 -4
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +1 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +24 -15
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +3 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +7 -7
- data/src/core/ext/filters/client_channel/retry_filter.cc +35 -36
- data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +4 -4
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +2 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +53 -50
- data/src/core/ext/filters/client_channel/subchannel.h +6 -22
- data/src/core/ext/filters/client_channel/subchannel_interface.h +10 -18
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +12 -97
- data/src/core/ext/filters/client_channel/subchannel_stream_client.h +5 -9
- data/src/core/ext/filters/deadline/deadline_filter.cc +12 -7
- data/src/core/ext/filters/deadline/deadline_filter.h +8 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +21 -2
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -3
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +7 -4
- data/src/core/ext/filters/fault_injection/service_config_parser.h +17 -3
- data/src/core/ext/filters/http/client/http_client_filter.cc +16 -5
- data/src/core/ext/filters/http/client/http_client_filter.h +8 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +11 -10
- data/src/core/ext/filters/http/client_authority_filter.h +5 -2
- data/src/core/ext/filters/http/http_filters_plugin.cc +9 -1
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +64 -187
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +1 -2
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +42 -106
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +1 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +16 -9
- data/src/core/ext/filters/http/server/http_server_filter.h +6 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +25 -15
- data/src/core/ext/filters/message_size/message_size_filter.h +13 -0
- data/src/core/ext/filters/rbac/rbac_filter.cc +14 -3
- data/src/core/ext/filters/rbac/rbac_filter.h +8 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +13 -2
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +14 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector.cc +1 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +9 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +22 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +1 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +4 -4
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +15 -15
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +196 -476
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -1
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +141 -261
- data/src/core/ext/transport/chttp2/transport/flow_control.h +176 -289
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +57 -215
- data/src/core/ext/transport/chttp2/transport/frame_data.h +10 -36
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +0 -41
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +7 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +0 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +9 -111
- data/src/core/ext/transport/chttp2/transport/parsing.cc +51 -38
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +0 -4
- data/src/core/ext/transport/chttp2/transport/writing.cc +18 -21
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -1
- data/src/core/ext/transport/inproc/inproc_transport.cc +85 -81
- data/src/core/ext/transport/inproc/inproc_transport.h +3 -1
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +52 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +164 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +94 -0
- data/src/core/ext/xds/certificate_provider_factory.h +6 -1
- data/src/core/ext/xds/certificate_provider_registry.cc +8 -8
- data/src/core/ext/xds/certificate_provider_registry.h +3 -1
- data/src/core/ext/xds/certificate_provider_store.cc +2 -0
- data/src/core/ext/xds/certificate_provider_store.h +9 -0
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +9 -0
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +8 -0
- data/src/core/ext/xds/upb_utils.h +1 -2
- data/src/core/ext/xds/xds_api.cc +16 -18
- data/src/core/ext/xds/xds_api.h +12 -5
- data/src/core/ext/xds/xds_bootstrap.cc +37 -24
- data/src/core/ext/xds/xds_bootstrap.h +9 -11
- data/src/core/ext/xds/xds_certificate_provider.cc +12 -3
- data/src/core/ext/xds/xds_certificate_provider.h +16 -1
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +9 -0
- data/src/core/ext/xds/xds_channel_stack_modifier.h +5 -1
- data/src/core/ext/xds/xds_client.cc +71 -22
- data/src/core/ext/xds/xds_client.h +17 -3
- data/src/core/ext/xds/xds_client_stats.cc +3 -4
- data/src/core/ext/xds/xds_client_stats.h +4 -3
- data/src/core/ext/xds/xds_cluster.cc +21 -10
- data/src/core/ext/xds/xds_cluster.h +9 -1
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +16 -7
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +1 -8
- data/src/core/ext/xds/xds_common_types.cc +36 -22
- data/src/core/ext/xds/xds_common_types.h +12 -4
- data/src/core/ext/xds/xds_endpoint.cc +25 -15
- data/src/core/ext/xds/xds_endpoint.h +13 -5
- data/src/core/ext/xds/xds_http_fault_filter.cc +7 -5
- data/src/core/ext/xds/xds_http_fault_filter.h +3 -1
- data/src/core/ext/xds/xds_http_filters.cc +7 -0
- data/src/core/ext/xds/xds_http_filters.h +3 -3
- data/src/core/ext/xds/xds_http_rbac_filter.cc +16 -0
- data/src/core/ext/xds/xds_http_rbac_filter.h +7 -0
- data/src/core/ext/xds/xds_lb_policy_registry.cc +291 -0
- data/src/core/ext/xds/xds_lb_policy_registry.h +72 -0
- data/src/core/ext/xds/xds_listener.cc +51 -33
- data/src/core/ext/xds/xds_listener.h +10 -1
- data/src/core/ext/xds/xds_resource_type.h +3 -3
- data/src/core/ext/xds/xds_resource_type_impl.h +7 -3
- data/src/core/ext/xds/xds_route_config.cc +56 -28
- data/src/core/ext/xds/xds_route_config.h +11 -2
- data/src/core/ext/xds/xds_routing.cc +16 -0
- data/src/core/ext/xds/xds_routing.h +7 -2
- data/src/core/ext/xds/xds_server_config_fetcher.cc +54 -6
- data/src/core/lib/address_utils/parse_address.cc +5 -8
- data/src/core/lib/address_utils/parse_address.h +3 -2
- data/src/core/lib/address_utils/sockaddr_utils.cc +8 -7
- data/src/core/lib/address_utils/sockaddr_utils.h +2 -0
- data/src/core/lib/avl/avl.h +3 -3
- data/src/core/lib/backoff/backoff.cc +1 -1
- data/src/core/lib/backoff/backoff.h +1 -1
- data/src/core/lib/channel/call_tracer.h +3 -3
- data/src/core/lib/channel/channel_args.h +1 -0
- data/src/core/lib/channel/channel_args_preconditioning.cc +1 -0
- data/src/core/lib/channel/channel_fwd.h +26 -0
- data/src/core/lib/channel/channel_stack.cc +4 -4
- data/src/core/lib/channel/channel_stack.h +1 -11
- data/src/core/lib/channel/channel_stack_builder.h +2 -5
- data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -1
- data/src/core/lib/channel/channel_stack_builder_impl.h +1 -0
- data/src/core/lib/channel/channelz.cc +2 -1
- data/src/core/lib/channel/channelz.h +2 -3
- data/src/core/lib/channel/channelz_registry.cc +4 -5
- data/src/core/lib/channel/connected_channel.cc +1 -0
- data/src/core/lib/channel/connected_channel.h +1 -0
- data/src/core/lib/channel/promise_based_filter.cc +11 -5
- data/src/core/lib/channel/promise_based_filter.h +2 -0
- data/src/core/lib/compression/compression.cc +6 -1
- data/src/core/lib/compression/compression_internal.cc +3 -6
- data/src/core/lib/compression/compression_internal.h +3 -2
- data/src/core/lib/compression/message_compress.cc +3 -1
- data/src/core/lib/compression/message_compress.h +2 -3
- data/src/core/lib/debug/stats.cc +9 -9
- data/src/core/lib/debug/stats.h +2 -1
- data/src/core/lib/debug/stats_data.cc +2 -1
- data/src/core/lib/debug/stats_data.h +0 -4
- data/src/core/lib/debug/trace.h +13 -12
- data/src/core/lib/event_engine/default_event_engine_factory.cc +1 -1
- data/src/core/lib/event_engine/event_engine.cc +24 -19
- data/src/core/lib/event_engine/event_engine_factory.h +2 -2
- data/src/core/lib/event_engine/{iomgr_engine.cc → iomgr_engine/iomgr_engine.cc} +44 -91
- data/src/core/lib/event_engine/{iomgr_engine.h → iomgr_engine/iomgr_engine.h} +20 -16
- data/src/core/lib/event_engine/iomgr_engine/thread_pool.cc +123 -0
- data/src/core/lib/event_engine/iomgr_engine/thread_pool.h +70 -0
- data/src/core/lib/event_engine/iomgr_engine/time_averaged_stats.cc +62 -0
- data/src/core/lib/event_engine/iomgr_engine/time_averaged_stats.h +81 -0
- data/src/core/lib/event_engine/iomgr_engine/timer.cc +312 -0
- data/src/core/lib/event_engine/iomgr_engine/timer.h +193 -0
- data/src/core/lib/event_engine/iomgr_engine/timer_heap.cc +107 -0
- data/src/core/lib/event_engine/iomgr_engine/timer_heap.h +56 -0
- data/src/core/lib/event_engine/iomgr_engine/timer_manager.cc +254 -0
- data/src/core/lib/event_engine/iomgr_engine/timer_manager.h +111 -0
- data/src/core/lib/event_engine/promise.h +69 -0
- data/src/core/lib/gpr/time_posix.cc +6 -9
- data/src/core/lib/gpr/time_windows.cc +10 -7
- data/src/core/lib/gprpp/manual_constructor.h +0 -67
- data/src/core/lib/gprpp/status_helper.cc +44 -30
- data/src/core/lib/gprpp/time.cc +8 -0
- data/src/core/lib/gprpp/time.h +4 -0
- data/src/core/lib/http/format_request.cc +5 -4
- data/src/core/lib/http/format_request.h +1 -1
- data/src/core/lib/http/httpcli.cc +18 -12
- data/src/core/lib/http/httpcli.h +19 -3
- data/src/core/lib/http/httpcli_security_connector.cc +16 -4
- data/src/core/lib/http/httpcli_ssl_credentials.h +3 -1
- data/src/core/lib/http/parser.cc +6 -7
- data/src/core/lib/http/parser.h +3 -0
- data/src/core/lib/iomgr/call_combiner.cc +2 -2
- data/src/core/lib/iomgr/endpoint.h +1 -1
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -2
- data/src/core/lib/iomgr/error.cc +11 -9
- data/src/core/lib/iomgr/error.h +9 -5
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +57 -18
- data/src/core/lib/iomgr/ev_epoll1_linux.h +1 -1
- data/src/core/lib/iomgr/ev_poll_posix.cc +77 -52
- data/src/core/lib/iomgr/ev_poll_posix.h +2 -2
- data/src/core/lib/iomgr/ev_posix.cc +54 -92
- data/src/core/lib/iomgr/ev_posix.h +5 -3
- data/src/core/lib/iomgr/fork_posix.cc +1 -1
- data/src/core/lib/iomgr/iomgr.cc +7 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +1 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -0
- data/src/core/lib/iomgr/load_file.cc +1 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +1 -1
- data/src/core/lib/iomgr/resolve_address_windows.cc +1 -1
- data/src/core/lib/iomgr/tcp_client.cc +12 -7
- data/src/core/lib/iomgr/tcp_client.h +24 -13
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +15 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +143 -25
- data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_client_windows.cc +14 -10
- data/src/core/lib/iomgr/tcp_posix.cc +91 -29
- data/src/core/lib/iomgr/tcp_server_posix.cc +7 -7
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +12 -12
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +2 -2
- data/src/core/lib/iomgr/tcp_server_windows.cc +7 -7
- data/src/core/lib/iomgr/tcp_windows.cc +5 -5
- data/src/core/lib/iomgr/unix_sockets_posix.cc +2 -2
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -2
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +15 -12
- data/src/core/lib/iomgr/wakeup_fd_posix.h +0 -2
- data/src/core/lib/iomgr/work_serializer.h +2 -3
- data/src/core/lib/matchers/matchers.cc +6 -3
- data/src/core/lib/matchers/matchers.h +2 -0
- data/src/core/lib/promise/activity.cc +0 -1
- data/src/core/lib/promise/activity.h +7 -13
- data/src/core/lib/promise/loop.h +1 -0
- data/src/core/lib/promise/promise.h +1 -0
- data/src/core/lib/promise/sleep.cc +36 -31
- data/src/core/lib/promise/sleep.h +25 -25
- data/src/core/lib/resolver/resolver.cc +5 -0
- data/src/core/lib/resolver/resolver.h +3 -0
- data/src/core/lib/resolver/resolver_factory.h +5 -2
- data/src/core/lib/resolver/resolver_registry.cc +2 -9
- data/src/core/lib/resolver/resolver_registry.h +12 -1
- data/src/core/lib/resolver/server_address.cc +8 -0
- data/src/core/lib/resolver/server_address.h +9 -2
- data/src/core/lib/resource_quota/memory_quota.cc +18 -60
- data/src/core/lib/resource_quota/memory_quota.h +11 -25
- data/src/core/lib/security/authorization/authorization_policy_provider.h +7 -0
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +4 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +9 -3
- data/src/core/lib/security/authorization/evaluate_args.h +6 -3
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +6 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +7 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +12 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +12 -1
- data/src/core/lib/security/authorization/matchers.cc +9 -1
- data/src/core/lib/security/authorization/matchers.h +7 -0
- data/src/core/lib/security/authorization/rbac_policy.cc +5 -0
- data/src/core/lib/security/authorization/rbac_policy.h +7 -0
- data/src/core/lib/security/context/security_context.cc +5 -2
- data/src/core/lib/security/context/security_context.h +14 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +4 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.h +6 -1
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +1 -3
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -4
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -0
- data/src/core/lib/security/credentials/call_creds_util.h +1 -0
- data/src/core/lib/security/credentials/channel_creds_registry.h +6 -1
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +10 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +4 -4
- data/src/core/lib/security/credentials/composite/composite_credentials.h +16 -2
- data/src/core/lib/security/credentials/credentials.cc +4 -8
- data/src/core/lib/security/credentials/credentials.h +10 -8
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +28 -10
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +10 -0
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +9 -0
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +24 -9
- data/src/core/lib/security/credentials/external/external_account_credentials.h +11 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +12 -4
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +6 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +20 -4
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +10 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +8 -6
- data/src/core/lib/security/credentials/fake/fake_credentials.h +13 -1
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +27 -10
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +10 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -3
- data/src/core/lib/security/credentials/iam/iam_credentials.h +10 -0
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +4 -0
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +5 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +5 -2
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +11 -5
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +14 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +28 -3
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -2
- data/src/core/lib/security/credentials/local/local_credentials.cc +4 -3
- data/src/core/lib/security/credentials/local/local_credentials.h +7 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +26 -13
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +20 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +8 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +24 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +5 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +13 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +6 -6
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +9 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +29 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +9 -4
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +9 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +6 -7
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +4 -5
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +7 -2
- data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -1
- data/src/core/lib/security/credentials/tls/tls_utils.cc +2 -0
- data/src/core/lib/security/credentials/tls/tls_utils.h +1 -1
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +8 -1
- data/src/core/lib/security/credentials/xds/xds_credentials.h +14 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -2
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +6 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +17 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +9 -0
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +17 -2
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +5 -3
- data/src/core/lib/security/security_connector/{load_system_roots_linux.cc → load_system_roots_supported.cc} +27 -19
- data/src/core/lib/security/security_connector/{load_system_roots_linux.h → load_system_roots_supported.h} +5 -5
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +22 -3
- data/src/core/lib/security/security_connector/local/local_security_connector.h +6 -2
- data/src/core/lib/security/security_connector/security_connector.cc +20 -18
- data/src/core/lib/security/security_connector/security_connector.h +18 -6
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +18 -6
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -2
- data/src/core/lib/security/security_connector/ssl_utils.cc +12 -2
- data/src/core/lib/security/security_connector/ssl_utils.h +10 -7
- data/src/core/lib/security/security_connector/ssl_utils_config.h +1 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +21 -13
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +23 -3
- data/src/core/lib/security/transport/auth_filters.h +7 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +18 -9
- data/src/core/lib/security/transport/secure_endpoint.cc +63 -13
- data/src/core/lib/security/transport/secure_endpoint.h +4 -3
- data/src/core/lib/security/transport/security_handshaker.cc +44 -11
- data/src/core/lib/security/transport/security_handshaker.h +4 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +26 -4
- data/src/core/lib/security/util/json_util.cc +3 -2
- data/src/core/lib/security/util/json_util.h +0 -2
- data/src/core/lib/service_config/service_config_call_data.h +2 -1
- data/src/core/lib/service_config/service_config_impl.cc +6 -6
- data/src/core/lib/service_config/service_config_impl.h +1 -3
- data/src/core/lib/service_config/service_config_parser.cc +2 -4
- data/src/core/lib/slice/slice_buffer.cc +30 -1
- data/src/core/lib/slice/slice_buffer.h +37 -6
- data/src/core/lib/slice/slice_string_helpers.cc +0 -20
- data/src/core/lib/slice/slice_string_helpers.h +0 -4
- data/src/core/lib/surface/call.cc +53 -115
- data/src/core/lib/surface/call.h +5 -1
- data/src/core/lib/surface/channel.h +2 -0
- data/src/core/lib/surface/channel_ping.cc +1 -1
- data/src/core/lib/surface/completion_queue.cc +15 -14
- data/src/core/lib/surface/completion_queue.h +2 -1
- data/src/core/lib/surface/init.cc +0 -1
- data/src/core/lib/surface/lame_client.cc +1 -1
- data/src/core/lib/surface/lame_client.h +1 -1
- data/src/core/lib/surface/server.cc +14 -8
- data/src/core/lib/surface/server.h +4 -1
- data/src/core/lib/surface/validate_metadata.cc +1 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/error_utils.cc +13 -7
- data/src/core/lib/transport/handshaker.cc +3 -3
- data/src/core/lib/transport/http_connect_handshaker.cc +4 -4
- data/src/core/lib/transport/tcp_connect_handshaker.cc +2 -2
- data/src/core/lib/transport/transport.cc +0 -3
- data/src/core/lib/transport/transport.h +20 -14
- data/src/core/lib/transport/transport_fwd.h +20 -0
- data/src/core/lib/transport/transport_impl.h +1 -0
- data/src/core/lib/transport/transport_op_string.cc +9 -9
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -1
- data/src/core/tsi/fake_transport_security.cc +13 -1
- data/src/core/tsi/fake_transport_security.h +6 -0
- data/src/core/tsi/ssl_transport_security.cc +1 -1
- data/src/core/tsi/transport_security_grpc.cc +3 -2
- data/src/core/tsi/transport_security_grpc.h +5 -2
- data/src/ruby/ext/grpc/ext-export-truffleruby.clang +2 -0
- data/src/ruby/ext/grpc/ext-export-truffleruby.gcc +7 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +1 -0
- data/src/ruby/ext/grpc/extconf.rb +49 -18
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
- data/src/ruby/lib/grpc/errors.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/generic/client_stub_spec.rb +23 -23
- data/third_party/abseil-cpp/absl/algorithm/container.h +1 -1
- data/third_party/abseil-cpp/absl/base/attributes.h +49 -22
- data/third_party/abseil-cpp/absl/base/casts.h +61 -68
- data/third_party/abseil-cpp/absl/base/config.h +182 -41
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +12 -42
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +67 -2
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +3 -3
- data/third_party/abseil-cpp/absl/base/internal/endian.h +17 -62
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +54 -0
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +138 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +29 -22
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +13 -12
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +3 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +8 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +2 -5
- data/third_party/abseil-cpp/absl/base/internal/strerror.cc +88 -0
- data/third_party/abseil-cpp/absl/base/internal/strerror.h +39 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +0 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +2 -1
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +6 -7
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +12 -3
- data/third_party/abseil-cpp/absl/base/log_severity.cc +28 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +51 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +19 -11
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +2 -2
- data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -0
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +11 -4
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +15 -9
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +20 -9
- data/third_party/abseil-cpp/absl/container/internal/common.h +6 -5
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +10 -28
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +68 -20
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +29 -11
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +59 -38
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +4 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +515 -184
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +45 -88
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +4 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +3 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +20 -18
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +15 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +6 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +46 -7
- data/third_party/abseil-cpp/absl/functional/bind_front.h +10 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +2 -1
- data/third_party/abseil-cpp/absl/hash/hash.h +82 -8
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +218 -23
- data/third_party/abseil-cpp/absl/numeric/bits.h +2 -1
- data/third_party/abseil-cpp/absl/numeric/int128.cc +4 -2
- data/third_party/abseil-cpp/absl/numeric/int128.h +2 -2
- data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +21 -6
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +4 -4
- data/third_party/abseil-cpp/absl/random/distributions.h +3 -3
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +3 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +2 -1
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +2 -2
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +59 -48
- data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen.h +5 -11
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +6 -2
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +48 -23
- data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +24 -26
- data/third_party/abseil-cpp/absl/random/internal/traits.h +53 -5
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +5 -5
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +33 -48
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +9 -10
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +7 -4
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -0
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -2
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +1 -1
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +4 -3
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +17 -0
- data/third_party/abseil-cpp/absl/status/status.cc +174 -2
- data/third_party/abseil-cpp/absl/status/status.h +22 -12
- data/third_party/abseil-cpp/absl/status/statusor.h +9 -3
- data/third_party/abseil-cpp/absl/strings/ascii.h +4 -4
- data/third_party/abseil-cpp/absl/strings/cord.cc +194 -913
- data/third_party/abseil-cpp/absl/strings/cord.h +202 -81
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +188 -0
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +44 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.cc +30 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +572 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +63 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +20 -32
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +123 -88
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +149 -49
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +44 -59
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +3 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +3 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +5 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +7 -74
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +54 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +102 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +58 -17
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +13 -11
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +11 -38
- data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +6 -5
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +38 -7
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +7 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +4 -5
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +9 -6
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +10 -2
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/numbers.cc +8 -8
- data/third_party/abseil-cpp/absl/strings/numbers.h +26 -23
- data/third_party/abseil-cpp/absl/strings/str_cat.h +20 -13
- data/third_party/abseil-cpp/absl/strings/str_join.h +9 -15
- data/third_party/abseil-cpp/absl/strings/str_split.h +1 -2
- data/third_party/abseil-cpp/absl/strings/string_view.cc +2 -13
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/strip.h +8 -6
- data/third_party/abseil-cpp/absl/strings/substitute.h +10 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +9 -6
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +1 -6
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -25
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +10 -4
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +75 -40
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +17 -9
- data/third_party/abseil-cpp/absl/synchronization/notification.h +3 -2
- data/third_party/abseil-cpp/absl/time/duration.cc +5 -4
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +11 -7
- data/third_party/abseil-cpp/absl/time/time.h +16 -12
- data/third_party/abseil-cpp/absl/types/internal/optional.h +8 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +3 -3
- data/third_party/abseil-cpp/absl/types/optional.h +17 -14
- data/third_party/abseil-cpp/absl/types/span.h +2 -1
- metadata +39 -15
- data/src/core/lib/slice/slice_split.cc +0 -103
- data/src/core/lib/slice/slice_split.h +0 -36
- data/src/core/lib/transport/byte_stream.cc +0 -165
- data/src/core/lib/transport/byte_stream.h +0 -170
- data/third_party/abseil-cpp/absl/cleanup/cleanup.h +0 -140
- data/third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +0 -100
- data/third_party/abseil-cpp/absl/container/internal/have_sse.h +0 -50
@@ -53,51 +53,121 @@
|
|
53
53
|
//
|
54
54
|
// IMPLEMENTATION DETAILS
|
55
55
|
//
|
56
|
-
//
|
57
|
-
//
|
58
|
-
//
|
59
|
-
//
|
60
|
-
//
|
56
|
+
// # Table Layout
|
57
|
+
//
|
58
|
+
// A raw_hash_set's backing array consists of control bytes followed by slots
|
59
|
+
// that may or may not contain objects.
|
60
|
+
//
|
61
|
+
// The layout of the backing array, for `capacity` slots, is thus, as a
|
62
|
+
// pseudo-struct:
|
63
|
+
//
|
64
|
+
// struct BackingArray {
|
65
|
+
// // Control bytes for the "real" slots.
|
66
|
+
// ctrl_t ctrl[capacity];
|
67
|
+
// // Always `ctrl_t::kSentinel`. This is used by iterators to find when to
|
68
|
+
// // stop and serves no other purpose.
|
69
|
+
// ctrl_t sentinel;
|
70
|
+
// // A copy of the first `kWidth - 1` elements of `ctrl`. This is used so
|
71
|
+
// // that if a probe sequence picks a value near the end of `ctrl`,
|
72
|
+
// // `Group` will have valid control bytes to look at.
|
73
|
+
// ctrl_t clones[kWidth - 1];
|
74
|
+
// // The actual slot data.
|
75
|
+
// slot_type slots[capacity];
|
76
|
+
// };
|
77
|
+
//
|
78
|
+
// The length of this array is computed by `AllocSize()` below.
|
79
|
+
//
|
80
|
+
// Control bytes (`ctrl_t`) are bytes (collected into groups of a
|
81
|
+
// platform-specific size) that define the state of the corresponding slot in
|
82
|
+
// the slot array. Group manipulation is tightly optimized to be as efficient
|
83
|
+
// as possible: SSE and friends on x86, clever bit operations on other arches.
|
61
84
|
//
|
62
85
|
// Group 1 Group 2 Group 3
|
63
86
|
// +---------------+---------------+---------------+
|
64
87
|
// | | | | | | | | | | | | | | | | | | | | | | | | |
|
65
88
|
// +---------------+---------------+---------------+
|
66
89
|
//
|
67
|
-
//
|
68
|
-
//
|
69
|
-
//
|
70
|
-
//
|
71
|
-
//
|
72
|
-
//
|
90
|
+
// Each control byte is either a special value for empty slots, deleted slots
|
91
|
+
// (sometimes called *tombstones*), and a special end-of-table marker used by
|
92
|
+
// iterators, or, if occupied, seven bits (H2) from the hash of the value in the
|
93
|
+
// corresponding slot.
|
94
|
+
//
|
95
|
+
// Storing control bytes in a separate array also has beneficial cache effects,
|
96
|
+
// since more logical slots will fit into a cache line.
|
97
|
+
//
|
98
|
+
// # Hashing
|
99
|
+
//
|
100
|
+
// We compute two separate hashes, `H1` and `H2`, from the hash of an object.
|
101
|
+
// `H1(hash(x))` is an index into `slots`, and essentially the starting point
|
102
|
+
// for the probe sequence. `H2(hash(x))` is a 7-bit value used to filter out
|
103
|
+
// objects that cannot possibly be the one we are looking for.
|
104
|
+
//
|
105
|
+
// # Table operations.
|
73
106
|
//
|
74
|
-
//
|
75
|
-
// filled in order.
|
107
|
+
// The key operations are `insert`, `find`, and `erase`.
|
76
108
|
//
|
77
|
-
//
|
78
|
-
//
|
109
|
+
// Since `insert` and `erase` are implemented in terms of `find`, we describe
|
110
|
+
// `find` first. To `find` a value `x`, we compute `hash(x)`. From
|
111
|
+
// `H1(hash(x))` and the capacity, we construct a `probe_seq` that visits every
|
112
|
+
// group of slots in some interesting order.
|
79
113
|
//
|
80
|
-
//
|
81
|
-
//
|
82
|
-
//
|
114
|
+
// We now walk through these indices. At each index, we select the entire group
|
115
|
+
// starting with that index and extract potential candidates: occupied slots
|
116
|
+
// with a control byte equal to `H2(hash(x))`. If we find an empty slot in the
|
117
|
+
// group, we stop and return an error. Each candidate slot `y` is compared with
|
118
|
+
// `x`; if `x == y`, we are done and return `&y`; otherwise we contine to the
|
119
|
+
// next probe index. Tombstones effectively behave like full slots that never
|
120
|
+
// match the value we're looking for.
|
83
121
|
//
|
84
|
-
//
|
122
|
+
// The `H2` bits ensure when we compare a slot to an object with `==`, we are
|
123
|
+
// likely to have actually found the object. That is, the chance is low that
|
124
|
+
// `==` is called and returns `false`. Thus, when we search for an object, we
|
125
|
+
// are unlikely to call `==` many times. This likelyhood can be analyzed as
|
126
|
+
// follows (assuming that H2 is a random enough hash function).
|
85
127
|
//
|
86
|
-
//
|
128
|
+
// Let's assume that there are `k` "wrong" objects that must be examined in a
|
129
|
+
// probe sequence. For example, when doing a `find` on an object that is in the
|
130
|
+
// table, `k` is the number of objects between the start of the probe sequence
|
131
|
+
// and the final found object (not including the final found object). The
|
132
|
+
// expected number of objects with an H2 match is then `k/128`. Measurements
|
133
|
+
// and analysis indicate that even at high load factors, `k` is less than 32,
|
134
|
+
// meaning that the number of "false positive" comparisons we must perform is
|
135
|
+
// less than 1/8 per `find`.
|
136
|
+
|
137
|
+
// `insert` is implemented in terms of `unchecked_insert`, which inserts a
|
138
|
+
// value presumed to not be in the table (violating this requirement will cause
|
139
|
+
// the table to behave erratically). Given `x` and its hash `hash(x)`, to insert
|
140
|
+
// it, we construct a `probe_seq` once again, and use it to find the first
|
141
|
+
// group with an unoccupied (empty *or* deleted) slot. We place `x` into the
|
142
|
+
// first such slot in the group and mark it as full with `x`'s H2.
|
87
143
|
//
|
88
|
-
//
|
89
|
-
//
|
144
|
+
// To `insert`, we compose `unchecked_insert` with `find`. We compute `h(x)` and
|
145
|
+
// perform a `find` to see if it's already present; if it is, we're done. If
|
146
|
+
// it's not, we may decide the table is getting overcrowded (i.e. the load
|
147
|
+
// factor is greater than 7/8 for big tables; `is_small()` tables use a max load
|
148
|
+
// factor of 1); in this case, we allocate a bigger array, `unchecked_insert`
|
149
|
+
// each element of the table into the new array (we know that no insertion here
|
150
|
+
// will insert an already-present value), and discard the old backing array. At
|
151
|
+
// this point, we may `unchecked_insert` the value `x`.
|
90
152
|
//
|
91
|
-
//
|
92
|
-
//
|
93
|
-
//
|
94
|
-
//
|
95
|
-
//
|
96
|
-
//
|
97
|
-
//
|
98
|
-
//
|
99
|
-
//
|
100
|
-
//
|
153
|
+
// Below, `unchecked_insert` is partly implemented by `prepare_insert`, which
|
154
|
+
// presents a viable, initialized slot pointee to the caller.
|
155
|
+
//
|
156
|
+
// `erase` is implemented in terms of `erase_at`, which takes an index to a
|
157
|
+
// slot. Given an offset, we simply create a tombstone and destroy its contents.
|
158
|
+
// If we can prove that the slot would not appear in a probe sequence, we can
|
159
|
+
// make the slot as empty, instead. We can prove this by observing that if a
|
160
|
+
// group has any empty slots, it has never been full (assuming we never create
|
161
|
+
// an empty slot in a group with no empties, which this heuristic guarantees we
|
162
|
+
// never do) and find would stop at this group anyways (since it does not probe
|
163
|
+
// beyond groups with empties).
|
164
|
+
//
|
165
|
+
// `erase` is `erase_at` composed with `find`: if we
|
166
|
+
// have a value `x`, we can perform a `find`, and then `erase_at` the resulting
|
167
|
+
// slot.
|
168
|
+
//
|
169
|
+
// To iterate, we simply traverse the array, skipping empty and deleted slots
|
170
|
+
// and stopping when we hit a `kSentinel`.
|
101
171
|
|
102
172
|
#ifndef ABSL_CONTAINER_INTERNAL_RAW_HASH_SET_H_
|
103
173
|
#define ABSL_CONTAINER_INTERNAL_RAW_HASH_SET_H_
|
@@ -113,7 +183,9 @@
|
|
113
183
|
#include <type_traits>
|
114
184
|
#include <utility>
|
115
185
|
|
186
|
+
#include "absl/base/config.h"
|
116
187
|
#include "absl/base/internal/endian.h"
|
188
|
+
#include "absl/base/internal/prefetch.h"
|
117
189
|
#include "absl/base/optimization.h"
|
118
190
|
#include "absl/base/port.h"
|
119
191
|
#include "absl/container/internal/common.h"
|
@@ -122,12 +194,27 @@
|
|
122
194
|
#include "absl/container/internal/hash_policy_traits.h"
|
123
195
|
#include "absl/container/internal/hashtable_debug_hooks.h"
|
124
196
|
#include "absl/container/internal/hashtablez_sampler.h"
|
125
|
-
#include "absl/container/internal/have_sse.h"
|
126
197
|
#include "absl/memory/memory.h"
|
127
198
|
#include "absl/meta/type_traits.h"
|
128
199
|
#include "absl/numeric/bits.h"
|
129
200
|
#include "absl/utility/utility.h"
|
130
201
|
|
202
|
+
#ifdef ABSL_INTERNAL_HAVE_SSE2
|
203
|
+
#include <emmintrin.h>
|
204
|
+
#endif
|
205
|
+
|
206
|
+
#ifdef ABSL_INTERNAL_HAVE_SSSE3
|
207
|
+
#include <tmmintrin.h>
|
208
|
+
#endif
|
209
|
+
|
210
|
+
#ifdef _MSC_VER
|
211
|
+
#include <intrin.h>
|
212
|
+
#endif
|
213
|
+
|
214
|
+
#ifdef ABSL_INTERNAL_HAVE_ARM_NEON
|
215
|
+
#include <arm_neon.h>
|
216
|
+
#endif
|
217
|
+
|
131
218
|
namespace absl {
|
132
219
|
ABSL_NAMESPACE_BEGIN
|
133
220
|
namespace container_internal {
|
@@ -142,14 +229,40 @@ template <typename AllocType>
|
|
142
229
|
void SwapAlloc(AllocType& /*lhs*/, AllocType& /*rhs*/,
|
143
230
|
std::false_type /* propagate_on_container_swap */) {}
|
144
231
|
|
232
|
+
// The state for a probe sequence.
|
233
|
+
//
|
234
|
+
// Currently, the sequence is a triangular progression of the form
|
235
|
+
//
|
236
|
+
// p(i) := Width * (i^2 + i)/2 + hash (mod mask + 1)
|
237
|
+
//
|
238
|
+
// The use of `Width` ensures that each probe step does not overlap groups;
|
239
|
+
// the sequence effectively outputs the addresses of *groups* (although not
|
240
|
+
// necessarily aligned to any boundary). The `Group` machinery allows us
|
241
|
+
// to check an entire group with minimal branching.
|
242
|
+
//
|
243
|
+
// Wrapping around at `mask + 1` is important, but not for the obvious reason.
|
244
|
+
// As described above, the first few entries of the control byte array
|
245
|
+
// are mirrored at the end of the array, which `Group` will find and use
|
246
|
+
// for selecting candidates. However, when those candidates' slots are
|
247
|
+
// actually inspected, there are no corresponding slots for the cloned bytes,
|
248
|
+
// so we need to make sure we've treated those offsets as "wrapping around".
|
249
|
+
//
|
250
|
+
// It turns out that this probe sequence visits every group exactly once if the
|
251
|
+
// number of groups is a power of two, since (i^2+i)/2 is a bijection in
|
252
|
+
// Z/(2^m). See https://en.wikipedia.org/wiki/Quadratic_probing
|
145
253
|
template <size_t Width>
|
146
254
|
class probe_seq {
|
147
255
|
public:
|
256
|
+
// Creates a new probe sequence using `hash` as the initial value of the
|
257
|
+
// sequence and `mask` (usually the capacity of the table) as the mask to
|
258
|
+
// apply to each value in the progression.
|
148
259
|
probe_seq(size_t hash, size_t mask) {
|
149
260
|
assert(((mask + 1) & mask) == 0 && "not a mask");
|
150
261
|
mask_ = mask;
|
151
262
|
offset_ = hash & mask_;
|
152
263
|
}
|
264
|
+
|
265
|
+
// The offset within the table, i.e., the value `p(i)` above.
|
153
266
|
size_t offset() const { return offset_; }
|
154
267
|
size_t offset(size_t i) const { return (offset_ + i) & mask_; }
|
155
268
|
|
@@ -158,7 +271,7 @@ class probe_seq {
|
|
158
271
|
offset_ += index_;
|
159
272
|
offset_ &= mask_;
|
160
273
|
}
|
161
|
-
// 0-based probe index
|
274
|
+
// 0-based probe index, a multiple of `Width`.
|
162
275
|
size_t index() const { return index_; }
|
163
276
|
|
164
277
|
private:
|
@@ -182,9 +295,9 @@ struct IsDecomposable : std::false_type {};
|
|
182
295
|
|
183
296
|
template <class Policy, class Hash, class Eq, class... Ts>
|
184
297
|
struct IsDecomposable<
|
185
|
-
absl::void_t<decltype(
|
186
|
-
|
187
|
-
|
298
|
+
absl::void_t<decltype(Policy::apply(
|
299
|
+
RequireUsableKey<typename Policy::key_type, Hash, Eq>(),
|
300
|
+
std::declval<Ts>()...))>,
|
188
301
|
Policy, Hash, Eq, Ts...> : std::true_type {};
|
189
302
|
|
190
303
|
// TODO(alkis): Switch to std::is_nothrow_swappable when gcc/clang supports it.
|
@@ -200,57 +313,84 @@ constexpr bool IsNoThrowSwappable(std::false_type /* is_swappable */) {
|
|
200
313
|
|
201
314
|
template <typename T>
|
202
315
|
uint32_t TrailingZeros(T x) {
|
203
|
-
|
204
|
-
return countr_zero(x);
|
316
|
+
ABSL_ASSUME(x != 0);
|
317
|
+
return static_cast<uint32_t>(countr_zero(x));
|
205
318
|
}
|
206
319
|
|
207
|
-
// An
|
208
|
-
// indexes of the set bits of a bitmask. When Shift=0 (platforms with SSE),
|
209
|
-
// this is a true bitmask. On non-SSE, platforms the arithematic used to
|
210
|
-
// emulate the SSE behavior works in bytes (Shift=3) and leaves each bytes as
|
211
|
-
// either 0x00 or 0x80.
|
320
|
+
// An abstract bitmask, such as that emitted by a SIMD instruction.
|
212
321
|
//
|
213
|
-
//
|
214
|
-
//
|
215
|
-
//
|
322
|
+
// Specifically, this type implements a simple bitset whose representation is
|
323
|
+
// controlled by `SignificantBits` and `Shift`. `SignificantBits` is the number
|
324
|
+
// of abstract bits in the bitset, while `Shift` is the log-base-two of the
|
325
|
+
// width of an abstract bit in the representation.
|
326
|
+
// This mask provides operations for any number of real bits set in an abstract
|
327
|
+
// bit. To add iteration on top of that, implementation must guarantee no more
|
328
|
+
// than one real bit is set in an abstract bit.
|
216
329
|
template <class T, int SignificantBits, int Shift = 0>
|
217
|
-
class
|
218
|
-
static_assert(std::is_unsigned<T>::value, "");
|
219
|
-
static_assert(Shift == 0 || Shift == 3, "");
|
220
|
-
|
330
|
+
class NonIterableBitMask {
|
221
331
|
public:
|
222
|
-
|
223
|
-
using value_type = int;
|
224
|
-
using iterator = BitMask;
|
225
|
-
using const_iterator = BitMask;
|
332
|
+
explicit NonIterableBitMask(T mask) : mask_(mask) {}
|
226
333
|
|
227
|
-
explicit
|
228
|
-
|
229
|
-
|
230
|
-
return *this;
|
231
|
-
}
|
232
|
-
explicit operator bool() const { return mask_ != 0; }
|
233
|
-
int operator*() const { return LowestBitSet(); }
|
334
|
+
explicit operator bool() const { return this->mask_ != 0; }
|
335
|
+
|
336
|
+
// Returns the index of the lowest *abstract* bit set in `self`.
|
234
337
|
uint32_t LowestBitSet() const {
|
235
338
|
return container_internal::TrailingZeros(mask_) >> Shift;
|
236
339
|
}
|
340
|
+
|
341
|
+
// Returns the index of the highest *abstract* bit set in `self`.
|
237
342
|
uint32_t HighestBitSet() const {
|
238
343
|
return static_cast<uint32_t>((bit_width(mask_) - 1) >> Shift);
|
239
344
|
}
|
240
345
|
|
241
|
-
|
242
|
-
BitMask end() const { return BitMask(0); }
|
243
|
-
|
346
|
+
// Return the number of trailing zero *abstract* bits.
|
244
347
|
uint32_t TrailingZeros() const {
|
245
348
|
return container_internal::TrailingZeros(mask_) >> Shift;
|
246
349
|
}
|
247
350
|
|
351
|
+
// Return the number of leading zero *abstract* bits.
|
248
352
|
uint32_t LeadingZeros() const {
|
249
353
|
constexpr int total_significant_bits = SignificantBits << Shift;
|
250
354
|
constexpr int extra_bits = sizeof(T) * 8 - total_significant_bits;
|
251
|
-
return countl_zero(mask_ << extra_bits) >> Shift;
|
355
|
+
return static_cast<uint32_t>(countl_zero(mask_ << extra_bits)) >> Shift;
|
252
356
|
}
|
253
357
|
|
358
|
+
T mask_;
|
359
|
+
};
|
360
|
+
|
361
|
+
// Mask that can be iterable
|
362
|
+
//
|
363
|
+
// For example, when `SignificantBits` is 16 and `Shift` is zero, this is just
|
364
|
+
// an ordinary 16-bit bitset occupying the low 16 bits of `mask`. When
|
365
|
+
// `SignificantBits` is 8 and `Shift` is 3, abstract bits are represented as
|
366
|
+
// the bytes `0x00` and `0x80`, and it occupies all 64 bits of the bitmask.
|
367
|
+
//
|
368
|
+
// For example:
|
369
|
+
// for (int i : BitMask<uint32_t, 16>(0b101)) -> yields 0, 2
|
370
|
+
// for (int i : BitMask<uint64_t, 8, 3>(0x0000000080800000)) -> yields 2, 3
|
371
|
+
template <class T, int SignificantBits, int Shift = 0>
|
372
|
+
class BitMask : public NonIterableBitMask<T, SignificantBits, Shift> {
|
373
|
+
using Base = NonIterableBitMask<T, SignificantBits, Shift>;
|
374
|
+
static_assert(std::is_unsigned<T>::value, "");
|
375
|
+
static_assert(Shift == 0 || Shift == 3, "");
|
376
|
+
|
377
|
+
public:
|
378
|
+
explicit BitMask(T mask) : Base(mask) {}
|
379
|
+
// BitMask is an iterator over the indices of its abstract bits.
|
380
|
+
using value_type = int;
|
381
|
+
using iterator = BitMask;
|
382
|
+
using const_iterator = BitMask;
|
383
|
+
|
384
|
+
BitMask& operator++() {
|
385
|
+
this->mask_ &= (this->mask_ - 1);
|
386
|
+
return *this;
|
387
|
+
}
|
388
|
+
|
389
|
+
uint32_t operator*() const { return Base::LowestBitSet(); }
|
390
|
+
|
391
|
+
BitMask begin() const { return *this; }
|
392
|
+
BitMask end() const { return BitMask(0); }
|
393
|
+
|
254
394
|
private:
|
255
395
|
friend bool operator==(const BitMask& a, const BitMask& b) {
|
256
396
|
return a.mask_ == b.mask_;
|
@@ -258,15 +398,27 @@ class BitMask {
|
|
258
398
|
friend bool operator!=(const BitMask& a, const BitMask& b) {
|
259
399
|
return a.mask_ != b.mask_;
|
260
400
|
}
|
261
|
-
|
262
|
-
T mask_;
|
263
401
|
};
|
264
402
|
|
265
403
|
using h2_t = uint8_t;
|
266
404
|
|
267
405
|
// The values here are selected for maximum performance. See the static asserts
|
268
|
-
// below for details.
|
269
|
-
|
406
|
+
// below for details.
|
407
|
+
|
408
|
+
// A `ctrl_t` is a single control byte, which can have one of four
|
409
|
+
// states: empty, deleted, full (which has an associated seven-bit h2_t value)
|
410
|
+
// and the sentinel. They have the following bit patterns:
|
411
|
+
//
|
412
|
+
// empty: 1 0 0 0 0 0 0 0
|
413
|
+
// deleted: 1 1 1 1 1 1 1 0
|
414
|
+
// full: 0 h h h h h h h // h represents the hash bits.
|
415
|
+
// sentinel: 1 1 1 1 1 1 1 1
|
416
|
+
//
|
417
|
+
// These values are specifically tuned for SSE-flavored SIMD.
|
418
|
+
// The static_asserts below detail the source of these choices.
|
419
|
+
//
|
420
|
+
// We use an enum class so that when strict aliasing is enabled, the compiler
|
421
|
+
// knows ctrl_t doesn't alias other types.
|
270
422
|
enum class ctrl_t : int8_t {
|
271
423
|
kEmpty = -128, // 0b10000000
|
272
424
|
kDeleted = -2, // 0b11111110
|
@@ -294,15 +446,17 @@ static_assert(
|
|
294
446
|
static_cast<int8_t>(ctrl_t::kSentinel) & 0x7F) != 0,
|
295
447
|
"ctrl_t::kEmpty and ctrl_t::kDeleted must share an unset bit that is not "
|
296
448
|
"shared by ctrl_t::kSentinel to make the scalar test for "
|
297
|
-
"
|
449
|
+
"MaskEmptyOrDeleted() efficient");
|
298
450
|
static_assert(ctrl_t::kDeleted == static_cast<ctrl_t>(-2),
|
299
451
|
"ctrl_t::kDeleted must be -2 to make the implementation of "
|
300
452
|
"ConvertSpecialToEmptyAndFullToDeleted efficient");
|
301
453
|
|
302
|
-
// A single block of empty control bytes for tables without any slots allocated.
|
303
|
-
// This enables removing a branch in the hot path of find().
|
304
454
|
ABSL_DLL extern const ctrl_t kEmptyGroup[16];
|
455
|
+
|
456
|
+
// Returns a pointer to a control byte group that can be used by empty tables.
|
305
457
|
inline ctrl_t* EmptyGroup() {
|
458
|
+
// Const must be cast away here; no uses of this function will actually write
|
459
|
+
// to it, because it is only used for empty tables.
|
306
460
|
return const_cast<ctrl_t*>(kEmptyGroup);
|
307
461
|
}
|
308
462
|
|
@@ -310,28 +464,61 @@ inline ctrl_t* EmptyGroup() {
|
|
310
464
|
// randomize insertion order within groups.
|
311
465
|
bool ShouldInsertBackwards(size_t hash, const ctrl_t* ctrl);
|
312
466
|
|
313
|
-
// Returns a hash
|
467
|
+
// Returns a per-table, hash salt, which changes on resize. This gets mixed into
|
468
|
+
// H1 to randomize iteration order per-table.
|
314
469
|
//
|
315
470
|
// The seed consists of the ctrl_ pointer, which adds enough entropy to ensure
|
316
471
|
// non-determinism of iteration order in most cases.
|
317
|
-
inline size_t
|
472
|
+
inline size_t PerTableSalt(const ctrl_t* ctrl) {
|
318
473
|
// The low bits of the pointer have little or no entropy because of
|
319
474
|
// alignment. We shift the pointer to try to use higher entropy bits. A
|
320
475
|
// good number seems to be 12 bits, because that aligns with page size.
|
321
476
|
return reinterpret_cast<uintptr_t>(ctrl) >> 12;
|
322
477
|
}
|
323
|
-
|
478
|
+
// Extracts the H1 portion of a hash: 57 bits mixed with a per-table salt.
|
324
479
|
inline size_t H1(size_t hash, const ctrl_t* ctrl) {
|
325
|
-
return (hash >> 7) ^
|
480
|
+
return (hash >> 7) ^ PerTableSalt(ctrl);
|
326
481
|
}
|
482
|
+
|
483
|
+
// Extracts the H2 portion of a hash: the 7 bits not used for H1.
|
484
|
+
//
|
485
|
+
// These are used as an occupied control byte.
|
327
486
|
inline h2_t H2(size_t hash) { return hash & 0x7F; }
|
328
487
|
|
488
|
+
// Helpers for checking the state of a control byte.
|
329
489
|
inline bool IsEmpty(ctrl_t c) { return c == ctrl_t::kEmpty; }
|
330
490
|
inline bool IsFull(ctrl_t c) { return c >= static_cast<ctrl_t>(0); }
|
331
491
|
inline bool IsDeleted(ctrl_t c) { return c == ctrl_t::kDeleted; }
|
332
492
|
inline bool IsEmptyOrDeleted(ctrl_t c) { return c < ctrl_t::kSentinel; }
|
333
493
|
|
334
|
-
#
|
494
|
+
#ifdef ABSL_INTERNAL_HAVE_SSE2
|
495
|
+
// Quick reference guide for intrinsics used below:
|
496
|
+
//
|
497
|
+
// * __m128i: An XMM (128-bit) word.
|
498
|
+
//
|
499
|
+
// * _mm_setzero_si128: Returns a zero vector.
|
500
|
+
// * _mm_set1_epi8: Returns a vector with the same i8 in each lane.
|
501
|
+
//
|
502
|
+
// * _mm_subs_epi8: Saturating-subtracts two i8 vectors.
|
503
|
+
// * _mm_and_si128: Ands two i128s together.
|
504
|
+
// * _mm_or_si128: Ors two i128s together.
|
505
|
+
// * _mm_andnot_si128: And-nots two i128s together.
|
506
|
+
//
|
507
|
+
// * _mm_cmpeq_epi8: Component-wise compares two i8 vectors for equality,
|
508
|
+
// filling each lane with 0x00 or 0xff.
|
509
|
+
// * _mm_cmpgt_epi8: Same as above, but using > rather than ==.
|
510
|
+
//
|
511
|
+
// * _mm_loadu_si128: Performs an unaligned load of an i128.
|
512
|
+
// * _mm_storeu_si128: Performs an unaligned store of an i128.
|
513
|
+
//
|
514
|
+
// * _mm_sign_epi8: Retains, negates, or zeroes each i8 lane of the first
|
515
|
+
// argument if the corresponding lane of the second
|
516
|
+
// argument is positive, negative, or zero, respectively.
|
517
|
+
// * _mm_movemask_epi8: Selects the sign bit out of each i8 lane and produces a
|
518
|
+
// bitmask consisting of those bits.
|
519
|
+
// * _mm_shuffle_epi8: Selects i8s from the first argument, using the low
|
520
|
+
// four bits of each i8 lane in the second argument as
|
521
|
+
// indices.
|
335
522
|
|
336
523
|
// https://github.com/abseil/abseil-cpp/issues/209
|
337
524
|
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87853
|
@@ -360,30 +547,32 @@ struct GroupSse2Impl {
|
|
360
547
|
BitMask<uint32_t, kWidth> Match(h2_t hash) const {
|
361
548
|
auto match = _mm_set1_epi8(hash);
|
362
549
|
return BitMask<uint32_t, kWidth>(
|
363
|
-
_mm_movemask_epi8(_mm_cmpeq_epi8(match, ctrl)));
|
550
|
+
static_cast<uint32_t>(_mm_movemask_epi8(_mm_cmpeq_epi8(match, ctrl))));
|
364
551
|
}
|
365
552
|
|
366
553
|
// Returns a bitmask representing the positions of empty slots.
|
367
|
-
|
368
|
-
#
|
554
|
+
NonIterableBitMask<uint32_t, kWidth> MaskEmpty() const {
|
555
|
+
#ifdef ABSL_INTERNAL_HAVE_SSSE3
|
369
556
|
// This only works because ctrl_t::kEmpty is -128.
|
370
|
-
return
|
371
|
-
_mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl)));
|
557
|
+
return NonIterableBitMask<uint32_t, kWidth>(
|
558
|
+
static_cast<uint32_t>(_mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl))));
|
372
559
|
#else
|
373
|
-
|
560
|
+
auto match = _mm_set1_epi8(static_cast<h2_t>(ctrl_t::kEmpty));
|
561
|
+
return NonIterableBitMask<uint32_t, kWidth>(
|
562
|
+
static_cast<uint32_t>(_mm_movemask_epi8(_mm_cmpeq_epi8(match, ctrl))));
|
374
563
|
#endif
|
375
564
|
}
|
376
565
|
|
377
566
|
// Returns a bitmask representing the positions of empty or deleted slots.
|
378
|
-
|
379
|
-
auto special = _mm_set1_epi8(static_cast<
|
380
|
-
return
|
381
|
-
_mm_movemask_epi8(_mm_cmpgt_epi8_fixed(special, ctrl)));
|
567
|
+
NonIterableBitMask<uint32_t, kWidth> MaskEmptyOrDeleted() const {
|
568
|
+
auto special = _mm_set1_epi8(static_cast<uint8_t>(ctrl_t::kSentinel));
|
569
|
+
return NonIterableBitMask<uint32_t, kWidth>(static_cast<uint32_t>(
|
570
|
+
_mm_movemask_epi8(_mm_cmpgt_epi8_fixed(special, ctrl))));
|
382
571
|
}
|
383
572
|
|
384
573
|
// Returns the number of trailing empty or deleted elements in the group.
|
385
574
|
uint32_t CountLeadingEmptyOrDeleted() const {
|
386
|
-
auto special = _mm_set1_epi8(static_cast<
|
575
|
+
auto special = _mm_set1_epi8(static_cast<uint8_t>(ctrl_t::kSentinel));
|
387
576
|
return TrailingZeros(static_cast<uint32_t>(
|
388
577
|
_mm_movemask_epi8(_mm_cmpgt_epi8_fixed(special, ctrl)) + 1));
|
389
578
|
}
|
@@ -391,7 +580,7 @@ struct GroupSse2Impl {
|
|
391
580
|
void ConvertSpecialToEmptyAndFullToDeleted(ctrl_t* dst) const {
|
392
581
|
auto msbs = _mm_set1_epi8(static_cast<char>(-128));
|
393
582
|
auto x126 = _mm_set1_epi8(126);
|
394
|
-
#
|
583
|
+
#ifdef ABSL_INTERNAL_HAVE_SSSE3
|
395
584
|
auto res = _mm_or_si128(_mm_shuffle_epi8(x126, ctrl), msbs);
|
396
585
|
#else
|
397
586
|
auto zero = _mm_setzero_si128();
|
@@ -405,6 +594,63 @@ struct GroupSse2Impl {
|
|
405
594
|
};
|
406
595
|
#endif // ABSL_INTERNAL_RAW_HASH_SET_HAVE_SSE2
|
407
596
|
|
597
|
+
#if defined(ABSL_INTERNAL_HAVE_ARM_NEON) && defined(ABSL_IS_LITTLE_ENDIAN)
|
598
|
+
struct GroupAArch64Impl {
|
599
|
+
static constexpr size_t kWidth = 8;
|
600
|
+
|
601
|
+
explicit GroupAArch64Impl(const ctrl_t* pos) {
|
602
|
+
ctrl = vld1_u8(reinterpret_cast<const uint8_t*>(pos));
|
603
|
+
}
|
604
|
+
|
605
|
+
BitMask<uint64_t, kWidth, 3> Match(h2_t hash) const {
|
606
|
+
uint8x8_t dup = vdup_n_u8(hash);
|
607
|
+
auto mask = vceq_u8(ctrl, dup);
|
608
|
+
constexpr uint64_t msbs = 0x8080808080808080ULL;
|
609
|
+
return BitMask<uint64_t, kWidth, 3>(
|
610
|
+
vget_lane_u64(vreinterpret_u64_u8(mask), 0) & msbs);
|
611
|
+
}
|
612
|
+
|
613
|
+
NonIterableBitMask<uint64_t, kWidth, 3> MaskEmpty() const {
|
614
|
+
uint64_t mask =
|
615
|
+
vget_lane_u64(vreinterpret_u64_u8(
|
616
|
+
vceq_s8(vdup_n_s8(static_cast<h2_t>(ctrl_t::kEmpty)),
|
617
|
+
vreinterpret_s8_u8(ctrl))),
|
618
|
+
0);
|
619
|
+
return NonIterableBitMask<uint64_t, kWidth, 3>(mask);
|
620
|
+
}
|
621
|
+
|
622
|
+
NonIterableBitMask<uint64_t, kWidth, 3> MaskEmptyOrDeleted() const {
|
623
|
+
uint64_t mask =
|
624
|
+
vget_lane_u64(vreinterpret_u64_u8(vcgt_s8(
|
625
|
+
vdup_n_s8(static_cast<int8_t>(ctrl_t::kSentinel)),
|
626
|
+
vreinterpret_s8_u8(ctrl))),
|
627
|
+
0);
|
628
|
+
return NonIterableBitMask<uint64_t, kWidth, 3>(mask);
|
629
|
+
}
|
630
|
+
|
631
|
+
uint32_t CountLeadingEmptyOrDeleted() const {
|
632
|
+
uint64_t mask = vget_lane_u64(vreinterpret_u64_u8(ctrl), 0);
|
633
|
+
// ctrl | ~(ctrl >> 7) will have the lowest bit set to zero for kEmpty and
|
634
|
+
// kDeleted. We lower all other bits and count number of trailing zeros.
|
635
|
+
// Clang and GCC optimize countr_zero to rbit+clz without any check for 0,
|
636
|
+
// so we should be fine.
|
637
|
+
constexpr uint64_t bits = 0x0101010101010101ULL;
|
638
|
+
return countr_zero((mask | ~(mask >> 7)) & bits) >> 3;
|
639
|
+
}
|
640
|
+
|
641
|
+
void ConvertSpecialToEmptyAndFullToDeleted(ctrl_t* dst) const {
|
642
|
+
uint64_t mask = vget_lane_u64(vreinterpret_u64_u8(ctrl), 0);
|
643
|
+
constexpr uint64_t msbs = 0x8080808080808080ULL;
|
644
|
+
constexpr uint64_t lsbs = 0x0101010101010101ULL;
|
645
|
+
auto x = mask & msbs;
|
646
|
+
auto res = (~x + (x >> 7)) & ~lsbs;
|
647
|
+
little_endian::Store64(dst, res);
|
648
|
+
}
|
649
|
+
|
650
|
+
uint8x8_t ctrl;
|
651
|
+
};
|
652
|
+
#endif // ABSL_INTERNAL_HAVE_ARM_NEON && ABSL_IS_LITTLE_ENDIAN
|
653
|
+
|
408
654
|
struct GroupPortableImpl {
|
409
655
|
static constexpr size_t kWidth = 8;
|
410
656
|
|
@@ -431,19 +677,23 @@ struct GroupPortableImpl {
|
|
431
677
|
return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs);
|
432
678
|
}
|
433
679
|
|
434
|
-
|
680
|
+
NonIterableBitMask<uint64_t, kWidth, 3> MaskEmpty() const {
|
435
681
|
constexpr uint64_t msbs = 0x8080808080808080ULL;
|
436
|
-
return
|
682
|
+
return NonIterableBitMask<uint64_t, kWidth, 3>((ctrl & (~ctrl << 6)) &
|
683
|
+
msbs);
|
437
684
|
}
|
438
685
|
|
439
|
-
|
686
|
+
NonIterableBitMask<uint64_t, kWidth, 3> MaskEmptyOrDeleted() const {
|
440
687
|
constexpr uint64_t msbs = 0x8080808080808080ULL;
|
441
|
-
return
|
688
|
+
return NonIterableBitMask<uint64_t, kWidth, 3>((ctrl & (~ctrl << 7)) &
|
689
|
+
msbs);
|
442
690
|
}
|
443
691
|
|
444
692
|
uint32_t CountLeadingEmptyOrDeleted() const {
|
445
|
-
|
446
|
-
|
693
|
+
// ctrl | ~(ctrl >> 7) will have the lowest bit set to zero for kEmpty and
|
694
|
+
// kDeleted. We lower all other bits and count number of trailing zeros.
|
695
|
+
constexpr uint64_t bits = 0x0101010101010101ULL;
|
696
|
+
return countr_zero((ctrl | ~(ctrl >> 7)) & bits) >> 3;
|
447
697
|
}
|
448
698
|
|
449
699
|
void ConvertSpecialToEmptyAndFullToDeleted(ctrl_t* dst) const {
|
@@ -457,32 +707,40 @@ struct GroupPortableImpl {
|
|
457
707
|
uint64_t ctrl;
|
458
708
|
};
|
459
709
|
|
460
|
-
#
|
710
|
+
#ifdef ABSL_INTERNAL_HAVE_SSE2
|
461
711
|
using Group = GroupSse2Impl;
|
712
|
+
#elif defined(ABSL_INTERNAL_HAVE_ARM_NEON) && defined(ABSL_IS_LITTLE_ENDIAN)
|
713
|
+
using Group = GroupAArch64Impl;
|
462
714
|
#else
|
463
715
|
using Group = GroupPortableImpl;
|
464
716
|
#endif
|
465
717
|
|
466
|
-
//
|
467
|
-
//
|
718
|
+
// Returns he number of "cloned control bytes".
|
719
|
+
//
|
720
|
+
// This is the number of control bytes that are present both at the beginning
|
721
|
+
// of the control byte array and at the end, such that we can create a
|
722
|
+
// `Group::kWidth`-width probe window starting from any control byte.
|
468
723
|
constexpr size_t NumClonedBytes() { return Group::kWidth - 1; }
|
469
724
|
|
470
725
|
template <class Policy, class Hash, class Eq, class Alloc>
|
471
726
|
class raw_hash_set;
|
472
727
|
|
728
|
+
// Returns whether `n` is a valid capacity (i.e., number of slots).
|
729
|
+
//
|
730
|
+
// A valid capacity is a non-zero integer `2^m - 1`.
|
473
731
|
inline bool IsValidCapacity(size_t n) { return ((n + 1) & n) == 0 && n > 0; }
|
474
732
|
|
733
|
+
// Applies the following mapping to every byte in the control array:
|
734
|
+
// * kDeleted -> kEmpty
|
735
|
+
// * kEmpty -> kEmpty
|
736
|
+
// * _ -> kDeleted
|
475
737
|
// PRECONDITION:
|
476
738
|
// IsValidCapacity(capacity)
|
477
739
|
// ctrl[capacity] == ctrl_t::kSentinel
|
478
740
|
// ctrl[i] != ctrl_t::kSentinel for all i < capacity
|
479
|
-
// Applies mapping for every byte in ctrl:
|
480
|
-
// DELETED -> EMPTY
|
481
|
-
// EMPTY -> EMPTY
|
482
|
-
// FULL -> DELETED
|
483
741
|
void ConvertDeletedToEmptyAndFullToDeleted(ctrl_t* ctrl, size_t capacity);
|
484
742
|
|
485
|
-
//
|
743
|
+
// Converts `n` into the next valid capacity, per `IsValidCapacity`.
|
486
744
|
inline size_t NormalizeCapacity(size_t n) {
|
487
745
|
return n ? ~size_t{} >> countl_zero(n) : 1;
|
488
746
|
}
|
@@ -495,8 +753,8 @@ inline size_t NormalizeCapacity(size_t n) {
|
|
495
753
|
// never need to probe (the whole table fits in one group) so we don't need a
|
496
754
|
// load factor less than 1.
|
497
755
|
|
498
|
-
// Given `capacity
|
499
|
-
//
|
756
|
+
// Given `capacity`, applies the load factor; i.e., it returns the maximum
|
757
|
+
// number of values we should put into the table before a resizing rehash.
|
500
758
|
inline size_t CapacityToGrowth(size_t capacity) {
|
501
759
|
assert(IsValidCapacity(capacity));
|
502
760
|
// `capacity*7/8`
|
@@ -506,8 +764,12 @@ inline size_t CapacityToGrowth(size_t capacity) {
|
|
506
764
|
}
|
507
765
|
return capacity - capacity / 8;
|
508
766
|
}
|
509
|
-
|
510
|
-
//
|
767
|
+
|
768
|
+
// Given `growth`, "unapplies" the load factor to find how large the capacity
|
769
|
+
// should be to stay within the load factor.
|
770
|
+
//
|
771
|
+
// This might not be a valid capacity and `NormalizeCapacity()` should be
|
772
|
+
// called on this.
|
511
773
|
inline size_t GrowthToLowerboundCapacity(size_t growth) {
|
512
774
|
// `growth*8/7`
|
513
775
|
if (Group::kWidth == 8 && growth == 7) {
|
@@ -533,16 +795,15 @@ size_t SelectBucketCountForIterRange(InputIter first, InputIter last,
|
|
533
795
|
return 0;
|
534
796
|
}
|
535
797
|
|
536
|
-
|
537
|
-
ABSL_HARDENING_ASSERT((ctrl != nullptr && IsFull(*ctrl)) &&
|
538
|
-
"Invalid operation on iterator. The element might have "
|
539
|
-
"been erased, or the table might have rehashed.");
|
540
|
-
}
|
798
|
+
#define ABSL_INTERNAL_ASSERT_IS_FULL(ctrl, msg) \
|
799
|
+
ABSL_HARDENING_ASSERT((ctrl != nullptr && IsFull(*ctrl)) && msg)
|
541
800
|
|
542
801
|
inline void AssertIsValid(ctrl_t* ctrl) {
|
543
|
-
ABSL_HARDENING_ASSERT(
|
544
|
-
|
545
|
-
|
802
|
+
ABSL_HARDENING_ASSERT(
|
803
|
+
(ctrl == nullptr || IsFull(*ctrl)) &&
|
804
|
+
"Invalid operation on iterator. The element might have "
|
805
|
+
"been erased, the table might have rehashed, or this may "
|
806
|
+
"be an end() iterator.");
|
546
807
|
}
|
547
808
|
|
548
809
|
struct FindInfo {
|
@@ -550,44 +811,40 @@ struct FindInfo {
|
|
550
811
|
size_t probe_length;
|
551
812
|
};
|
552
813
|
|
553
|
-
//
|
554
|
-
//
|
555
|
-
// - large: For the rest.
|
814
|
+
// Whether a table is "small". A small table fits entirely into a probing
|
815
|
+
// group, i.e., has a capacity < `Group::kWidth`.
|
556
816
|
//
|
557
|
-
//
|
558
|
-
//
|
559
|
-
//
|
560
|
-
// This is important to make 1 a valid capacity.
|
817
|
+
// In small mode we are able to use the whole capacity. The extra control
|
818
|
+
// bytes give us at least one "empty" control byte to stop the iteration.
|
819
|
+
// This is important to make 1 a valid capacity.
|
561
820
|
//
|
562
|
-
//
|
563
|
-
//
|
564
|
-
//
|
565
|
-
//
|
566
|
-
//
|
821
|
+
// In small mode only the first `capacity` control bytes after the sentinel
|
822
|
+
// are valid. The rest contain dummy ctrl_t::kEmpty values that do not
|
823
|
+
// represent a real slot. This is important to take into account on
|
824
|
+
// `find_first_non_full()`, where we never try
|
825
|
+
// `ShouldInsertBackwards()` for small tables.
|
567
826
|
inline bool is_small(size_t capacity) { return capacity < Group::kWidth - 1; }
|
568
827
|
|
828
|
+
// Begins a probing operation on `ctrl`, using `hash`.
|
569
829
|
inline probe_seq<Group::kWidth> probe(const ctrl_t* ctrl, size_t hash,
|
570
830
|
size_t capacity) {
|
571
831
|
return probe_seq<Group::kWidth>(H1(hash, ctrl), capacity);
|
572
832
|
}
|
573
833
|
|
574
|
-
// Probes
|
575
|
-
//
|
576
|
-
// NOTE: this function must work with tables having both ctrl_t::kEmpty and
|
577
|
-
// ctrl_t::kDeleted in one group. Such tables appears during
|
578
|
-
// drop_deletes_without_resize.
|
834
|
+
// Probes an array of control bits using a probe sequence derived from `hash`,
|
835
|
+
// and returns the offset corresponding to the first deleted or empty slot.
|
579
836
|
//
|
580
|
-
//
|
581
|
-
//
|
582
|
-
//
|
583
|
-
//
|
837
|
+
// Behavior when the entire table is full is undefined.
|
838
|
+
//
|
839
|
+
// NOTE: this function must work with tables having both empty and deleted
|
840
|
+
// slots in the same group. Such tables appear during `erase()`.
|
584
841
|
template <typename = void>
|
585
842
|
inline FindInfo find_first_non_full(const ctrl_t* ctrl, size_t hash,
|
586
843
|
size_t capacity) {
|
587
844
|
auto seq = probe(ctrl, hash, capacity);
|
588
845
|
while (true) {
|
589
846
|
Group g{ctrl + seq.offset()};
|
590
|
-
auto mask = g.
|
847
|
+
auto mask = g.MaskEmptyOrDeleted();
|
591
848
|
if (mask) {
|
592
849
|
#if !defined(NDEBUG)
|
593
850
|
// We want to add entropy even when ASLR is not enabled.
|
@@ -610,7 +867,8 @@ inline FindInfo find_first_non_full(const ctrl_t* ctrl, size_t hash,
|
|
610
867
|
// corresponding translation unit.
|
611
868
|
extern template FindInfo find_first_non_full(const ctrl_t*, size_t, size_t);
|
612
869
|
|
613
|
-
//
|
870
|
+
// Sets `ctrl` to `{kEmpty, kSentinel, ..., kEmpty}`, marking the entire
|
871
|
+
// array as marked as empty.
|
614
872
|
inline void ResetCtrl(size_t capacity, ctrl_t* ctrl, const void* slot,
|
615
873
|
size_t slot_size) {
|
616
874
|
std::memset(ctrl, static_cast<int8_t>(ctrl_t::kEmpty),
|
@@ -619,8 +877,10 @@ inline void ResetCtrl(size_t capacity, ctrl_t* ctrl, const void* slot,
|
|
619
877
|
SanitizerPoisonMemoryRegion(slot, slot_size * capacity);
|
620
878
|
}
|
621
879
|
|
622
|
-
// Sets
|
623
|
-
//
|
880
|
+
// Sets `ctrl[i]` to `h`.
|
881
|
+
//
|
882
|
+
// Unlike setting it directly, this function will perform bounds checks and
|
883
|
+
// mirror the value to the cloned tail if necessary.
|
624
884
|
inline void SetCtrl(size_t i, ctrl_t h, size_t capacity, ctrl_t* ctrl,
|
625
885
|
const void* slot, size_t slot_size) {
|
626
886
|
assert(i < capacity);
|
@@ -636,25 +896,28 @@ inline void SetCtrl(size_t i, ctrl_t h, size_t capacity, ctrl_t* ctrl,
|
|
636
896
|
ctrl[((i - NumClonedBytes()) & capacity) + (NumClonedBytes() & capacity)] = h;
|
637
897
|
}
|
638
898
|
|
899
|
+
// Overload for setting to an occupied `h2_t` rather than a special `ctrl_t`.
|
639
900
|
inline void SetCtrl(size_t i, h2_t h, size_t capacity, ctrl_t* ctrl,
|
640
901
|
const void* slot, size_t slot_size) {
|
641
902
|
SetCtrl(i, static_cast<ctrl_t>(h), capacity, ctrl, slot, slot_size);
|
642
903
|
}
|
643
904
|
|
644
|
-
//
|
645
|
-
//
|
646
|
-
// SlotOffset returns the offset of the slots into the allocated block.
|
905
|
+
// Given the capacity of a table, computes the offset (from the start of the
|
906
|
+
// backing allocation) at which the slots begin.
|
647
907
|
inline size_t SlotOffset(size_t capacity, size_t slot_align) {
|
648
908
|
assert(IsValidCapacity(capacity));
|
649
909
|
const size_t num_control_bytes = capacity + 1 + NumClonedBytes();
|
650
910
|
return (num_control_bytes + slot_align - 1) & (~slot_align + 1);
|
651
911
|
}
|
652
912
|
|
653
|
-
//
|
913
|
+
// Given the capacity of a table, computes the total size of the backing
|
914
|
+
// array.
|
654
915
|
inline size_t AllocSize(size_t capacity, size_t slot_size, size_t slot_align) {
|
655
916
|
return SlotOffset(capacity, slot_align) + capacity * slot_size;
|
656
917
|
}
|
657
918
|
|
919
|
+
// A SwissTable.
|
920
|
+
//
|
658
921
|
// Policy: a policy defines how to perform different operations on
|
659
922
|
// the slots of the hashtable (see hash_policy_traits.h for the full interface
|
660
923
|
// of policy).
|
@@ -769,16 +1032,22 @@ class raw_hash_set {
|
|
769
1032
|
|
770
1033
|
// PRECONDITION: not an end() iterator.
|
771
1034
|
reference operator*() const {
|
772
|
-
|
1035
|
+
ABSL_INTERNAL_ASSERT_IS_FULL(ctrl_,
|
1036
|
+
"operator*() called on invalid iterator.");
|
773
1037
|
return PolicyTraits::element(slot_);
|
774
1038
|
}
|
775
1039
|
|
776
1040
|
// PRECONDITION: not an end() iterator.
|
777
|
-
pointer operator->() const {
|
1041
|
+
pointer operator->() const {
|
1042
|
+
ABSL_INTERNAL_ASSERT_IS_FULL(ctrl_,
|
1043
|
+
"operator-> called on invalid iterator.");
|
1044
|
+
return &operator*();
|
1045
|
+
}
|
778
1046
|
|
779
1047
|
// PRECONDITION: not an end() iterator.
|
780
1048
|
iterator& operator++() {
|
781
|
-
|
1049
|
+
ABSL_INTERNAL_ASSERT_IS_FULL(ctrl_,
|
1050
|
+
"operator++ called on invalid iterator.");
|
782
1051
|
++ctrl_;
|
783
1052
|
++slot_;
|
784
1053
|
skip_empty_or_deleted();
|
@@ -804,9 +1073,13 @@ class raw_hash_set {
|
|
804
1073
|
iterator(ctrl_t* ctrl, slot_type* slot) : ctrl_(ctrl), slot_(slot) {
|
805
1074
|
// This assumption helps the compiler know that any non-end iterator is
|
806
1075
|
// not equal to any end iterator.
|
807
|
-
|
1076
|
+
ABSL_ASSUME(ctrl != nullptr);
|
808
1077
|
}
|
809
1078
|
|
1079
|
+
// Fixes up `ctrl_` to point to a full by advancing it and `slot_` until
|
1080
|
+
// they reach one.
|
1081
|
+
//
|
1082
|
+
// If a sentinel is reached, we null both of them out instead.
|
810
1083
|
void skip_empty_or_deleted() {
|
811
1084
|
while (IsEmptyOrDeleted(*ctrl_)) {
|
812
1085
|
uint32_t shift = Group{ctrl_}.CountLeadingEmptyOrDeleted();
|
@@ -1103,8 +1376,7 @@ class raw_hash_set {
|
|
1103
1376
|
// m.insert(std::make_pair("abc", 42));
|
1104
1377
|
// TODO(cheshire): A type alias T2 is introduced as a workaround for the nvcc
|
1105
1378
|
// bug.
|
1106
|
-
template <class T, RequiresInsertable<T> = 0,
|
1107
|
-
class T2 = T,
|
1379
|
+
template <class T, RequiresInsertable<T> = 0, class T2 = T,
|
1108
1380
|
typename std::enable_if<IsDecomposable<T2>::value, int>::type = 0,
|
1109
1381
|
T* = nullptr>
|
1110
1382
|
std::pair<iterator, bool> insert(T&& value) {
|
@@ -1324,7 +1596,8 @@ class raw_hash_set {
|
|
1324
1596
|
// This overload is necessary because otherwise erase<K>(const K&) would be
|
1325
1597
|
// a better match if non-const iterator is passed as an argument.
|
1326
1598
|
void erase(iterator it) {
|
1327
|
-
|
1599
|
+
ABSL_INTERNAL_ASSERT_IS_FULL(it.ctrl_,
|
1600
|
+
"erase() called on invalid iterator.");
|
1328
1601
|
PolicyTraits::destroy(&alloc_ref(), it.slot_);
|
1329
1602
|
erase_meta_only(it);
|
1330
1603
|
}
|
@@ -1358,7 +1631,8 @@ class raw_hash_set {
|
|
1358
1631
|
}
|
1359
1632
|
|
1360
1633
|
node_type extract(const_iterator position) {
|
1361
|
-
|
1634
|
+
ABSL_INTERNAL_ASSERT_IS_FULL(position.inner_.ctrl_,
|
1635
|
+
"extract() called on invalid iterator.");
|
1362
1636
|
auto node =
|
1363
1637
|
CommonAccess::Transfer<node_type>(alloc_ref(), position.inner_.slot_);
|
1364
1638
|
erase_meta_only(position);
|
@@ -1445,12 +1719,13 @@ class raw_hash_set {
|
|
1445
1719
|
template <class K = key_type>
|
1446
1720
|
void prefetch(const key_arg<K>& key) const {
|
1447
1721
|
(void)key;
|
1448
|
-
|
1722
|
+
// Avoid probing if we won't be able to prefetch the addresses received.
|
1723
|
+
#ifdef ABSL_INTERNAL_HAVE_PREFETCH
|
1449
1724
|
prefetch_heap_block();
|
1450
1725
|
auto seq = probe(ctrl_, hash_ref()(key), capacity_);
|
1451
|
-
|
1452
|
-
|
1453
|
-
#endif //
|
1726
|
+
base_internal::PrefetchT0(ctrl_ + seq.offset());
|
1727
|
+
base_internal::PrefetchT0(slots_ + seq.offset());
|
1728
|
+
#endif // ABSL_INTERNAL_HAVE_PREFETCH
|
1454
1729
|
}
|
1455
1730
|
|
1456
1731
|
// The API of find() has two extensions.
|
@@ -1465,13 +1740,13 @@ class raw_hash_set {
|
|
1465
1740
|
auto seq = probe(ctrl_, hash, capacity_);
|
1466
1741
|
while (true) {
|
1467
1742
|
Group g{ctrl_ + seq.offset()};
|
1468
|
-
for (
|
1743
|
+
for (uint32_t i : g.Match(H2(hash))) {
|
1469
1744
|
if (ABSL_PREDICT_TRUE(PolicyTraits::apply(
|
1470
1745
|
EqualElement<K>{key, eq_ref()},
|
1471
1746
|
PolicyTraits::element(slots_ + seq.offset(i)))))
|
1472
1747
|
return iterator_at(seq.offset(i));
|
1473
1748
|
}
|
1474
|
-
if (ABSL_PREDICT_TRUE(g.
|
1749
|
+
if (ABSL_PREDICT_TRUE(g.MaskEmpty())) return end();
|
1475
1750
|
seq.next();
|
1476
1751
|
assert(seq.index() <= capacity_ && "full table!");
|
1477
1752
|
}
|
@@ -1538,6 +1813,14 @@ class raw_hash_set {
|
|
1538
1813
|
return !(a == b);
|
1539
1814
|
}
|
1540
1815
|
|
1816
|
+
template <typename H>
|
1817
|
+
friend typename std::enable_if<H::template is_hashable<value_type>::value,
|
1818
|
+
H>::type
|
1819
|
+
AbslHashValue(H h, const raw_hash_set& s) {
|
1820
|
+
return H::combine(H::combine_unordered(std::move(h), s.begin(), s.end()),
|
1821
|
+
s.size());
|
1822
|
+
}
|
1823
|
+
|
1541
1824
|
friend void swap(raw_hash_set& a,
|
1542
1825
|
raw_hash_set& b) noexcept(noexcept(a.swap(b))) {
|
1543
1826
|
a.swap(b);
|
@@ -1603,17 +1886,17 @@ class raw_hash_set {
|
|
1603
1886
|
slot_type&& slot;
|
1604
1887
|
};
|
1605
1888
|
|
1606
|
-
//
|
1607
|
-
//
|
1608
|
-
// This
|
1609
|
-
// another place.
|
1889
|
+
// Erases, but does not destroy, the value pointed to by `it`.
|
1890
|
+
//
|
1891
|
+
// This merely updates the pertinent control byte. This can be used in
|
1892
|
+
// conjunction with Policy::transfer to move the object to another place.
|
1610
1893
|
void erase_meta_only(const_iterator it) {
|
1611
1894
|
assert(IsFull(*it.inner_.ctrl_) && "erasing a dangling iterator");
|
1612
1895
|
--size_;
|
1613
|
-
const size_t index = it.inner_.ctrl_ - ctrl_;
|
1896
|
+
const size_t index = static_cast<size_t>(it.inner_.ctrl_ - ctrl_);
|
1614
1897
|
const size_t index_before = (index - Group::kWidth) & capacity_;
|
1615
|
-
const auto empty_after = Group(it.inner_.ctrl_).
|
1616
|
-
const auto empty_before = Group(ctrl_ + index_before).
|
1898
|
+
const auto empty_after = Group(it.inner_.ctrl_).MaskEmpty();
|
1899
|
+
const auto empty_before = Group(ctrl_ + index_before).MaskEmpty();
|
1617
1900
|
|
1618
1901
|
// We count how many consecutive non empties we have to the right and to the
|
1619
1902
|
// left of `it`. If the sum is >= kWidth then there is at least one probe
|
@@ -1629,6 +1912,11 @@ class raw_hash_set {
|
|
1629
1912
|
infoz().RecordErase();
|
1630
1913
|
}
|
1631
1914
|
|
1915
|
+
// Allocates a backing array for `self` and initializes its control bytes.
|
1916
|
+
// This reads `capacity_` and updates all other fields based on the result of
|
1917
|
+
// the allocation.
|
1918
|
+
//
|
1919
|
+
// This does not free the currently held array; `capacity_` must be nonzero.
|
1632
1920
|
void initialize_slots() {
|
1633
1921
|
assert(capacity_);
|
1634
1922
|
// Folks with custom allocators often make unwarranted assumptions about the
|
@@ -1657,6 +1945,10 @@ class raw_hash_set {
|
|
1657
1945
|
infoz().RecordStorageChanged(size_, capacity_);
|
1658
1946
|
}
|
1659
1947
|
|
1948
|
+
// Destroys all slots in the backing array, frees the backing array, and
|
1949
|
+
// clears all top-level book-keeping data.
|
1950
|
+
//
|
1951
|
+
// This essentially implements `map = raw_hash_set();`.
|
1660
1952
|
void destroy_slots() {
|
1661
1953
|
if (!capacity_) return;
|
1662
1954
|
for (size_t i = 0; i != capacity_; ++i) {
|
@@ -1707,6 +1999,9 @@ class raw_hash_set {
|
|
1707
1999
|
infoz().RecordRehash(total_probe_length);
|
1708
2000
|
}
|
1709
2001
|
|
2002
|
+
// Prunes control bytes to remove as many tombstones as possible.
|
2003
|
+
//
|
2004
|
+
// See the comment on `rehash_and_grow_if_necessary()`.
|
1710
2005
|
void drop_deletes_without_resize() ABSL_ATTRIBUTE_NOINLINE {
|
1711
2006
|
assert(IsValidCapacity(capacity_));
|
1712
2007
|
assert(!is_small(capacity_));
|
@@ -1773,6 +2068,11 @@ class raw_hash_set {
|
|
1773
2068
|
infoz().RecordRehash(total_probe_length);
|
1774
2069
|
}
|
1775
2070
|
|
2071
|
+
// Called whenever the table *might* need to conditionally grow.
|
2072
|
+
//
|
2073
|
+
// This function is an optimization opportunity to perform a rehash even when
|
2074
|
+
// growth is unnecessary, because vacating tombstones is beneficial for
|
2075
|
+
// performance in the long-run.
|
1776
2076
|
void rehash_and_grow_if_necessary() {
|
1777
2077
|
if (capacity_ == 0) {
|
1778
2078
|
resize(1);
|
@@ -1832,12 +2132,12 @@ class raw_hash_set {
|
|
1832
2132
|
auto seq = probe(ctrl_, hash, capacity_);
|
1833
2133
|
while (true) {
|
1834
2134
|
Group g{ctrl_ + seq.offset()};
|
1835
|
-
for (
|
2135
|
+
for (uint32_t i : g.Match(H2(hash))) {
|
1836
2136
|
if (ABSL_PREDICT_TRUE(PolicyTraits::element(slots_ + seq.offset(i)) ==
|
1837
2137
|
elem))
|
1838
2138
|
return true;
|
1839
2139
|
}
|
1840
|
-
if (ABSL_PREDICT_TRUE(g.
|
2140
|
+
if (ABSL_PREDICT_TRUE(g.MaskEmpty())) return false;
|
1841
2141
|
seq.next();
|
1842
2142
|
assert(seq.index() <= capacity_ && "full table!");
|
1843
2143
|
}
|
@@ -1857,6 +2157,9 @@ class raw_hash_set {
|
|
1857
2157
|
}
|
1858
2158
|
|
1859
2159
|
protected:
|
2160
|
+
// Attempts to find `key` in the table; if it isn't found, returns a slot that
|
2161
|
+
// the value can be inserted into, with the control byte already set to
|
2162
|
+
// `key`'s H2.
|
1860
2163
|
template <class K>
|
1861
2164
|
std::pair<size_t, bool> find_or_prepare_insert(const K& key) {
|
1862
2165
|
prefetch_heap_block();
|
@@ -1864,19 +2167,23 @@ class raw_hash_set {
|
|
1864
2167
|
auto seq = probe(ctrl_, hash, capacity_);
|
1865
2168
|
while (true) {
|
1866
2169
|
Group g{ctrl_ + seq.offset()};
|
1867
|
-
for (
|
2170
|
+
for (uint32_t i : g.Match(H2(hash))) {
|
1868
2171
|
if (ABSL_PREDICT_TRUE(PolicyTraits::apply(
|
1869
2172
|
EqualElement<K>{key, eq_ref()},
|
1870
2173
|
PolicyTraits::element(slots_ + seq.offset(i)))))
|
1871
2174
|
return {seq.offset(i), false};
|
1872
2175
|
}
|
1873
|
-
if (ABSL_PREDICT_TRUE(g.
|
2176
|
+
if (ABSL_PREDICT_TRUE(g.MaskEmpty())) break;
|
1874
2177
|
seq.next();
|
1875
2178
|
assert(seq.index() <= capacity_ && "full table!");
|
1876
2179
|
}
|
1877
2180
|
return {prepare_insert(hash), true};
|
1878
2181
|
}
|
1879
2182
|
|
2183
|
+
// Given the hash of a value not currently in the table, finds the next
|
2184
|
+
// viable slot index to insert it at.
|
2185
|
+
//
|
2186
|
+
// REQUIRES: At least one non-full slot available.
|
1880
2187
|
size_t prepare_insert(size_t hash) ABSL_ATTRIBUTE_NOINLINE {
|
1881
2188
|
auto target = find_first_non_full(ctrl_, hash, capacity_);
|
1882
2189
|
if (ABSL_PREDICT_FALSE(growth_left() == 0 &&
|
@@ -1920,15 +2227,23 @@ class raw_hash_set {
|
|
1920
2227
|
growth_left() = CapacityToGrowth(capacity()) - size_;
|
1921
2228
|
}
|
1922
2229
|
|
2230
|
+
// The number of slots we can still fill without needing to rehash.
|
2231
|
+
//
|
2232
|
+
// This is stored separately due to tombstones: we do not include tombstones
|
2233
|
+
// in the growth capacity, because we'd like to rehash when the table is
|
2234
|
+
// otherwise filled with tombstones: otherwise, probe sequences might get
|
2235
|
+
// unacceptably long without triggering a rehash. Callers can also force a
|
2236
|
+
// rehash via the standard `rehash(0)`, which will recompute this value as a
|
2237
|
+
// side-effect.
|
2238
|
+
//
|
2239
|
+
// See `CapacityToGrowth()`.
|
1923
2240
|
size_t& growth_left() { return settings_.template get<0>(); }
|
1924
2241
|
|
2242
|
+
// Prefetch the heap-allocated memory region to resolve potential TLB misses.
|
2243
|
+
// This is intended to overlap with execution of calculating the hash for a
|
2244
|
+
// key.
|
1925
2245
|
void prefetch_heap_block() const {
|
1926
|
-
|
1927
|
-
// misses. This is intended to overlap with execution of calculating the
|
1928
|
-
// hash for a key.
|
1929
|
-
#if defined(__GNUC__)
|
1930
|
-
__builtin_prefetch(static_cast<const void*>(ctrl_), 0, 1);
|
1931
|
-
#endif // __GNUC__
|
2246
|
+
base_internal::PrefetchT2(ctrl_);
|
1932
2247
|
}
|
1933
2248
|
|
1934
2249
|
HashtablezInfoHandle& infoz() { return settings_.template get<1>(); }
|
@@ -1945,20 +2260,33 @@ class raw_hash_set {
|
|
1945
2260
|
// TODO(alkis): Investigate removing some of these fields:
|
1946
2261
|
// - ctrl/slots can be derived from each other
|
1947
2262
|
// - size can be moved into the slot array
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
2263
|
+
|
2264
|
+
// The control bytes (and, also, a pointer to the base of the backing array).
|
2265
|
+
//
|
2266
|
+
// This contains `capacity_ + 1 + NumClonedBytes()` entries, even
|
2267
|
+
// when the table is empty (hence EmptyGroup).
|
2268
|
+
ctrl_t* ctrl_ = EmptyGroup();
|
2269
|
+
// The beginning of the slots, located at `SlotOffset()` bytes after
|
2270
|
+
// `ctrl_`. May be null for empty tables.
|
2271
|
+
slot_type* slots_ = nullptr;
|
2272
|
+
|
2273
|
+
// The number of filled slots.
|
2274
|
+
size_t size_ = 0;
|
2275
|
+
|
2276
|
+
// The total number of available slots.
|
2277
|
+
size_t capacity_ = 0;
|
1952
2278
|
absl::container_internal::CompressedTuple<size_t /* growth_left */,
|
1953
2279
|
HashtablezInfoHandle, hasher,
|
1954
2280
|
key_equal, allocator_type>
|
1955
|
-
settings_{
|
2281
|
+
settings_{0u, HashtablezInfoHandle{}, hasher{}, key_equal{},
|
1956
2282
|
allocator_type{}};
|
1957
2283
|
};
|
1958
2284
|
|
1959
2285
|
// Erases all elements that satisfy the predicate `pred` from the container `c`.
|
1960
2286
|
template <typename P, typename H, typename E, typename A, typename Predicate>
|
1961
|
-
|
2287
|
+
typename raw_hash_set<P, H, E, A>::size_type EraseIf(
|
2288
|
+
Predicate& pred, raw_hash_set<P, H, E, A>* c) {
|
2289
|
+
const auto initial_size = c->size();
|
1962
2290
|
for (auto it = c->begin(), last = c->end(); it != last;) {
|
1963
2291
|
if (pred(*it)) {
|
1964
2292
|
c->erase(it++);
|
@@ -1966,6 +2294,7 @@ void EraseIf(Predicate& pred, raw_hash_set<P, H, E, A>* c) {
|
|
1966
2294
|
++it;
|
1967
2295
|
}
|
1968
2296
|
}
|
2297
|
+
return initial_size - c->size();
|
1969
2298
|
}
|
1970
2299
|
|
1971
2300
|
namespace hashtable_debug_internal {
|
@@ -1981,7 +2310,7 @@ struct HashtableDebugAccess<Set, absl::void_t<typename Set::raw_hash_set>> {
|
|
1981
2310
|
auto seq = probe(set.ctrl_, hash, set.capacity_);
|
1982
2311
|
while (true) {
|
1983
2312
|
container_internal::Group g{set.ctrl_ + seq.offset()};
|
1984
|
-
for (
|
2313
|
+
for (uint32_t i : g.Match(container_internal::H2(hash))) {
|
1985
2314
|
if (Traits::apply(
|
1986
2315
|
typename Set::template EqualElement<typename Set::key_type>{
|
1987
2316
|
key, set.eq_ref()},
|
@@ -1989,7 +2318,7 @@ struct HashtableDebugAccess<Set, absl::void_t<typename Set::raw_hash_set>> {
|
|
1989
2318
|
return num_probes;
|
1990
2319
|
++num_probes;
|
1991
2320
|
}
|
1992
|
-
if (g.
|
2321
|
+
if (g.MaskEmpty()) return num_probes;
|
1993
2322
|
seq.next();
|
1994
2323
|
++num_probes;
|
1995
2324
|
}
|
@@ -2031,4 +2360,6 @@ struct HashtableDebugAccess<Set, absl::void_t<typename Set::raw_hash_set>> {
|
|
2031
2360
|
ABSL_NAMESPACE_END
|
2032
2361
|
} // namespace absl
|
2033
2362
|
|
2363
|
+
#undef ABSL_INTERNAL_ASSERT_IS_FULL
|
2364
|
+
|
2034
2365
|
#endif // ABSL_CONTAINER_INTERNAL_RAW_HASH_SET_H_
|