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
@@ -62,8 +62,8 @@ struct PerThreadSynch {
|
|
62
62
|
return reinterpret_cast<ThreadIdentity*>(this);
|
63
63
|
}
|
64
64
|
|
65
|
-
PerThreadSynch
|
66
|
-
PerThreadSynch
|
65
|
+
PerThreadSynch* next; // Circular waiter queue; initialized to 0.
|
66
|
+
PerThreadSynch* skip; // If non-zero, all entries in Mutex queue
|
67
67
|
// up to and including "skip" have same
|
68
68
|
// condition as this, and will be woken later
|
69
69
|
bool may_skip; // if false while on mutex queue, a mutex unlocker
|
@@ -104,10 +104,7 @@ struct PerThreadSynch {
|
|
104
104
|
//
|
105
105
|
// Transitions from kAvailable to kQueued require no barrier, they
|
106
106
|
// are externally ordered by the Mutex.
|
107
|
-
enum State {
|
108
|
-
kAvailable,
|
109
|
-
kQueued
|
110
|
-
};
|
107
|
+
enum State { kAvailable, kQueued };
|
111
108
|
std::atomic<State> state;
|
112
109
|
|
113
110
|
// The wait parameters of the current wait. waitp is null if the
|
@@ -122,14 +119,14 @@ struct PerThreadSynch {
|
|
122
119
|
// pointer unchanged.
|
123
120
|
SynchWaitParams* waitp;
|
124
121
|
|
125
|
-
intptr_t readers;
|
122
|
+
intptr_t readers; // Number of readers in mutex.
|
126
123
|
|
127
124
|
// When priority will next be read (cycles).
|
128
125
|
int64_t next_priority_read_cycles;
|
129
126
|
|
130
127
|
// Locks held; used during deadlock detection.
|
131
128
|
// Allocated in Synch_GetAllLocks() and freed in ReclaimThreadIdentity().
|
132
|
-
SynchLocksHeld
|
129
|
+
SynchLocksHeld* all_locks;
|
133
130
|
};
|
134
131
|
|
135
132
|
// The instances of this class are allocated in NewThreadIdentity() with an
|
@@ -147,7 +144,7 @@ struct ThreadIdentity {
|
|
147
144
|
|
148
145
|
// Private: Reserved for absl::synchronization_internal::Waiter.
|
149
146
|
struct WaiterState {
|
150
|
-
alignas(void*) char data[
|
147
|
+
alignas(void*) char data[256];
|
151
148
|
} waiter_state;
|
152
149
|
|
153
150
|
// Used by PerThreadSem::{Get,Set}ThreadBlockedCounter().
|
@@ -170,7 +167,10 @@ struct ThreadIdentity {
|
|
170
167
|
//
|
171
168
|
// Does not malloc(*), and is async-signal safe.
|
172
169
|
// [*] Technically pthread_setspecific() does malloc on first use; however this
|
173
|
-
// is handled internally within tcmalloc's initialization already.
|
170
|
+
// is handled internally within tcmalloc's initialization already. Note that
|
171
|
+
// darwin does *not* use tcmalloc, so this can catch you if using MallocHooks
|
172
|
+
// on Apple platforms. Whatever function is calling your MallocHooks will need
|
173
|
+
// to watch for recursion on Apple platforms.
|
174
174
|
//
|
175
175
|
// New ThreadIdentity objects can be constructed and associated with a thread
|
176
176
|
// by calling GetOrCreateCurrentThreadIdentity() in per-thread-sem.h.
|
@@ -217,7 +217,7 @@ void ClearCurrentThreadIdentity();
|
|
217
217
|
#define ABSL_THREAD_IDENTITY_MODE ABSL_THREAD_IDENTITY_MODE_USE_CPP11
|
218
218
|
#elif defined(__APPLE__) && defined(ABSL_HAVE_THREAD_LOCAL)
|
219
219
|
#define ABSL_THREAD_IDENTITY_MODE ABSL_THREAD_IDENTITY_MODE_USE_CPP11
|
220
|
-
#elif ABSL_PER_THREAD_TLS && defined(__GOOGLE_GRTE_VERSION__) &&
|
220
|
+
#elif ABSL_PER_THREAD_TLS && defined(__GOOGLE_GRTE_VERSION__) && \
|
221
221
|
(__GOOGLE_GRTE_VERSION__ >= 20140228L)
|
222
222
|
// Support for async-safe TLS was specifically added in GRTEv4. It's not
|
223
223
|
// present in the upstream eglibc.
|
@@ -26,22 +26,13 @@ namespace absl {
|
|
26
26
|
ABSL_NAMESPACE_BEGIN
|
27
27
|
namespace base_internal {
|
28
28
|
|
29
|
-
// NOTE: The
|
30
|
-
//
|
31
|
-
//
|
32
|
-
// within AOSP without them, since the STL functions don't exist.
|
33
|
-
namespace {
|
34
|
-
#ifdef ABSL_HAVE_EXCEPTIONS
|
35
|
-
template <typename T>
|
36
|
-
[[noreturn]] void Throw(const T& error) {
|
37
|
-
throw error;
|
38
|
-
}
|
39
|
-
#endif
|
40
|
-
} // namespace
|
29
|
+
// NOTE: The exception types, like `std::logic_error`, do not exist on all
|
30
|
+
// platforms. (For example, the Android NDK does not have them.)
|
31
|
+
// Therefore, their use must be guarded by `#ifdef` or equivalent.
|
41
32
|
|
42
33
|
void ThrowStdLogicError(const std::string& what_arg) {
|
43
34
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
44
|
-
|
35
|
+
throw std::logic_error(what_arg);
|
45
36
|
#else
|
46
37
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
47
38
|
std::abort();
|
@@ -49,7 +40,7 @@ void ThrowStdLogicError(const std::string& what_arg) {
|
|
49
40
|
}
|
50
41
|
void ThrowStdLogicError(const char* what_arg) {
|
51
42
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
52
|
-
|
43
|
+
throw std::logic_error(what_arg);
|
53
44
|
#else
|
54
45
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
55
46
|
std::abort();
|
@@ -57,7 +48,7 @@ void ThrowStdLogicError(const char* what_arg) {
|
|
57
48
|
}
|
58
49
|
void ThrowStdInvalidArgument(const std::string& what_arg) {
|
59
50
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
60
|
-
|
51
|
+
throw std::invalid_argument(what_arg);
|
61
52
|
#else
|
62
53
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
63
54
|
std::abort();
|
@@ -65,7 +56,7 @@ void ThrowStdInvalidArgument(const std::string& what_arg) {
|
|
65
56
|
}
|
66
57
|
void ThrowStdInvalidArgument(const char* what_arg) {
|
67
58
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
68
|
-
|
59
|
+
throw std::invalid_argument(what_arg);
|
69
60
|
#else
|
70
61
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
71
62
|
std::abort();
|
@@ -74,7 +65,7 @@ void ThrowStdInvalidArgument(const char* what_arg) {
|
|
74
65
|
|
75
66
|
void ThrowStdDomainError(const std::string& what_arg) {
|
76
67
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
77
|
-
|
68
|
+
throw std::domain_error(what_arg);
|
78
69
|
#else
|
79
70
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
80
71
|
std::abort();
|
@@ -82,7 +73,7 @@ void ThrowStdDomainError(const std::string& what_arg) {
|
|
82
73
|
}
|
83
74
|
void ThrowStdDomainError(const char* what_arg) {
|
84
75
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
85
|
-
|
76
|
+
throw std::domain_error(what_arg);
|
86
77
|
#else
|
87
78
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
88
79
|
std::abort();
|
@@ -91,7 +82,7 @@ void ThrowStdDomainError(const char* what_arg) {
|
|
91
82
|
|
92
83
|
void ThrowStdLengthError(const std::string& what_arg) {
|
93
84
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
94
|
-
|
85
|
+
throw std::length_error(what_arg);
|
95
86
|
#else
|
96
87
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
97
88
|
std::abort();
|
@@ -99,7 +90,7 @@ void ThrowStdLengthError(const std::string& what_arg) {
|
|
99
90
|
}
|
100
91
|
void ThrowStdLengthError(const char* what_arg) {
|
101
92
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
102
|
-
|
93
|
+
throw std::length_error(what_arg);
|
103
94
|
#else
|
104
95
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
105
96
|
std::abort();
|
@@ -108,7 +99,7 @@ void ThrowStdLengthError(const char* what_arg) {
|
|
108
99
|
|
109
100
|
void ThrowStdOutOfRange(const std::string& what_arg) {
|
110
101
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
111
|
-
|
102
|
+
throw std::out_of_range(what_arg);
|
112
103
|
#else
|
113
104
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
114
105
|
std::abort();
|
@@ -116,7 +107,7 @@ void ThrowStdOutOfRange(const std::string& what_arg) {
|
|
116
107
|
}
|
117
108
|
void ThrowStdOutOfRange(const char* what_arg) {
|
118
109
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
119
|
-
|
110
|
+
throw std::out_of_range(what_arg);
|
120
111
|
#else
|
121
112
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
122
113
|
std::abort();
|
@@ -125,7 +116,7 @@ void ThrowStdOutOfRange(const char* what_arg) {
|
|
125
116
|
|
126
117
|
void ThrowStdRuntimeError(const std::string& what_arg) {
|
127
118
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
128
|
-
|
119
|
+
throw std::runtime_error(what_arg);
|
129
120
|
#else
|
130
121
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
131
122
|
std::abort();
|
@@ -133,7 +124,7 @@ void ThrowStdRuntimeError(const std::string& what_arg) {
|
|
133
124
|
}
|
134
125
|
void ThrowStdRuntimeError(const char* what_arg) {
|
135
126
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
136
|
-
|
127
|
+
throw std::runtime_error(what_arg);
|
137
128
|
#else
|
138
129
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
139
130
|
std::abort();
|
@@ -142,7 +133,7 @@ void ThrowStdRuntimeError(const char* what_arg) {
|
|
142
133
|
|
143
134
|
void ThrowStdRangeError(const std::string& what_arg) {
|
144
135
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
145
|
-
|
136
|
+
throw std::range_error(what_arg);
|
146
137
|
#else
|
147
138
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
148
139
|
std::abort();
|
@@ -150,7 +141,7 @@ void ThrowStdRangeError(const std::string& what_arg) {
|
|
150
141
|
}
|
151
142
|
void ThrowStdRangeError(const char* what_arg) {
|
152
143
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
153
|
-
|
144
|
+
throw std::range_error(what_arg);
|
154
145
|
#else
|
155
146
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
156
147
|
std::abort();
|
@@ -159,7 +150,7 @@ void ThrowStdRangeError(const char* what_arg) {
|
|
159
150
|
|
160
151
|
void ThrowStdOverflowError(const std::string& what_arg) {
|
161
152
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
162
|
-
|
153
|
+
throw std::overflow_error(what_arg);
|
163
154
|
#else
|
164
155
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
165
156
|
std::abort();
|
@@ -167,7 +158,7 @@ void ThrowStdOverflowError(const std::string& what_arg) {
|
|
167
158
|
}
|
168
159
|
void ThrowStdOverflowError(const char* what_arg) {
|
169
160
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
170
|
-
|
161
|
+
throw std::overflow_error(what_arg);
|
171
162
|
#else
|
172
163
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
173
164
|
std::abort();
|
@@ -176,7 +167,7 @@ void ThrowStdOverflowError(const char* what_arg) {
|
|
176
167
|
|
177
168
|
void ThrowStdUnderflowError(const std::string& what_arg) {
|
178
169
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
179
|
-
|
170
|
+
throw std::underflow_error(what_arg);
|
180
171
|
#else
|
181
172
|
ABSL_RAW_LOG(FATAL, "%s", what_arg.c_str());
|
182
173
|
std::abort();
|
@@ -184,7 +175,7 @@ void ThrowStdUnderflowError(const std::string& what_arg) {
|
|
184
175
|
}
|
185
176
|
void ThrowStdUnderflowError(const char* what_arg) {
|
186
177
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
187
|
-
|
178
|
+
throw std::underflow_error(what_arg);
|
188
179
|
#else
|
189
180
|
ABSL_RAW_LOG(FATAL, "%s", what_arg);
|
190
181
|
std::abort();
|
@@ -193,7 +184,7 @@ void ThrowStdUnderflowError(const char* what_arg) {
|
|
193
184
|
|
194
185
|
void ThrowStdBadFunctionCall() {
|
195
186
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
196
|
-
|
187
|
+
throw std::bad_function_call();
|
197
188
|
#else
|
198
189
|
std::abort();
|
199
190
|
#endif
|
@@ -201,7 +192,7 @@ void ThrowStdBadFunctionCall() {
|
|
201
192
|
|
202
193
|
void ThrowStdBadAlloc() {
|
203
194
|
#ifdef ABSL_HAVE_EXCEPTIONS
|
204
|
-
|
195
|
+
throw std::bad_alloc();
|
205
196
|
#else
|
206
197
|
std::abort();
|
207
198
|
#endif
|
@@ -71,13 +71,12 @@ int64_t UnscaledCycleClock::Now() {
|
|
71
71
|
#else
|
72
72
|
int32_t tbu, tbl, tmp;
|
73
73
|
asm volatile(
|
74
|
-
"0:\n"
|
75
74
|
"mftbu %[hi32]\n"
|
76
75
|
"mftb %[lo32]\n"
|
77
76
|
"mftbu %[tmp]\n"
|
78
77
|
"cmpw %[tmp],%[hi32]\n"
|
79
|
-
"bne
|
80
|
-
: [
|
78
|
+
"bne $-16\n" // Retry on failure.
|
79
|
+
: [hi32] "=r"(tbu), [lo32] "=r"(tbl), [tmp] "=r"(tmp));
|
81
80
|
return (static_cast<int64_t>(tbu) << 32) | tbl;
|
82
81
|
#endif
|
83
82
|
#endif
|
@@ -44,10 +44,10 @@
|
|
44
44
|
// Toolchain Check
|
45
45
|
// -----------------------------------------------------------------------------
|
46
46
|
|
47
|
-
// We support Visual Studio
|
47
|
+
// We support Visual Studio 2019 (MSVC++ 16.0) and later.
|
48
48
|
// This minimum will go up.
|
49
|
-
#if defined(_MSC_VER) && _MSC_VER <
|
50
|
-
#error "This package requires Visual Studio
|
49
|
+
#if defined(_MSC_VER) && _MSC_VER < 1920 && !defined(__clang__)
|
50
|
+
#error "This package requires Visual Studio 2019 (MSVC++ 16.0) or higher."
|
51
51
|
#endif
|
52
52
|
|
53
53
|
// We support GCC 7 and later.
|
@@ -0,0 +1,198 @@
|
|
1
|
+
// Copyright 2023 The Abseil Authors
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
//
|
15
|
+
// -----------------------------------------------------------------------------
|
16
|
+
// File: prefetch.h
|
17
|
+
// -----------------------------------------------------------------------------
|
18
|
+
//
|
19
|
+
// This header file defines prefetch functions to prefetch memory contents
|
20
|
+
// into the first level cache (L1) for the current CPU. The prefetch logic
|
21
|
+
// offered in this header is limited to prefetching first level cachelines
|
22
|
+
// only, and is aimed at relatively 'simple' prefetching logic.
|
23
|
+
//
|
24
|
+
#ifndef ABSL_BASE_PREFETCH_H_
|
25
|
+
#define ABSL_BASE_PREFETCH_H_
|
26
|
+
|
27
|
+
#include "absl/base/config.h"
|
28
|
+
|
29
|
+
#if defined(ABSL_INTERNAL_HAVE_SSE)
|
30
|
+
#include <xmmintrin.h>
|
31
|
+
#endif
|
32
|
+
|
33
|
+
#if defined(_MSC_VER) && _MSC_VER >= 1900 && \
|
34
|
+
(defined(_M_X64) || defined(_M_IX86))
|
35
|
+
#include <intrin.h>
|
36
|
+
#pragma intrinsic(_mm_prefetch)
|
37
|
+
#endif
|
38
|
+
|
39
|
+
namespace absl {
|
40
|
+
ABSL_NAMESPACE_BEGIN
|
41
|
+
|
42
|
+
// Moves data into the L1 cache before it is read, or "prefetches" it.
|
43
|
+
//
|
44
|
+
// The value of `addr` is the address of the memory to prefetch. If
|
45
|
+
// the target and compiler support it, data prefetch instructions are
|
46
|
+
// generated. If the prefetch is done some time before the memory is
|
47
|
+
// read, it may be in the cache by the time the read occurs.
|
48
|
+
//
|
49
|
+
// This method prefetches data with the highest degree of temporal locality;
|
50
|
+
// data is prefetched where possible into all levels of the cache.
|
51
|
+
//
|
52
|
+
// Incorrect or gratuitous use of this function can degrade performance.
|
53
|
+
// Use this function only when representative benchmarks show an improvement.
|
54
|
+
//
|
55
|
+
// Example:
|
56
|
+
//
|
57
|
+
// // Computes incremental checksum for `data`.
|
58
|
+
// int ComputeChecksum(int sum, absl::string_view data);
|
59
|
+
//
|
60
|
+
// // Computes cumulative checksum for all values in `data`
|
61
|
+
// int ComputeChecksum(absl::Span<const std::string> data) {
|
62
|
+
// int sum = 0;
|
63
|
+
// auto it = data.begin();
|
64
|
+
// auto pit = data.begin();
|
65
|
+
// auto end = data.end();
|
66
|
+
// for (int dist = 8; dist > 0 && pit != data.end(); --dist, ++pit) {
|
67
|
+
// absl::PrefetchToLocalCache(pit->data());
|
68
|
+
// }
|
69
|
+
// for (; pit != end; ++pit, ++it) {
|
70
|
+
// sum = ComputeChecksum(sum, *it);
|
71
|
+
// absl::PrefetchToLocalCache(pit->data());
|
72
|
+
// }
|
73
|
+
// for (; it != end; ++it) {
|
74
|
+
// sum = ComputeChecksum(sum, *it);
|
75
|
+
// }
|
76
|
+
// return sum;
|
77
|
+
// }
|
78
|
+
//
|
79
|
+
void PrefetchToLocalCache(const void* addr);
|
80
|
+
|
81
|
+
// Moves data into the L1 cache before it is read, or "prefetches" it.
|
82
|
+
//
|
83
|
+
// This function is identical to `PrefetchToLocalCache()` except that it has
|
84
|
+
// non-temporal locality: the fetched data should not be left in any of the
|
85
|
+
// cache tiers. This is useful for cases where the data is used only once /
|
86
|
+
// short term, for example, invoking a destructor on an object.
|
87
|
+
//
|
88
|
+
// Incorrect or gratuitous use of this function can degrade performance.
|
89
|
+
// Use this function only when representative benchmarks show an improvement.
|
90
|
+
//
|
91
|
+
// Example:
|
92
|
+
//
|
93
|
+
// template <typename Iterator>
|
94
|
+
// void DestroyPointers(Iterator begin, Iterator end) {
|
95
|
+
// size_t distance = std::min(8U, bars.size());
|
96
|
+
//
|
97
|
+
// int dist = 8;
|
98
|
+
// auto prefetch_it = begin;
|
99
|
+
// while (prefetch_it != end && --dist;) {
|
100
|
+
// absl::PrefetchToLocalCacheNta(*prefetch_it++);
|
101
|
+
// }
|
102
|
+
// while (prefetch_it != end) {
|
103
|
+
// delete *begin++;
|
104
|
+
// absl::PrefetchToLocalCacheNta(*prefetch_it++);
|
105
|
+
// }
|
106
|
+
// while (begin != end) {
|
107
|
+
// delete *begin++;
|
108
|
+
// }
|
109
|
+
// }
|
110
|
+
//
|
111
|
+
void PrefetchToLocalCacheNta(const void* addr);
|
112
|
+
|
113
|
+
// Moves data into the L1 cache with the intent to modify it.
|
114
|
+
//
|
115
|
+
// This function is similar to `PrefetchToLocalCache()` except that it
|
116
|
+
// prefetches cachelines with an 'intent to modify' This typically includes
|
117
|
+
// invalidating cache entries for this address in all other cache tiers, and an
|
118
|
+
// exclusive access intent.
|
119
|
+
//
|
120
|
+
// Incorrect or gratuitous use of this function can degrade performance. As this
|
121
|
+
// function can invalidate cached cachelines on other caches and computer cores,
|
122
|
+
// incorrect usage of this function can have an even greater negative impact
|
123
|
+
// than incorrect regular prefetches.
|
124
|
+
// Use this function only when representative benchmarks show an improvement.
|
125
|
+
//
|
126
|
+
// Example:
|
127
|
+
//
|
128
|
+
// void* Arena::Allocate(size_t size) {
|
129
|
+
// void* ptr = AllocateBlock(size);
|
130
|
+
// absl::PrefetchToLocalCacheForWrite(p);
|
131
|
+
// return ptr;
|
132
|
+
// }
|
133
|
+
//
|
134
|
+
void PrefetchToLocalCacheForWrite(const void* addr);
|
135
|
+
|
136
|
+
#if ABSL_HAVE_BUILTIN(__builtin_prefetch) || defined(__GNUC__)
|
137
|
+
|
138
|
+
#define ABSL_HAVE_PREFETCH 1
|
139
|
+
|
140
|
+
// See __builtin_prefetch:
|
141
|
+
// https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html.
|
142
|
+
//
|
143
|
+
inline void PrefetchToLocalCache(const void* addr) {
|
144
|
+
__builtin_prefetch(addr, 0, 3);
|
145
|
+
}
|
146
|
+
|
147
|
+
inline void PrefetchToLocalCacheNta(const void* addr) {
|
148
|
+
__builtin_prefetch(addr, 0, 0);
|
149
|
+
}
|
150
|
+
|
151
|
+
inline void PrefetchToLocalCacheForWrite(const void* addr) {
|
152
|
+
// [x86] gcc/clang don't generate PREFETCHW for __builtin_prefetch(.., 1)
|
153
|
+
// unless -march=broadwell or newer; this is not generally the default, so we
|
154
|
+
// manually emit prefetchw. PREFETCHW is recognized as a no-op on older Intel
|
155
|
+
// processors and has been present on AMD processors since the K6-2.
|
156
|
+
#if defined(__x86_64__)
|
157
|
+
asm("prefetchw (%0)" : : "r"(addr));
|
158
|
+
#else
|
159
|
+
__builtin_prefetch(addr, 1, 3);
|
160
|
+
#endif
|
161
|
+
}
|
162
|
+
|
163
|
+
#elif defined(ABSL_INTERNAL_HAVE_SSE)
|
164
|
+
|
165
|
+
#define ABSL_HAVE_PREFETCH 1
|
166
|
+
|
167
|
+
inline void PrefetchToLocalCache(const void* addr) {
|
168
|
+
_mm_prefetch(reinterpret_cast<const char*>(addr), _MM_HINT_T0);
|
169
|
+
}
|
170
|
+
|
171
|
+
inline void PrefetchToLocalCacheNta(const void* addr) {
|
172
|
+
_mm_prefetch(reinterpret_cast<const char*>(addr), _MM_HINT_NTA);
|
173
|
+
}
|
174
|
+
|
175
|
+
inline void PrefetchToLocalCacheForWrite(const void* addr) {
|
176
|
+
#if defined(_MM_HINT_ET0)
|
177
|
+
_mm_prefetch(reinterpret_cast<const char*>(addr), _MM_HINT_ET0);
|
178
|
+
#elif !defined(_MSC_VER) && defined(__x86_64__)
|
179
|
+
// _MM_HINT_ET0 is not universally supported. As we commented further
|
180
|
+
// up, PREFETCHW is recognized as a no-op on older Intel processors
|
181
|
+
// and has been present on AMD processors since the K6-2. We have this
|
182
|
+
// disabled for MSVC compilers as this miscompiles on older MSVC compilers.
|
183
|
+
asm("prefetchw (%0)" : : "r"(addr));
|
184
|
+
#endif
|
185
|
+
}
|
186
|
+
|
187
|
+
#else
|
188
|
+
|
189
|
+
inline void PrefetchToLocalCache(const void* addr) {}
|
190
|
+
inline void PrefetchToLocalCacheNta(const void* addr) {}
|
191
|
+
inline void PrefetchToLocalCacheForWrite(const void* addr) {}
|
192
|
+
|
193
|
+
#endif
|
194
|
+
|
195
|
+
ABSL_NAMESPACE_END
|
196
|
+
} // namespace absl
|
197
|
+
|
198
|
+
#endif // ABSL_BASE_PREFETCH_H_
|