grpc 1.57.0.pre1 → 1.58.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +534 -284
- data/include/grpc/event_engine/event_engine.h +0 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +371 -0
- data/include/grpc/impl/grpc_types.h +1 -353
- data/include/grpc/module.modulemap +1 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +7 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +10 -5
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +5 -3
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +115 -109
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +0 -5
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +7 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -3
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +6 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +8 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +9 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +41 -14
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +9 -5
- data/src/core/ext/filters/client_channel/subchannel.h +8 -2
- data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -12
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +357 -358
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -18
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +63 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +30 -57
- data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -7
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +81 -89
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
- data/src/core/ext/xds/xds_client_grpc.cc +1 -0
- data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
- data/src/core/ext/xds/xds_http_filters.h +2 -4
- data/src/core/ext/xds/xds_http_rbac_filter.cc +3 -8
- data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
- data/src/core/ext/xds/xds_lb_policy_registry.cc +3 -6
- data/src/core/ext/xds/xds_routing.cc +2 -2
- data/src/core/ext/xds/xds_transport_grpc.cc +1 -0
- data/src/core/lib/avl/avl.h +10 -173
- data/src/core/lib/channel/call_tracer.cc +289 -0
- data/src/core/lib/channel/call_tracer.h +35 -0
- data/src/core/lib/channel/channel_args.cc +84 -79
- data/src/core/lib/channel/channel_args.h +29 -17
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +4 -1
- data/src/core/lib/compression/compression_internal.cc +8 -4
- data/src/core/lib/debug/stats_data.cc +93 -21
- data/src/core/lib/debug/stats_data.h +41 -0
- data/src/core/lib/event_engine/ares_resolver.cc +712 -0
- data/src/core/lib/event_engine/ares_resolver.h +150 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -3
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +2 -2
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
- data/src/core/lib/event_engine/forkable.cc +15 -1
- data/src/core/lib/event_engine/forkable.h +15 -0
- data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +25 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +47 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +12 -1
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +1 -0
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +7 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +86 -111
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +15 -61
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +3 -4
- data/src/core/lib/experiments/config.cc +14 -0
- data/src/core/lib/experiments/experiments.cc +141 -304
- data/src/core/lib/experiments/experiments.h +16 -17
- data/src/core/lib/gprpp/ref_counted.h +3 -1
- data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
- data/src/core/lib/gprpp/ref_counted_string.h +146 -0
- data/src/core/lib/gprpp/time.h +2 -2
- data/src/core/lib/gprpp/work_serializer.cc +36 -0
- data/src/core/lib/gprpp/work_serializer.h +5 -0
- data/src/core/lib/http/httpcli_security_connector.cc +1 -0
- data/src/core/lib/iomgr/buffer_list.cc +2 -0
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +7 -22
- data/src/core/lib/iomgr/tcp_posix.cc +3 -3
- data/src/core/lib/promise/detail/basic_seq.h +1 -372
- data/src/core/lib/promise/detail/seq_state.h +2076 -0
- data/src/core/lib/promise/seq.h +19 -2
- data/src/core/lib/promise/sleep.h +5 -10
- data/src/core/lib/promise/try_seq.h +34 -2
- data/src/core/lib/resource_quota/api.cc +1 -0
- data/src/core/lib/resource_quota/arena.cc +2 -0
- data/src/core/lib/resource_quota/arena.h +42 -8
- data/src/core/lib/resource_quota/memory_quota.cc +0 -1
- data/src/core/lib/resource_quota/resource_quota.h +1 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/rbac_policy.h +1 -1
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +42 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +1 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
- data/src/core/lib/security/transport/security_handshaker.cc +1 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
- data/src/core/lib/surface/call.cc +32 -8
- data/src/core/lib/surface/channel.cc +1 -0
- data/src/core/lib/surface/completion_queue.cc +10 -0
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/server.cc +67 -64
- data/src/core/lib/surface/server.h +1 -15
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
- data/src/core/tsi/ssl_transport_security.cc +11 -0
- data/src/ruby/ext/grpc/rb_channel.c +1 -53
- data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/test/client.rb +16 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
- data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +8 -8
- data/third_party/abseil-cpp/absl/base/config.h +89 -106
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
- data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
- data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
- data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
- data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
- data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
- data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
- data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
- data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
- data/third_party/abseil-cpp/absl/status/status.cc +11 -7
- data/third_party/abseil-cpp/absl/status/status.h +11 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
- data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
- data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
- data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
- data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
- data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
- data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
- data/third_party/abseil-cpp/absl/strings/match.h +19 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
- data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
- data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
- data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
- data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
- data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
- data/third_party/abseil-cpp/absl/time/time.cc +9 -2
- data/third_party/abseil-cpp/absl/time/time.h +115 -15
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
- data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
- data/third_party/abseil-cpp/absl/types/optional.h +15 -13
- data/third_party/abseil-cpp/absl/types/span.h +1 -2
- data/third_party/boringssl-with-bazel/err_data.c +15 -14
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -48
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +11 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +9 -14
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +10 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +39 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +13 -21
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +6 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +7 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +20 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +50 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -0
- metadata +39 -31
- data/src/core/lib/promise/detail/basic_join.h +0 -197
- data/src/core/lib/promise/detail/switch.h +0 -1455
- data/src/core/lib/promise/try_join.h +0 -82
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
- data/third_party/re2/util/benchmark.h +0 -156
- data/third_party/re2/util/flags.h +0 -26
- data/third_party/re2/util/malloc_counter.h +0 -19
- data/third_party/re2/util/pcre.cc +0 -1025
- data/third_party/re2/util/pcre.h +0 -681
- data/third_party/re2/util/test.h +0 -50
- data/third_party/upb/upb/mini_table.h +0 -36
- data/third_party/zlib/gzclose.c +0 -25
- data/third_party/zlib/gzlib.c +0 -639
- data/third_party/zlib/gzread.c +0 -650
- data/third_party/zlib/gzwrite.c +0 -677
@@ -56,6 +56,10 @@
|
|
56
56
|
#include "absl/types/variant.h"
|
57
57
|
#include "absl/utility/utility.h"
|
58
58
|
|
59
|
+
#ifdef ABSL_HAVE_STD_STRING_VIEW
|
60
|
+
#include <string_view>
|
61
|
+
#endif
|
62
|
+
|
59
63
|
namespace absl {
|
60
64
|
ABSL_NAMESPACE_BEGIN
|
61
65
|
|
@@ -424,7 +428,7 @@ H AbslHashValue(H hash_state, std::nullptr_t) {
|
|
424
428
|
|
425
429
|
// AbslHashValue() for hashing pointers-to-member
|
426
430
|
template <typename H, typename T, typename C>
|
427
|
-
H AbslHashValue(H hash_state, T C::*
|
431
|
+
H AbslHashValue(H hash_state, T C::*ptr) {
|
428
432
|
auto salient_ptm_size = [](std::size_t n) -> std::size_t {
|
429
433
|
#if defined(_MSC_VER)
|
430
434
|
// Pointers-to-member-function on MSVC consist of one pointer plus 0, 1, 2,
|
@@ -442,8 +446,8 @@ H AbslHashValue(H hash_state, T C::* ptr) {
|
|
442
446
|
return n == 24 ? 20 : n == 16 ? 12 : n;
|
443
447
|
}
|
444
448
|
#else
|
445
|
-
|
446
|
-
|
449
|
+
// On other platforms, we assume that pointers-to-members do not have
|
450
|
+
// padding.
|
447
451
|
#ifdef __cpp_lib_has_unique_object_representations
|
448
452
|
static_assert(std::has_unique_object_representations<T C::*>::value);
|
449
453
|
#endif // __cpp_lib_has_unique_object_representations
|
@@ -516,14 +520,15 @@ H AbslHashValue(H hash_state, const std::shared_ptr<T>& ptr) {
|
|
516
520
|
// the same character sequence. These types are:
|
517
521
|
//
|
518
522
|
// - `absl::Cord`
|
519
|
-
// - `std::string` (and std::basic_string<
|
520
|
-
// any allocator A)
|
521
|
-
// - `absl::string_view
|
523
|
+
// - `std::string` (and std::basic_string<T, std::char_traits<T>, A> for
|
524
|
+
// any allocator A and any T in {char, wchar_t, char16_t, char32_t})
|
525
|
+
// - `absl::string_view`, `std::string_view`, `std::wstring_view`,
|
526
|
+
// `std::u16string_view`, and `std::u32_string_view`.
|
522
527
|
//
|
523
|
-
// For simplicity, we currently support only
|
524
|
-
// be broadened, if necessary, but
|
525
|
-
// misbehave in cases where the traits'
|
526
|
-
// on the underlying character type.
|
528
|
+
// For simplicity, we currently support only strings built on `char`, `wchar_t`,
|
529
|
+
// `char16_t`, or `char32_t`. This support may be broadened, if necessary, but
|
530
|
+
// with some caution - this overload would misbehave in cases where the traits'
|
531
|
+
// `eq()` member isn't equivalent to `==` on the underlying character type.
|
527
532
|
template <typename H>
|
528
533
|
H AbslHashValue(H hash_state, absl::string_view str) {
|
529
534
|
return H::combine(
|
@@ -544,6 +549,21 @@ H AbslHashValue(
|
|
544
549
|
str.size());
|
545
550
|
}
|
546
551
|
|
552
|
+
#ifdef ABSL_HAVE_STD_STRING_VIEW
|
553
|
+
|
554
|
+
// Support std::wstring_view, std::u16string_view and std::u32string_view.
|
555
|
+
template <typename Char, typename H,
|
556
|
+
typename = absl::enable_if_t<std::is_same<Char, wchar_t>::value ||
|
557
|
+
std::is_same<Char, char16_t>::value ||
|
558
|
+
std::is_same<Char, char32_t>::value>>
|
559
|
+
H AbslHashValue(H hash_state, std::basic_string_view<Char> str) {
|
560
|
+
return H::combine(
|
561
|
+
H::combine_contiguous(std::move(hash_state), str.data(), str.size()),
|
562
|
+
str.size());
|
563
|
+
}
|
564
|
+
|
565
|
+
#endif // ABSL_HAVE_STD_STRING_VIEW
|
566
|
+
|
547
567
|
// -----------------------------------------------------------------------------
|
548
568
|
// AbslHashValue for Sequence Containers
|
549
569
|
// -----------------------------------------------------------------------------
|
@@ -935,8 +955,8 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
|
|
935
955
|
#endif // ABSL_HAVE_INTRINSIC_INT128
|
936
956
|
|
937
957
|
static constexpr uint64_t kMul =
|
938
|
-
|
939
|
-
|
958
|
+
sizeof(size_t) == 4 ? uint64_t{0xcc9e2d51}
|
959
|
+
: uint64_t{0x9ddfea08eb382d69};
|
940
960
|
|
941
961
|
template <typename T>
|
942
962
|
using IntegralFastPath =
|
@@ -969,7 +989,8 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
|
|
969
989
|
// The result should be the same as running the whole algorithm, but faster.
|
970
990
|
template <typename T, absl::enable_if_t<IntegralFastPath<T>::value, int> = 0>
|
971
991
|
static size_t hash(T value) {
|
972
|
-
return static_cast<size_t>(
|
992
|
+
return static_cast<size_t>(
|
993
|
+
Mix(Seed(), static_cast<std::make_unsigned_t<T>>(value)));
|
973
994
|
}
|
974
995
|
|
975
996
|
// Overload of MixingHashState::hash()
|
@@ -1073,6 +1094,7 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
|
|
1073
1094
|
|
1074
1095
|
// Reads 1 to 3 bytes from p. Zero pads to fill uint32_t.
|
1075
1096
|
static uint32_t Read1To3(const unsigned char* p, size_t len) {
|
1097
|
+
// The trick used by this implementation is to avoid branches if possible.
|
1076
1098
|
unsigned char mem0 = p[0];
|
1077
1099
|
unsigned char mem1 = p[len / 2];
|
1078
1100
|
unsigned char mem2 = p[len - 1];
|
@@ -1082,7 +1104,7 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
|
|
1082
1104
|
unsigned char significant0 = mem0;
|
1083
1105
|
#else
|
1084
1106
|
unsigned char significant2 = mem0;
|
1085
|
-
unsigned char significant1 = mem1;
|
1107
|
+
unsigned char significant1 = len == 2 ? mem0 : mem1;
|
1086
1108
|
unsigned char significant0 = mem2;
|
1087
1109
|
#endif
|
1088
1110
|
return static_cast<uint32_t>(significant0 | //
|
@@ -1135,7 +1157,8 @@ class ABSL_DLL MixingHashState : public HashStateBase<MixingHashState> {
|
|
1135
1157
|
// probably per-build and not per-process.
|
1136
1158
|
ABSL_ATTRIBUTE_ALWAYS_INLINE static uint64_t Seed() {
|
1137
1159
|
#if (!defined(__clang__) || __clang_major__ > 11) && \
|
1138
|
-
!defined(__apple_build_version__)
|
1160
|
+
(!defined(__apple_build_version__) || \
|
1161
|
+
__apple_build_version__ >= 19558921) // Xcode 12
|
1139
1162
|
return static_cast<uint64_t>(reinterpret_cast<uintptr_t>(&kSeed));
|
1140
1163
|
#else
|
1141
1164
|
// Workaround the absence of
|
@@ -15,6 +15,7 @@
|
|
15
15
|
#include "absl/hash/internal/low_level_hash.h"
|
16
16
|
|
17
17
|
#include "absl/base/internal/unaligned_access.h"
|
18
|
+
#include "absl/base/prefetch.h"
|
18
19
|
#include "absl/numeric/int128.h"
|
19
20
|
|
20
21
|
namespace absl {
|
@@ -29,6 +30,8 @@ static uint64_t Mix(uint64_t v0, uint64_t v1) {
|
|
29
30
|
|
30
31
|
uint64_t LowLevelHash(const void* data, size_t len, uint64_t seed,
|
31
32
|
const uint64_t salt[5]) {
|
33
|
+
// Prefetch the cacheline that data resides in.
|
34
|
+
PrefetchToLocalCache(data);
|
32
35
|
const uint8_t* ptr = static_cast<const uint8_t*>(data);
|
33
36
|
uint64_t starting_length = static_cast<uint64_t>(len);
|
34
37
|
uint64_t current_state = seed ^ salt[0];
|
@@ -40,6 +43,9 @@ uint64_t LowLevelHash(const void* data, size_t len, uint64_t seed,
|
|
40
43
|
uint64_t duplicated_state = current_state;
|
41
44
|
|
42
45
|
do {
|
46
|
+
// Always prefetch the next cacheline.
|
47
|
+
PrefetchToLocalCache(ptr + ABSL_CACHELINE_SIZE);
|
48
|
+
|
43
49
|
uint64_t a = absl::base_internal::UnalignedLoad64(ptr);
|
44
50
|
uint64_t b = absl::base_internal::UnalignedLoad64(ptr + 8);
|
45
51
|
uint64_t c = absl::base_internal::UnalignedLoad64(ptr + 16);
|
@@ -39,14 +39,9 @@
|
|
39
39
|
#include <functional>
|
40
40
|
#include <type_traits>
|
41
41
|
|
42
|
+
#include "absl/base/attributes.h"
|
42
43
|
#include "absl/base/config.h"
|
43
44
|
|
44
|
-
// MSVC constructibility traits do not detect destructor properties and so our
|
45
|
-
// implementations should not use them as a source-of-truth.
|
46
|
-
#if defined(_MSC_VER) && !defined(__clang__) && !defined(__GNUC__)
|
47
|
-
#define ABSL_META_INTERNAL_STD_CONSTRUCTION_TRAITS_DONT_CHECK_DESTRUCTION 1
|
48
|
-
#endif
|
49
|
-
|
50
45
|
// Defines the default alignment. `__STDCPP_DEFAULT_NEW_ALIGNMENT__` is a C++17
|
51
46
|
// feature.
|
52
47
|
#if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__)
|
@@ -58,57 +53,8 @@
|
|
58
53
|
namespace absl {
|
59
54
|
ABSL_NAMESPACE_BEGIN
|
60
55
|
|
61
|
-
// Defined and documented later on in this file.
|
62
|
-
template <typename T>
|
63
|
-
struct is_trivially_destructible;
|
64
|
-
|
65
|
-
// Defined and documented later on in this file.
|
66
|
-
template <typename T>
|
67
|
-
struct is_trivially_move_assignable;
|
68
|
-
|
69
56
|
namespace type_traits_internal {
|
70
57
|
|
71
|
-
// Silence MSVC warnings about the destructor being defined as deleted.
|
72
|
-
#if defined(_MSC_VER) && !defined(__GNUC__)
|
73
|
-
#pragma warning(push)
|
74
|
-
#pragma warning(disable : 4624)
|
75
|
-
#endif // defined(_MSC_VER) && !defined(__GNUC__)
|
76
|
-
|
77
|
-
template <class T>
|
78
|
-
union SingleMemberUnion {
|
79
|
-
T t;
|
80
|
-
};
|
81
|
-
|
82
|
-
// Restore the state of the destructor warning that was silenced above.
|
83
|
-
#if defined(_MSC_VER) && !defined(__GNUC__)
|
84
|
-
#pragma warning(pop)
|
85
|
-
#endif // defined(_MSC_VER) && !defined(__GNUC__)
|
86
|
-
|
87
|
-
template <class T>
|
88
|
-
struct IsTriviallyMoveConstructibleObject
|
89
|
-
: std::integral_constant<
|
90
|
-
bool, std::is_move_constructible<
|
91
|
-
type_traits_internal::SingleMemberUnion<T>>::value &&
|
92
|
-
absl::is_trivially_destructible<T>::value> {};
|
93
|
-
|
94
|
-
template <class T>
|
95
|
-
struct IsTriviallyCopyConstructibleObject
|
96
|
-
: std::integral_constant<
|
97
|
-
bool, std::is_copy_constructible<
|
98
|
-
type_traits_internal::SingleMemberUnion<T>>::value &&
|
99
|
-
absl::is_trivially_destructible<T>::value> {};
|
100
|
-
|
101
|
-
template <class T>
|
102
|
-
struct IsTriviallyMoveAssignableReference : std::false_type {};
|
103
|
-
|
104
|
-
template <class T>
|
105
|
-
struct IsTriviallyMoveAssignableReference<T&>
|
106
|
-
: absl::is_trivially_move_assignable<T>::type {};
|
107
|
-
|
108
|
-
template <class T>
|
109
|
-
struct IsTriviallyMoveAssignableReference<T&&>
|
110
|
-
: absl::is_trivially_move_assignable<T>::type {};
|
111
|
-
|
112
58
|
template <typename... Ts>
|
113
59
|
struct VoidTImpl {
|
114
60
|
using type = void;
|
@@ -157,39 +103,8 @@ template <class To, template <class...> class Op, class... Args>
|
|
157
103
|
struct is_detected_convertible
|
158
104
|
: is_detected_convertible_impl<void, To, Op, Args...>::type {};
|
159
105
|
|
160
|
-
template <typename T>
|
161
|
-
using IsCopyAssignableImpl =
|
162
|
-
decltype(std::declval<T&>() = std::declval<const T&>());
|
163
|
-
|
164
|
-
template <typename T>
|
165
|
-
using IsMoveAssignableImpl = decltype(std::declval<T&>() = std::declval<T&&>());
|
166
|
-
|
167
106
|
} // namespace type_traits_internal
|
168
107
|
|
169
|
-
// MSVC 19.20 has a regression that causes our workarounds to fail, but their
|
170
|
-
// std forms now appear to be compliant.
|
171
|
-
#if defined(_MSC_VER) && !defined(__clang__) && (_MSC_VER >= 1920)
|
172
|
-
|
173
|
-
template <typename T>
|
174
|
-
using is_copy_assignable = std::is_copy_assignable<T>;
|
175
|
-
|
176
|
-
template <typename T>
|
177
|
-
using is_move_assignable = std::is_move_assignable<T>;
|
178
|
-
|
179
|
-
#else
|
180
|
-
|
181
|
-
template <typename T>
|
182
|
-
struct is_copy_assignable : type_traits_internal::is_detected<
|
183
|
-
type_traits_internal::IsCopyAssignableImpl, T> {
|
184
|
-
};
|
185
|
-
|
186
|
-
template <typename T>
|
187
|
-
struct is_move_assignable : type_traits_internal::is_detected<
|
188
|
-
type_traits_internal::IsMoveAssignableImpl, T> {
|
189
|
-
};
|
190
|
-
|
191
|
-
#endif
|
192
|
-
|
193
108
|
// void_t()
|
194
109
|
//
|
195
110
|
// Ignores the type of any its arguments and returns `void`. In general, this
|
@@ -270,246 +185,29 @@ struct is_function
|
|
270
185
|
bool, !(std::is_reference<T>::value ||
|
271
186
|
std::is_const<typename std::add_const<T>::type>::value)> {};
|
272
187
|
|
188
|
+
// is_copy_assignable()
|
189
|
+
// is_move_assignable()
|
273
190
|
// is_trivially_destructible()
|
274
|
-
//
|
275
|
-
// Determines whether the passed type `T` is trivially destructible.
|
276
|
-
//
|
277
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
278
|
-
// `std::is_trivially_destructible()` metafunction for platforms that have
|
279
|
-
// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do
|
280
|
-
// fully support C++11, we check whether this yields the same result as the std
|
281
|
-
// implementation.
|
282
|
-
//
|
283
|
-
// NOTE: the extensions (__has_trivial_xxx) are implemented in gcc (version >=
|
284
|
-
// 4.3) and clang. Since we are supporting libstdc++ > 4.7, they should always
|
285
|
-
// be present. These extensions are documented at
|
286
|
-
// https://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html#Type-Traits.
|
287
|
-
template <typename T>
|
288
|
-
struct is_trivially_destructible
|
289
|
-
#ifdef ABSL_HAVE_STD_IS_TRIVIALLY_DESTRUCTIBLE
|
290
|
-
: std::is_trivially_destructible<T> {
|
291
|
-
#else
|
292
|
-
: std::integral_constant<bool, __has_trivial_destructor(T) &&
|
293
|
-
std::is_destructible<T>::value> {
|
294
|
-
#endif
|
295
|
-
#ifdef ABSL_HAVE_STD_IS_TRIVIALLY_DESTRUCTIBLE
|
296
|
-
private:
|
297
|
-
static constexpr bool compliant = std::is_trivially_destructible<T>::value ==
|
298
|
-
is_trivially_destructible::value;
|
299
|
-
static_assert(compliant || std::is_trivially_destructible<T>::value,
|
300
|
-
"Not compliant with std::is_trivially_destructible; "
|
301
|
-
"Standard: false, Implementation: true");
|
302
|
-
static_assert(compliant || !std::is_trivially_destructible<T>::value,
|
303
|
-
"Not compliant with std::is_trivially_destructible; "
|
304
|
-
"Standard: true, Implementation: false");
|
305
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_DESTRUCTIBLE
|
306
|
-
};
|
307
|
-
|
308
191
|
// is_trivially_default_constructible()
|
309
|
-
//
|
310
|
-
// Determines whether the passed type `T` is trivially default constructible.
|
311
|
-
//
|
312
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
313
|
-
// `std::is_trivially_default_constructible()` metafunction for platforms that
|
314
|
-
// have incomplete C++11 support (such as libstdc++ 4.x). On any platforms that
|
315
|
-
// do fully support C++11, we check whether this yields the same result as the
|
316
|
-
// std implementation.
|
317
|
-
//
|
318
|
-
// NOTE: according to the C++ standard, Section: 20.15.4.3 [meta.unary.prop]
|
319
|
-
// "The predicate condition for a template specialization is_constructible<T,
|
320
|
-
// Args...> shall be satisfied if and only if the following variable
|
321
|
-
// definition would be well-formed for some invented variable t:
|
322
|
-
//
|
323
|
-
// T t(declval<Args>()...);
|
324
|
-
//
|
325
|
-
// is_trivially_constructible<T, Args...> additionally requires that the
|
326
|
-
// variable definition does not call any operation that is not trivial.
|
327
|
-
// For the purposes of this check, the call to std::declval is considered
|
328
|
-
// trivial."
|
329
|
-
//
|
330
|
-
// Notes from https://en.cppreference.com/w/cpp/types/is_constructible:
|
331
|
-
// In many implementations, is_nothrow_constructible also checks if the
|
332
|
-
// destructor throws because it is effectively noexcept(T(arg)). Same
|
333
|
-
// applies to is_trivially_constructible, which, in these implementations, also
|
334
|
-
// requires that the destructor is trivial.
|
335
|
-
// GCC bug 51452: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51452
|
336
|
-
// LWG issue 2116: http://cplusplus.github.io/LWG/lwg-active.html#2116.
|
337
|
-
//
|
338
|
-
// "T obj();" need to be well-formed and not call any nontrivial operation.
|
339
|
-
// Nontrivially destructible types will cause the expression to be nontrivial.
|
340
|
-
template <typename T>
|
341
|
-
struct is_trivially_default_constructible
|
342
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE)
|
343
|
-
: std::is_trivially_default_constructible<T> {
|
344
|
-
#else
|
345
|
-
: std::integral_constant<bool, __has_trivial_constructor(T) &&
|
346
|
-
std::is_default_constructible<T>::value &&
|
347
|
-
is_trivially_destructible<T>::value> {
|
348
|
-
#endif
|
349
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE) && \
|
350
|
-
!defined( \
|
351
|
-
ABSL_META_INTERNAL_STD_CONSTRUCTION_TRAITS_DONT_CHECK_DESTRUCTION)
|
352
|
-
private:
|
353
|
-
static constexpr bool compliant =
|
354
|
-
std::is_trivially_default_constructible<T>::value ==
|
355
|
-
is_trivially_default_constructible::value;
|
356
|
-
static_assert(compliant || std::is_trivially_default_constructible<T>::value,
|
357
|
-
"Not compliant with std::is_trivially_default_constructible; "
|
358
|
-
"Standard: false, Implementation: true");
|
359
|
-
static_assert(compliant || !std::is_trivially_default_constructible<T>::value,
|
360
|
-
"Not compliant with std::is_trivially_default_constructible; "
|
361
|
-
"Standard: true, Implementation: false");
|
362
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE
|
363
|
-
};
|
364
|
-
|
365
192
|
// is_trivially_move_constructible()
|
366
|
-
//
|
367
|
-
// Determines whether the passed type `T` is trivially move constructible.
|
368
|
-
//
|
369
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
370
|
-
// `std::is_trivially_move_constructible()` metafunction for platforms that have
|
371
|
-
// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do
|
372
|
-
// fully support C++11, we check whether this yields the same result as the std
|
373
|
-
// implementation.
|
374
|
-
//
|
375
|
-
// NOTE: `T obj(declval<T>());` needs to be well-formed and not call any
|
376
|
-
// nontrivial operation. Nontrivially destructible types will cause the
|
377
|
-
// expression to be nontrivial.
|
378
|
-
template <typename T>
|
379
|
-
struct is_trivially_move_constructible
|
380
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE)
|
381
|
-
: std::is_trivially_move_constructible<T> {
|
382
|
-
#else
|
383
|
-
: std::conditional<
|
384
|
-
std::is_object<T>::value && !std::is_array<T>::value,
|
385
|
-
type_traits_internal::IsTriviallyMoveConstructibleObject<T>,
|
386
|
-
std::is_reference<T>>::type::type {
|
387
|
-
#endif
|
388
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE) && \
|
389
|
-
!defined( \
|
390
|
-
ABSL_META_INTERNAL_STD_CONSTRUCTION_TRAITS_DONT_CHECK_DESTRUCTION)
|
391
|
-
private:
|
392
|
-
static constexpr bool compliant =
|
393
|
-
std::is_trivially_move_constructible<T>::value ==
|
394
|
-
is_trivially_move_constructible::value;
|
395
|
-
static_assert(compliant || std::is_trivially_move_constructible<T>::value,
|
396
|
-
"Not compliant with std::is_trivially_move_constructible; "
|
397
|
-
"Standard: false, Implementation: true");
|
398
|
-
static_assert(compliant || !std::is_trivially_move_constructible<T>::value,
|
399
|
-
"Not compliant with std::is_trivially_move_constructible; "
|
400
|
-
"Standard: true, Implementation: false");
|
401
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE
|
402
|
-
};
|
403
|
-
|
404
193
|
// is_trivially_copy_constructible()
|
405
|
-
//
|
406
|
-
// Determines whether the passed type `T` is trivially copy constructible.
|
407
|
-
//
|
408
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
409
|
-
// `std::is_trivially_copy_constructible()` metafunction for platforms that have
|
410
|
-
// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do
|
411
|
-
// fully support C++11, we check whether this yields the same result as the std
|
412
|
-
// implementation.
|
413
|
-
//
|
414
|
-
// NOTE: `T obj(declval<const T&>());` needs to be well-formed and not call any
|
415
|
-
// nontrivial operation. Nontrivially destructible types will cause the
|
416
|
-
// expression to be nontrivial.
|
417
|
-
template <typename T>
|
418
|
-
struct is_trivially_copy_constructible
|
419
|
-
: std::conditional<
|
420
|
-
std::is_object<T>::value && !std::is_array<T>::value,
|
421
|
-
type_traits_internal::IsTriviallyCopyConstructibleObject<T>,
|
422
|
-
std::is_lvalue_reference<T>>::type::type {
|
423
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE) && \
|
424
|
-
!defined( \
|
425
|
-
ABSL_META_INTERNAL_STD_CONSTRUCTION_TRAITS_DONT_CHECK_DESTRUCTION)
|
426
|
-
private:
|
427
|
-
static constexpr bool compliant =
|
428
|
-
std::is_trivially_copy_constructible<T>::value ==
|
429
|
-
is_trivially_copy_constructible::value;
|
430
|
-
static_assert(compliant || std::is_trivially_copy_constructible<T>::value,
|
431
|
-
"Not compliant with std::is_trivially_copy_constructible; "
|
432
|
-
"Standard: false, Implementation: true");
|
433
|
-
static_assert(compliant || !std::is_trivially_copy_constructible<T>::value,
|
434
|
-
"Not compliant with std::is_trivially_copy_constructible; "
|
435
|
-
"Standard: true, Implementation: false");
|
436
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_CONSTRUCTIBLE
|
437
|
-
};
|
438
|
-
|
439
194
|
// is_trivially_move_assignable()
|
440
|
-
//
|
441
|
-
// Determines whether the passed type `T` is trivially move assignable.
|
442
|
-
//
|
443
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
444
|
-
// `std::is_trivially_move_assignable()` metafunction for platforms that have
|
445
|
-
// incomplete C++11 support (such as libstdc++ 4.x). On any platforms that do
|
446
|
-
// fully support C++11, we check whether this yields the same result as the std
|
447
|
-
// implementation.
|
448
|
-
//
|
449
|
-
// NOTE: `is_assignable<T, U>::value` is `true` if the expression
|
450
|
-
// `declval<T>() = declval<U>()` is well-formed when treated as an unevaluated
|
451
|
-
// operand. `is_trivially_assignable<T, U>` requires the assignment to call no
|
452
|
-
// operation that is not trivial. `is_trivially_copy_assignable<T>` is simply
|
453
|
-
// `is_trivially_assignable<T&, T>`.
|
454
|
-
template <typename T>
|
455
|
-
struct is_trivially_move_assignable
|
456
|
-
: std::conditional<
|
457
|
-
std::is_object<T>::value && !std::is_array<T>::value &&
|
458
|
-
std::is_move_assignable<T>::value,
|
459
|
-
std::is_move_assignable<type_traits_internal::SingleMemberUnion<T>>,
|
460
|
-
type_traits_internal::IsTriviallyMoveAssignableReference<T>>::type::
|
461
|
-
type {
|
462
|
-
#ifdef ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE
|
463
|
-
private:
|
464
|
-
static constexpr bool compliant =
|
465
|
-
std::is_trivially_move_assignable<T>::value ==
|
466
|
-
is_trivially_move_assignable::value;
|
467
|
-
static_assert(compliant || std::is_trivially_move_assignable<T>::value,
|
468
|
-
"Not compliant with std::is_trivially_move_assignable; "
|
469
|
-
"Standard: false, Implementation: true");
|
470
|
-
static_assert(compliant || !std::is_trivially_move_assignable<T>::value,
|
471
|
-
"Not compliant with std::is_trivially_move_assignable; "
|
472
|
-
"Standard: true, Implementation: false");
|
473
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE
|
474
|
-
};
|
475
|
-
|
476
195
|
// is_trivially_copy_assignable()
|
477
196
|
//
|
478
|
-
//
|
479
|
-
//
|
480
|
-
//
|
481
|
-
//
|
482
|
-
//
|
483
|
-
//
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
struct is_trivially_copy_assignable
|
493
|
-
#ifdef ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE
|
494
|
-
: std::is_trivially_copy_assignable<T> {
|
495
|
-
#else
|
496
|
-
: std::integral_constant<
|
497
|
-
bool, __has_trivial_assign(typename std::remove_reference<T>::type) &&
|
498
|
-
absl::is_copy_assignable<T>::value> {
|
499
|
-
#endif
|
500
|
-
#ifdef ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE
|
501
|
-
private:
|
502
|
-
static constexpr bool compliant =
|
503
|
-
std::is_trivially_copy_assignable<T>::value ==
|
504
|
-
is_trivially_copy_assignable::value;
|
505
|
-
static_assert(compliant || std::is_trivially_copy_assignable<T>::value,
|
506
|
-
"Not compliant with std::is_trivially_copy_assignable; "
|
507
|
-
"Standard: false, Implementation: true");
|
508
|
-
static_assert(compliant || !std::is_trivially_copy_assignable<T>::value,
|
509
|
-
"Not compliant with std::is_trivially_copy_assignable; "
|
510
|
-
"Standard: true, Implementation: false");
|
511
|
-
#endif // ABSL_HAVE_STD_IS_TRIVIALLY_ASSIGNABLE
|
512
|
-
};
|
197
|
+
// Historical note: Abseil once provided implementations of these type traits
|
198
|
+
// for platforms that lacked full support. New code should prefer to use the
|
199
|
+
// std variants.
|
200
|
+
//
|
201
|
+
// See the documentation for the STL <type_traits> header for more information:
|
202
|
+
// https://en.cppreference.com/w/cpp/header/type_traits
|
203
|
+
using std::is_copy_assignable;
|
204
|
+
using std::is_move_assignable;
|
205
|
+
using std::is_trivially_copy_assignable;
|
206
|
+
using std::is_trivially_copy_constructible;
|
207
|
+
using std::is_trivially_default_constructible;
|
208
|
+
using std::is_trivially_destructible;
|
209
|
+
using std::is_trivially_move_assignable;
|
210
|
+
using std::is_trivially_move_constructible;
|
513
211
|
|
514
212
|
#if defined(__cpp_lib_remove_cvref) && __cpp_lib_remove_cvref >= 201711L
|
515
213
|
template <typename T>
|
@@ -532,55 +230,6 @@ template <typename T>
|
|
532
230
|
using remove_cvref_t = typename remove_cvref<T>::type;
|
533
231
|
#endif
|
534
232
|
|
535
|
-
namespace type_traits_internal {
|
536
|
-
// is_trivially_copyable()
|
537
|
-
//
|
538
|
-
// Determines whether the passed type `T` is trivially copyable.
|
539
|
-
//
|
540
|
-
// This metafunction is designed to be a drop-in replacement for the C++11
|
541
|
-
// `std::is_trivially_copyable()` metafunction for platforms that have
|
542
|
-
// incomplete C++11 support (such as libstdc++ 4.x). We use the C++17 definition
|
543
|
-
// of TriviallyCopyable.
|
544
|
-
//
|
545
|
-
// NOTE: `is_trivially_copyable<T>::value` is `true` if all of T's copy/move
|
546
|
-
// constructors/assignment operators are trivial or deleted, T has at least
|
547
|
-
// one non-deleted copy/move constructor/assignment operator, and T is trivially
|
548
|
-
// destructible. Arrays of trivially copyable types are trivially copyable.
|
549
|
-
//
|
550
|
-
// We expose this metafunction only for internal use within absl.
|
551
|
-
|
552
|
-
#if defined(ABSL_HAVE_STD_IS_TRIVIALLY_COPYABLE)
|
553
|
-
template <typename T>
|
554
|
-
struct is_trivially_copyable : std::is_trivially_copyable<T> {};
|
555
|
-
#else
|
556
|
-
template <typename T>
|
557
|
-
class is_trivially_copyable_impl {
|
558
|
-
using ExtentsRemoved = typename std::remove_all_extents<T>::type;
|
559
|
-
static constexpr bool kIsCopyOrMoveConstructible =
|
560
|
-
std::is_copy_constructible<ExtentsRemoved>::value ||
|
561
|
-
std::is_move_constructible<ExtentsRemoved>::value;
|
562
|
-
static constexpr bool kIsCopyOrMoveAssignable =
|
563
|
-
absl::is_copy_assignable<ExtentsRemoved>::value ||
|
564
|
-
absl::is_move_assignable<ExtentsRemoved>::value;
|
565
|
-
|
566
|
-
public:
|
567
|
-
static constexpr bool kValue =
|
568
|
-
(__has_trivial_copy(ExtentsRemoved) || !kIsCopyOrMoveConstructible) &&
|
569
|
-
(__has_trivial_assign(ExtentsRemoved) || !kIsCopyOrMoveAssignable) &&
|
570
|
-
(kIsCopyOrMoveConstructible || kIsCopyOrMoveAssignable) &&
|
571
|
-
is_trivially_destructible<ExtentsRemoved>::value &&
|
572
|
-
// We need to check for this explicitly because otherwise we'll say
|
573
|
-
// references are trivial copyable when compiled by MSVC.
|
574
|
-
!std::is_reference<ExtentsRemoved>::value;
|
575
|
-
};
|
576
|
-
|
577
|
-
template <typename T>
|
578
|
-
struct is_trivially_copyable
|
579
|
-
: std::integral_constant<
|
580
|
-
bool, type_traits_internal::is_trivially_copyable_impl<T>::kValue> {};
|
581
|
-
#endif
|
582
|
-
} // namespace type_traits_internal
|
583
|
-
|
584
233
|
// -----------------------------------------------------------------------------
|
585
234
|
// C++14 "_t" trait aliases
|
586
235
|
// -----------------------------------------------------------------------------
|
@@ -630,6 +279,7 @@ using remove_extent_t = typename std::remove_extent<T>::type;
|
|
630
279
|
template <typename T>
|
631
280
|
using remove_all_extents_t = typename std::remove_all_extents<T>::type;
|
632
281
|
|
282
|
+
ABSL_INTERNAL_DISABLE_DEPRECATED_DECLARATION_WARNING
|
633
283
|
namespace type_traits_internal {
|
634
284
|
// This trick to retrieve a default alignment is necessary for our
|
635
285
|
// implementation of aligned_storage_t to be consistent with any
|
@@ -648,6 +298,7 @@ struct default_alignment_of_aligned_storage<
|
|
648
298
|
template <size_t Len, size_t Align = type_traits_internal::
|
649
299
|
default_alignment_of_aligned_storage<Len>::value>
|
650
300
|
using aligned_storage_t = typename std::aligned_storage<Len, Align>::type;
|
301
|
+
ABSL_INTERNAL_RESTORE_DEPRECATED_DECLARATION_WARNING
|
651
302
|
|
652
303
|
template <typename T>
|
653
304
|
using decay_t = typename std::decay<T>::type;
|
@@ -818,9 +469,14 @@ using swap_internal::StdSwapIsUnconstrained;
|
|
818
469
|
} // namespace type_traits_internal
|
819
470
|
|
820
471
|
// absl::is_trivially_relocatable<T>
|
821
|
-
//
|
822
|
-
//
|
823
|
-
//
|
472
|
+
//
|
473
|
+
// Detects whether a type is known to be "trivially relocatable" -- meaning it
|
474
|
+
// can be relocated without invoking the constructor/destructor, using a form of
|
475
|
+
// move elision.
|
476
|
+
//
|
477
|
+
// This trait is conservative, for backwards compatibility. If it's true then
|
478
|
+
// the type is definitely trivially relocatable, but if it's false then the type
|
479
|
+
// may or may not be.
|
824
480
|
//
|
825
481
|
// Example:
|
826
482
|
//
|
@@ -834,14 +490,33 @@ using swap_internal::StdSwapIsUnconstrained;
|
|
834
490
|
// Upstream documentation:
|
835
491
|
//
|
836
492
|
// https://clang.llvm.org/docs/LanguageExtensions.html#:~:text=__is_trivially_relocatable
|
493
|
+
|
494
|
+
// If the compiler offers a builtin that tells us the answer, we can use that.
|
495
|
+
// This covers all of the cases in the fallback below, plus types that opt in
|
496
|
+
// using e.g. [[clang::trivial_abi]].
|
837
497
|
//
|
838
|
-
|
498
|
+
// Clang on Windows has the builtin, but it falsely claims types with a
|
499
|
+
// user-provided destructor are trivial (http://b/275003464). So we opt out
|
500
|
+
// there.
|
501
|
+
//
|
502
|
+
// TODO(b/275003464): remove the opt-out once the bug is fixed.
|
503
|
+
//
|
504
|
+
// According to https://github.com/abseil/abseil-cpp/issues/1479, this does not
|
505
|
+
// work with NVCC either.
|
506
|
+
#if ABSL_HAVE_BUILTIN(__is_trivially_relocatable) && \
|
507
|
+
!(defined(__clang__) && (defined(_WIN32) || defined(_WIN64))) && \
|
508
|
+
!defined(__NVCC__)
|
839
509
|
template <class T>
|
840
510
|
struct is_trivially_relocatable
|
841
511
|
: std::integral_constant<bool, __is_trivially_relocatable(T)> {};
|
842
512
|
#else
|
513
|
+
// Otherwise we use a fallback that detects only those types we can feasibly
|
514
|
+
// detect. Any time that has trivial move-construction and destruction
|
515
|
+
// operations is by definition trivially relocatable.
|
843
516
|
template <class T>
|
844
|
-
struct is_trivially_relocatable
|
517
|
+
struct is_trivially_relocatable
|
518
|
+
: absl::conjunction<absl::is_trivially_move_constructible<T>,
|
519
|
+
absl::is_trivially_destructible<T>> {};
|
845
520
|
#endif
|
846
521
|
|
847
522
|
// absl::is_constant_evaluated()
|
@@ -38,19 +38,19 @@
|
|
38
38
|
#include <limits>
|
39
39
|
#include <type_traits>
|
40
40
|
|
41
|
-
#
|
42
|
-
|
41
|
+
#include "absl/base/config.h"
|
42
|
+
|
43
|
+
#if ABSL_INTERNAL_CPLUSPLUS_LANG >= 202002L
|
43
44
|
#include <bit>
|
44
45
|
#endif
|
45
46
|
|
46
47
|
#include "absl/base/attributes.h"
|
47
|
-
#include "absl/base/config.h"
|
48
48
|
#include "absl/numeric/internal/bits.h"
|
49
49
|
|
50
50
|
namespace absl {
|
51
51
|
ABSL_NAMESPACE_BEGIN
|
52
|
-
|
53
52
|
#if !(defined(__cpp_lib_bitops) && __cpp_lib_bitops >= 201907L)
|
53
|
+
|
54
54
|
// rotating
|
55
55
|
template <class T>
|
56
56
|
ABSL_MUST_USE_RESULT constexpr
|