grpc 1.54.3 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1696) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +642 -322
  3. data/include/grpc/event_engine/event_engine.h +26 -36
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/grpc_audit_logging.h +96 -0
  6. data/include/grpc/grpc_security.h +19 -0
  7. data/include/grpc/impl/channel_arg_names.h +371 -0
  8. data/include/grpc/impl/grpc_types.h +1 -348
  9. data/include/grpc/module.modulemap +3 -0
  10. data/include/grpc/support/json.h +218 -0
  11. data/include/grpc/support/port_platform.h +29 -23
  12. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +7 -2
  13. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
  14. data/src/core/ext/filters/client_channel/backend_metric.cc +4 -1
  15. data/src/core/ext/filters/client_channel/channel_connectivity.cc +4 -4
  16. data/src/core/ext/filters/client_channel/client_channel.cc +145 -125
  17. data/src/core/ext/filters/client_channel/client_channel.h +24 -16
  18. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +20 -19
  19. data/src/core/ext/filters/client_channel/client_channel_internal.h +22 -59
  20. data/src/core/ext/filters/client_channel/client_channel_service_config.cc +2 -2
  21. data/src/core/ext/filters/client_channel/config_selector.h +9 -36
  22. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  23. data/src/core/ext/filters/client_channel/http_proxy.cc +40 -2
  24. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +27 -53
  25. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +23 -9
  26. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +3 -0
  27. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  28. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +86 -138
  29. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  30. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +5 -4
  31. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
  32. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +480 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +202 -0
  35. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +6 -9
  36. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  37. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +136 -78
  38. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +9 -2
  39. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +168 -104
  40. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +20 -0
  41. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +16 -45
  42. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +22 -14
  43. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +18 -1
  44. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +73 -129
  45. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +7 -5
  46. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +57 -22
  47. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +76 -6
  48. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +54 -45
  49. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +19 -54
  50. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +57 -116
  51. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  52. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +35 -86
  53. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +23 -69
  54. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +70 -141
  55. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +26 -65
  56. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +28 -96
  57. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +21 -123
  58. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
  59. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  60. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +44 -37
  61. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  62. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +66 -0
  63. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.h +27 -0
  64. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +586 -0
  65. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
  66. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
  67. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
  68. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +3 -14
  69. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
  70. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +30 -28
  71. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +10 -4
  72. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
  73. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  74. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +420 -275
  75. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +32 -1
  76. data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2530
  77. data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
  78. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  79. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  80. data/src/core/ext/filters/client_channel/retry_service_config.cc +10 -9
  81. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +40 -90
  82. data/src/core/ext/filters/client_channel/subchannel.cc +17 -199
  83. data/src/core/ext/filters/client_channel/subchannel.h +14 -48
  84. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  85. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  86. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  87. data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
  88. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  89. data/src/core/ext/filters/http/message_compress/compression_filter.cc +8 -7
  90. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  91. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
  92. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  93. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  94. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +162 -72
  95. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +6 -8
  96. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +164 -88
  97. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +16 -7
  98. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  99. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +15 -16
  100. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +541 -542
  101. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -0
  102. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
  103. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  104. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  105. data/src/core/ext/transport/chttp2/transport/flow_control.cc +46 -95
  106. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -27
  107. data/src/core/ext/transport/chttp2/transport/frame_ping.h +0 -3
  108. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +1 -0
  109. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  110. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  111. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +631 -547
  112. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +157 -11
  113. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +48 -33
  114. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
  115. data/src/core/ext/transport/chttp2/transport/internal.h +42 -80
  116. data/src/core/ext/transport/chttp2/transport/parsing.cc +43 -22
  117. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
  118. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
  119. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
  120. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
  121. data/src/core/ext/transport/chttp2/transport/writing.cc +96 -94
  122. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
  123. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +87 -52
  124. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +414 -181
  125. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -60
  126. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +481 -224
  127. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +90 -55
  128. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +415 -188
  129. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +357 -210
  130. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1572 -729
  131. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +30 -17
  132. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +144 -47
  133. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +34 -21
  134. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -62
  135. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +27 -14
  136. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +78 -38
  137. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +20 -11
  138. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +48 -26
  139. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +20 -11
  140. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +48 -26
  141. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +109 -62
  142. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +566 -244
  143. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +21 -12
  144. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +45 -30
  145. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +22 -19
  146. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +82 -29
  147. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +23 -16
  148. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +45 -30
  149. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +255 -147
  150. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +876 -404
  151. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +417 -264
  152. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1839 -899
  153. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -41
  154. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +286 -148
  155. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +531 -334
  156. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2017 -1131
  157. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -12
  158. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +45 -30
  159. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +89 -52
  160. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +347 -232
  161. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +264 -165
  162. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +888 -476
  163. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +139 -80
  164. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +527 -274
  165. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +22 -13
  166. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +50 -36
  167. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +380 -221
  168. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1168 -611
  169. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +157 -92
  170. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +627 -292
  171. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +18 -11
  172. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +37 -26
  173. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +21 -12
  174. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +45 -30
  175. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +30 -17
  176. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +144 -47
  177. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +279 -167
  178. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +818 -440
  179. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +232 -137
  180. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1164 -500
  181. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -13
  182. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +60 -37
  183. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +369 -211
  184. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1114 -646
  185. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +33 -18
  186. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +117 -51
  187. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +34 -19
  188. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +118 -56
  189. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +38 -21
  190. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +148 -64
  191. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +31 -18
  192. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +143 -65
  193. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +22 -13
  194. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +51 -37
  195. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +78 -43
  196. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +265 -127
  197. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +145 -88
  198. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +438 -241
  199. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +115 -62
  200. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +559 -227
  201. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +18 -11
  202. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +35 -26
  203. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +175 -118
  204. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +857 -442
  205. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +172 -95
  206. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +864 -374
  207. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +48 -27
  208. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +159 -110
  209. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +39 -18
  210. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +74 -56
  211. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +29 -15
  212. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +92 -45
  213. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +131 -74
  214. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +489 -249
  215. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +163 -84
  216. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +680 -240
  217. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +248 -139
  218. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +933 -433
  219. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +80 -49
  220. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +616 -201
  221. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1283 -776
  222. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5422 -2519
  223. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +49 -28
  224. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +164 -84
  225. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +228 -141
  226. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +738 -399
  227. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +20 -11
  228. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +48 -26
  229. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +21 -12
  230. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +45 -30
  231. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +32 -19
  232. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +70 -49
  233. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +27 -14
  234. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +110 -43
  235. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +46 -25
  236. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +259 -100
  237. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +21 -12
  238. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +45 -30
  239. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +18 -11
  240. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +35 -26
  241. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +42 -23
  242. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +108 -70
  243. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +7 -4
  244. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +21 -16
  245. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +43 -24
  246. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +110 -75
  247. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +30 -17
  248. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +95 -50
  249. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
  250. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
  251. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +16 -9
  252. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +73 -23
  253. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +60 -37
  254. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +150 -108
  255. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +93 -43
  256. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +386 -167
  257. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +44 -25
  258. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +114 -80
  259. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +68 -22
  260. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +355 -82
  261. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +32 -19
  262. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +73 -51
  263. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +504 -300
  264. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2243 -1075
  265. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +18 -11
  266. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +35 -26
  267. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +35 -21
  268. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +112 -78
  269. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +72 -45
  270. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +193 -138
  271. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
  272. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
  273. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +34 -21
  274. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +119 -78
  275. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +18 -11
  276. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +35 -26
  277. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +7 -4
  278. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +15 -10
  279. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +184 -96
  280. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +907 -360
  281. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +56 -33
  282. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +150 -101
  283. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +188 -111
  284. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +816 -419
  285. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +32 -19
  286. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +109 -53
  287. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +10 -7
  288. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +18 -14
  289. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +300 -177
  290. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1284 -522
  291. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +42 -23
  292. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +188 -75
  293. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +130 -83
  294. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +510 -238
  295. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +22 -13
  296. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +55 -34
  297. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +39 -26
  298. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +124 -68
  299. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +21 -12
  300. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +47 -30
  301. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +52 -29
  302. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +92 -62
  303. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +37 -20
  304. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +133 -63
  305. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -13
  306. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +91 -40
  307. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -12
  308. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +50 -32
  309. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +18 -11
  310. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +37 -26
  311. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +46 -27
  312. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +101 -70
  313. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +13 -10
  314. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +25 -22
  315. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +40 -23
  316. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +161 -75
  317. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +31 -18
  318. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +114 -56
  319. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +46 -29
  320. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +139 -91
  321. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +65 -42
  322. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +200 -121
  323. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +80 -45
  324. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +208 -131
  325. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +34 -21
  326. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +74 -53
  327. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +7 -4
  328. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +13 -8
  329. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +16 -9
  330. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +28 -18
  331. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +28 -15
  332. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +55 -34
  333. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +43 -22
  334. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +91 -53
  335. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +35 -20
  336. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +92 -57
  337. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +7 -4
  338. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +13 -8
  339. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -11
  340. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +48 -26
  341. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +23 -14
  342. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +61 -41
  343. data/src/core/ext/upb-generated/google/api/annotations.upb.c +14 -11
  344. data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -20
  345. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +255 -154
  346. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +934 -450
  347. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +299 -180
  348. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +946 -483
  349. data/src/core/ext/upb-generated/google/api/http.upb.c +68 -35
  350. data/src/core/ext/upb-generated/google/api/http.upb.h +284 -120
  351. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +22 -13
  352. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +95 -37
  353. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -10
  354. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +38 -22
  355. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1018 -424
  356. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +3851 -1412
  357. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -10
  358. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +38 -22
  359. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +10 -7
  360. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +18 -14
  361. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +62 -39
  362. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +207 -102
  363. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -10
  364. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +38 -22
  365. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +90 -51
  366. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +157 -107
  367. data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -13
  368. data/src/core/ext/upb-generated/google/rpc/status.upb.h +95 -37
  369. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +59 -34
  370. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +154 -92
  371. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +43 -24
  372. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +118 -60
  373. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +250 -145
  374. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +919 -415
  375. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +34 -19
  376. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +76 -51
  377. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +25 -14
  378. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +45 -30
  379. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +144 -81
  380. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +405 -217
  381. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +51 -26
  382. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +153 -61
  383. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +173 -102
  384. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +855 -298
  385. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +68 -49
  386. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +155 -104
  387. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +26 -17
  388. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +55 -34
  389. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +12 -9
  390. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +31 -14
  391. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +26 -17
  392. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +55 -34
  393. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +23 -16
  394. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +45 -30
  395. data/src/core/ext/upb-generated/validate/validate.upb.c +845 -455
  396. data/src/core/ext/upb-generated/validate/validate.upb.h +4347 -1908
  397. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +68 -49
  398. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +155 -104
  399. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +26 -17
  400. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +55 -34
  401. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +12 -9
  402. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +31 -14
  403. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +65 -44
  404. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +137 -91
  405. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +23 -16
  406. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +45 -30
  407. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +16 -9
  408. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +28 -18
  409. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +21 -12
  410. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +45 -30
  411. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +37 -22
  412. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +96 -63
  413. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +26 -17
  414. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +52 -29
  415. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +21 -12
  416. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +45 -30
  417. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +23 -14
  418. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +62 -42
  419. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +44 -25
  420. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +169 -79
  421. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +27 -14
  422. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +65 -38
  423. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +78 -38
  424. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +182 -76
  425. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +21 -12
  426. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +89 -34
  427. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +18 -11
  428. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +35 -26
  429. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +32 -19
  430. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +150 -54
  431. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +10 -7
  432. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +18 -14
  433. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +34 -21
  434. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +161 -63
  435. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +162 -101
  436. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +501 -293
  437. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +85 -52
  438. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +430 -164
  439. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +24 -15
  440. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +53 -37
  441. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +40 -23
  442. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +161 -75
  443. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +37 -22
  444. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +92 -66
  445. data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +43 -22
  446. data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +91 -53
  447. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +21 -12
  448. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +45 -30
  449. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
  450. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
  451. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +1 -1
  452. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
  453. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +1 -1
  454. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -5
  455. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +1 -1
  456. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +6 -5
  457. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
  458. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
  459. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +1 -1
  460. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
  461. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
  462. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
  463. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
  464. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
  465. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
  466. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
  467. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
  468. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
  469. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
  470. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
  471. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
  472. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
  473. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
  474. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
  475. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +89 -77
  476. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +11 -5
  477. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +252 -253
  478. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
  479. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
  480. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
  481. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +1 -1
  482. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -5
  483. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
  484. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
  485. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
  486. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
  487. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
  488. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
  489. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +1 -1
  490. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +6 -5
  491. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
  492. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
  493. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +1 -1
  494. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
  495. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +1 -1
  496. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +6 -5
  497. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
  498. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
  499. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
  500. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
  501. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
  502. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
  503. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +163 -161
  504. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
  505. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +130 -119
  506. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
  507. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
  508. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
  509. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +142 -136
  510. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
  511. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +1 -1
  512. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +6 -5
  513. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
  514. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
  515. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +1 -1
  516. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +6 -5
  517. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +1 -1
  518. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
  519. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
  520. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
  521. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
  522. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
  523. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +1 -1
  524. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
  525. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
  526. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
  527. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
  528. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
  529. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +1 -1
  530. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +6 -5
  531. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
  532. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
  533. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +1 -1
  534. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
  535. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +1 -1
  536. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
  537. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +20 -13
  538. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
  539. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
  540. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
  541. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +39 -31
  542. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +11 -5
  543. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +134 -128
  544. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +11 -5
  545. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +1 -1
  546. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +6 -5
  547. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +1 -1
  548. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +6 -5
  549. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
  550. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
  551. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +1 -1
  552. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +6 -5
  553. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +1 -1
  554. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
  555. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
  556. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
  557. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
  558. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
  559. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
  560. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
  561. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
  562. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
  563. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +1 -1
  564. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +6 -5
  565. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
  566. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
  567. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
  568. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
  569. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +1 -1
  570. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
  571. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
  572. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
  573. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +1 -1
  574. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
  575. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  576. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  577. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
  578. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
  579. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
  580. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
  581. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +81 -75
  582. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
  583. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +1 -1
  584. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
  585. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +64 -48
  586. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +11 -5
  587. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +1 -1
  588. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +6 -5
  589. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +495 -470
  590. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +11 -5
  591. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +1 -1
  592. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +6 -5
  593. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
  594. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
  595. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -136
  596. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
  597. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
  598. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
  599. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +1 -1
  600. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
  601. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
  602. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
  603. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +1 -1
  604. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
  605. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +1 -1
  606. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +6 -5
  607. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +1 -1
  608. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
  609. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +12 -13
  610. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
  611. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
  612. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
  613. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
  614. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
  615. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +1 -1
  616. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +6 -5
  617. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  618. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  619. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
  620. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
  621. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
  622. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
  623. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
  624. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
  625. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
  626. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
  627. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +30 -30
  628. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
  629. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +1 -1
  630. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +6 -5
  631. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
  632. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
  633. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
  634. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
  635. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
  636. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
  637. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
  638. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
  639. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
  640. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
  641. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
  642. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
  643. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
  644. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
  645. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
  646. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
  647. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
  648. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
  649. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
  650. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
  651. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +1 -1
  652. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +6 -5
  653. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +1 -1
  654. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
  655. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
  656. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
  657. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
  658. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
  659. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
  660. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
  661. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
  662. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
  663. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
  664. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
  665. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
  666. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
  667. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
  668. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
  669. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
  670. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
  671. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +329 -273
  672. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +11 -5
  673. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
  674. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
  675. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
  676. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
  677. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
  678. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
  679. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
  680. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
  681. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
  682. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
  683. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
  684. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
  685. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
  686. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
  687. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
  688. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
  689. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
  690. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
  691. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
  692. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
  693. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
  694. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
  695. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
  696. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
  697. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
  698. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
  699. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
  700. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
  701. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
  702. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
  703. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
  704. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
  705. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
  706. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
  707. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
  708. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
  709. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
  710. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
  711. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
  712. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
  713. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +1 -1
  714. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +6 -5
  715. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
  716. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
  717. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
  718. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
  719. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
  720. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
  721. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
  722. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
  723. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
  724. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
  725. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
  726. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
  727. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +1 -1
  728. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +6 -5
  729. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +1 -1
  730. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +6 -5
  731. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  732. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  733. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +1 -1
  734. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +6 -5
  735. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +1 -1
  736. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
  737. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +1 -1
  738. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +6 -5
  739. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
  740. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
  741. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
  742. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
  743. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +1 -1
  744. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +6 -5
  745. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +1 -1
  746. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +6 -5
  747. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +1 -1
  748. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
  749. data/src/core/ext/xds/certificate_provider_store.cc +8 -13
  750. data/src/core/ext/xds/certificate_provider_store.h +1 -1
  751. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +30 -42
  752. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +14 -9
  753. data/src/core/ext/xds/upb_utils.h +1 -1
  754. data/src/core/ext/xds/xds_api.cc +41 -18
  755. data/src/core/ext/xds/xds_api.h +5 -4
  756. data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
  757. data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
  758. data/src/core/ext/xds/xds_bootstrap.cc +3 -3
  759. data/src/core/ext/xds/xds_bootstrap_grpc.cc +65 -50
  760. data/src/core/ext/xds/xds_bootstrap_grpc.h +10 -13
  761. data/src/core/ext/xds/xds_client.cc +29 -7
  762. data/src/core/ext/xds/xds_client.h +1 -1
  763. data/src/core/ext/xds/xds_client_grpc.cc +12 -6
  764. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  765. data/src/core/ext/xds/xds_client_stats.h +11 -1
  766. data/src/core/ext/xds/xds_cluster.cc +70 -67
  767. data/src/core/ext/xds/xds_cluster.h +1 -2
  768. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +15 -11
  769. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  770. data/src/core/ext/xds/xds_common_types.cc +8 -5
  771. data/src/core/ext/xds/xds_endpoint.cc +9 -9
  772. data/src/core/ext/xds/xds_endpoint.h +1 -1
  773. data/src/core/ext/xds/xds_health_status.cc +0 -17
  774. data/src/core/ext/xds/xds_health_status.h +5 -25
  775. data/src/core/ext/xds/xds_http_fault_filter.cc +16 -14
  776. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  777. data/src/core/ext/xds/xds_http_filters.h +3 -2
  778. data/src/core/ext/xds/xds_http_rbac_filter.cc +152 -72
  779. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  780. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +15 -12
  781. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  782. data/src/core/ext/xds/xds_lb_policy_registry.cc +60 -36
  783. data/src/core/ext/xds/xds_listener.cc +11 -4
  784. data/src/core/ext/xds/xds_listener.h +1 -1
  785. data/src/core/ext/xds/xds_resource_type.h +2 -2
  786. data/src/core/ext/xds/xds_route_config.cc +52 -8
  787. data/src/core/ext/xds/xds_route_config.h +1 -1
  788. data/src/core/ext/xds/xds_transport_grpc.cc +2 -1
  789. data/src/core/lib/address_utils/parse_address.cc +63 -1
  790. data/src/core/lib/address_utils/parse_address.h +8 -0
  791. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  792. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  793. data/src/core/lib/avl/avl.h +15 -173
  794. data/src/core/lib/backoff/random_early_detection.h +5 -0
  795. data/src/core/lib/channel/call_tracer.cc +289 -0
  796. data/src/core/lib/channel/call_tracer.h +35 -0
  797. data/src/core/lib/channel/channel_args.cc +120 -46
  798. data/src/core/lib/channel/channel_args.h +52 -4
  799. data/src/core/lib/channel/channel_trace.cc +16 -12
  800. data/src/core/lib/channel/channelz.cc +163 -135
  801. data/src/core/lib/channel/channelz.h +42 -35
  802. data/src/core/lib/channel/channelz_registry.cc +24 -20
  803. data/src/core/lib/channel/connected_channel.cc +103 -35
  804. data/src/core/lib/channel/promise_based_filter.cc +6 -13
  805. data/src/core/lib/channel/promise_based_filter.h +3 -0
  806. data/src/core/lib/compression/compression_internal.cc +8 -7
  807. data/src/core/lib/config/config_vars.cc +20 -18
  808. data/src/core/lib/config/config_vars.h +4 -4
  809. data/src/core/lib/config/load_config.cc +13 -0
  810. data/src/core/lib/config/load_config.h +6 -0
  811. data/src/core/lib/debug/event_log.h +1 -1
  812. data/src/core/lib/debug/stats_data.cc +93 -21
  813. data/src/core/lib/debug/stats_data.h +42 -1
  814. data/src/core/lib/debug/trace.cc +31 -56
  815. data/src/core/lib/debug/trace.h +14 -4
  816. data/src/core/lib/event_engine/ares_resolver.cc +712 -0
  817. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  818. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +218 -0
  819. data/src/core/lib/event_engine/cf_engine/cf_engine.h +86 -0
  820. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +354 -0
  821. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +146 -0
  822. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +79 -0
  823. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
  824. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
  825. data/src/core/lib/event_engine/default_event_engine.cc +13 -1
  826. data/src/core/lib/event_engine/default_event_engine_factory.cc +14 -2
  827. data/src/core/lib/event_engine/event_engine.cc +0 -12
  828. data/src/core/lib/event_engine/forkable.cc +62 -43
  829. data/src/core/lib/event_engine/forkable.h +15 -0
  830. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  831. data/src/core/lib/event_engine/handle_containers.h +0 -4
  832. data/src/core/lib/event_engine/poller.h +2 -2
  833. data/src/core/lib/event_engine/posix.h +4 -0
  834. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +5 -7
  835. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +29 -9
  836. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  837. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  838. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -18
  839. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +28 -14
  840. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +12 -1
  841. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +90 -47
  842. data/src/core/lib/event_engine/posix_engine/posix_engine.h +21 -14
  843. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +41 -31
  844. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +9 -8
  845. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  846. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +49 -3
  847. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +9 -0
  848. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  849. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -1
  850. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  851. data/src/core/lib/event_engine/shim.cc +9 -1
  852. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  853. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  854. data/src/core/lib/event_engine/{thread_pool.cc → thread_pool/original_thread_pool.cc} +28 -25
  855. data/src/core/lib/event_engine/{thread_pool.h → thread_pool/original_thread_pool.h} +11 -15
  856. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  857. data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
  858. data/src/core/lib/event_engine/{executor/executor.h → thread_pool/thread_pool.h} +21 -9
  859. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +47 -0
  860. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +517 -0
  861. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +223 -0
  862. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
  863. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
  864. data/src/core/lib/event_engine/trace.cc +1 -0
  865. data/src/core/lib/event_engine/trace.h +6 -0
  866. data/src/core/lib/event_engine/windows/iocp.cc +4 -3
  867. data/src/core/lib/event_engine/windows/iocp.h +3 -3
  868. data/src/core/lib/event_engine/windows/win_socket.cc +6 -6
  869. data/src/core/lib/event_engine/windows/win_socket.h +4 -4
  870. data/src/core/lib/event_engine/windows/windows_endpoint.cc +60 -59
  871. data/src/core/lib/event_engine/windows/windows_endpoint.h +17 -13
  872. data/src/core/lib/event_engine/windows/windows_engine.cc +21 -18
  873. data/src/core/lib/event_engine/windows/windows_engine.h +14 -18
  874. data/src/core/lib/event_engine/windows/windows_listener.cc +3 -3
  875. data/src/core/lib/event_engine/windows/windows_listener.h +3 -2
  876. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
  877. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
  878. data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
  879. data/src/core/lib/experiments/config.cc +112 -29
  880. data/src/core/lib/experiments/config.h +33 -5
  881. data/src/core/lib/experiments/experiments.cc +226 -61
  882. data/src/core/lib/experiments/experiments.h +95 -29
  883. data/src/core/lib/gpr/log_internal.h +55 -0
  884. data/src/core/lib/gpr/posix/time.cc +5 -0
  885. data/src/core/lib/gprpp/crash.cc +10 -0
  886. data/src/core/lib/gprpp/crash.h +3 -0
  887. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  888. data/src/core/lib/gprpp/fork.cc +8 -9
  889. data/src/core/lib/gprpp/fork.h +6 -5
  890. data/src/core/lib/gprpp/if_list.h +4530 -0
  891. data/src/core/lib/gprpp/orphanable.h +3 -3
  892. data/src/core/lib/gprpp/per_cpu.cc +33 -0
  893. data/src/core/lib/gprpp/per_cpu.h +29 -6
  894. data/src/core/lib/gprpp/ref_counted.h +9 -7
  895. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  896. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  897. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  898. data/src/core/lib/gprpp/status_helper.cc +2 -2
  899. data/src/core/lib/gprpp/status_helper.h +16 -15
  900. data/src/core/lib/gprpp/time.cc +1 -0
  901. data/src/core/lib/gprpp/time.h +13 -1
  902. data/src/core/lib/gprpp/type_list.h +32 -0
  903. data/src/core/lib/gprpp/validation_errors.cc +8 -3
  904. data/src/core/lib/gprpp/validation_errors.h +16 -9
  905. data/src/core/lib/gprpp/work_serializer.cc +36 -0
  906. data/src/core/lib/gprpp/work_serializer.h +5 -0
  907. data/src/core/lib/http/httpcli.h +6 -9
  908. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  909. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  910. data/src/core/lib/iomgr/buffer_list.h +0 -1
  911. data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
  912. data/src/core/lib/iomgr/endpoint_cfstream.cc +10 -8
  913. data/src/core/lib/iomgr/error.cc +32 -2
  914. data/src/core/lib/iomgr/error.h +9 -10
  915. data/src/core/lib/iomgr/ev_apple.cc +12 -12
  916. data/src/core/lib/iomgr/ev_epoll1_linux.cc +15 -10
  917. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  918. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +22 -23
  919. data/src/core/lib/iomgr/exec_ctx.h +11 -0
  920. data/src/core/lib/iomgr/iocp_windows.cc +24 -3
  921. data/src/core/lib/iomgr/iocp_windows.h +11 -0
  922. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -1
  923. data/src/core/lib/iomgr/pollset.h +4 -5
  924. data/src/core/lib/iomgr/port.h +10 -0
  925. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  926. data/src/core/lib/iomgr/resolve_address.h +17 -3
  927. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  928. data/src/core/lib/iomgr/socket_utils_common_posix.cc +33 -2
  929. data/src/core/lib/iomgr/socket_utils_posix.cc +5 -0
  930. data/src/core/lib/iomgr/socket_utils_posix.h +9 -0
  931. data/src/core/lib/iomgr/socket_windows.cc +61 -7
  932. data/src/core/lib/iomgr/socket_windows.h +9 -2
  933. data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -3
  934. data/src/core/lib/iomgr/tcp_client_posix.cc +8 -1
  935. data/src/core/lib/iomgr/tcp_posix.cc +24 -7
  936. data/src/core/lib/iomgr/tcp_server_posix.cc +145 -106
  937. data/src/core/lib/iomgr/tcp_server_utils_posix.h +1 -1
  938. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -2
  939. data/src/core/lib/iomgr/tcp_server_windows.cc +1 -1
  940. data/src/core/lib/iomgr/tcp_windows.cc +1 -3
  941. data/src/core/lib/iomgr/timer_generic.cc +17 -16
  942. data/src/core/lib/iomgr/vsock.cc +59 -0
  943. data/src/core/lib/iomgr/vsock.h +38 -0
  944. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  945. data/src/core/lib/json/json.h +2 -218
  946. data/src/core/lib/json/json_object_loader.cc +24 -25
  947. data/src/core/lib/json/json_object_loader.h +30 -18
  948. data/src/core/lib/json/json_reader.cc +69 -42
  949. data/src/core/lib/json/json_reader.h +34 -0
  950. data/src/core/lib/json/json_util.cc +10 -15
  951. data/src/core/lib/json/json_util.h +5 -4
  952. data/src/core/lib/json/json_writer.cc +24 -25
  953. data/src/core/lib/json/json_writer.h +33 -0
  954. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  955. data/src/core/lib/load_balancing/lb_policy.h +33 -0
  956. data/src/core/lib/load_balancing/lb_policy_registry.cc +9 -8
  957. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  958. data/src/core/lib/matchers/matchers.cc +3 -4
  959. data/src/core/lib/matchers/matchers.h +2 -1
  960. data/src/core/lib/promise/activity.cc +5 -0
  961. data/src/core/lib/promise/activity.h +10 -0
  962. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  963. data/src/core/lib/promise/detail/promise_factory.h +1 -1
  964. data/src/core/lib/promise/detail/seq_state.h +2076 -0
  965. data/src/core/lib/promise/party.cc +31 -13
  966. data/src/core/lib/promise/party.h +12 -3
  967. data/src/core/lib/promise/pipe.h +16 -2
  968. data/src/core/lib/promise/prioritized_race.h +95 -0
  969. data/src/core/lib/promise/seq.h +19 -2
  970. data/src/core/lib/promise/sleep.cc +2 -1
  971. data/src/core/lib/promise/sleep.h +5 -10
  972. data/src/core/lib/promise/try_seq.h +34 -2
  973. data/src/core/lib/resolver/resolver_factory.h +3 -2
  974. data/src/core/lib/resolver/server_address.cc +9 -102
  975. data/src/core/lib/resolver/server_address.h +10 -70
  976. data/src/core/lib/resource_quota/api.cc +1 -0
  977. data/src/core/lib/resource_quota/arena.cc +2 -0
  978. data/src/core/lib/resource_quota/arena.h +42 -8
  979. data/src/core/lib/resource_quota/memory_quota.cc +7 -8
  980. data/src/core/lib/resource_quota/memory_quota.h +2 -3
  981. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  982. data/src/core/lib/security/authorization/audit_logging.cc +98 -0
  983. data/src/core/lib/security/authorization/audit_logging.h +73 -0
  984. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  985. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +47 -2
  986. data/src/core/lib/security/authorization/grpc_authorization_engine.h +18 -1
  987. data/src/core/lib/security/authorization/rbac_policy.cc +36 -4
  988. data/src/core/lib/security/authorization/rbac_policy.h +19 -2
  989. data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
  990. data/src/core/lib/security/authorization/stdout_logger.h +61 -0
  991. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -4
  992. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +8 -18
  993. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +14 -8
  994. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  995. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  996. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  997. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  998. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +54 -49
  999. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  1000. data/src/core/lib/security/credentials/external/external_account_credentials.cc +104 -65
  1001. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  1002. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +23 -21
  1003. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +29 -27
  1004. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  1005. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  1006. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +6 -2
  1007. data/src/core/lib/security/credentials/jwt/json_token.cc +36 -16
  1008. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  1009. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +10 -5
  1010. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +82 -38
  1011. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +18 -16
  1012. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
  1013. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
  1014. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  1015. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  1016. data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
  1017. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  1018. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  1019. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +2 -5
  1020. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  1021. data/src/core/lib/security/security_connector/ssl_utils.cc +3 -1
  1022. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  1023. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -1
  1024. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  1025. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  1026. data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
  1027. data/src/core/lib/security/util/json_util.cc +6 -5
  1028. data/src/core/lib/service_config/service_config_call_data.h +54 -20
  1029. data/src/core/lib/service_config/service_config_impl.cc +13 -6
  1030. data/src/core/lib/slice/slice.h +18 -0
  1031. data/src/core/lib/surface/call.cc +159 -73
  1032. data/src/core/lib/surface/call.h +1 -5
  1033. data/src/core/lib/surface/channel.cc +1 -0
  1034. data/src/core/lib/surface/completion_queue.cc +18 -3
  1035. data/src/core/lib/surface/init.cc +1 -0
  1036. data/src/core/lib/surface/server.cc +106 -75
  1037. data/src/core/lib/surface/server.h +1 -15
  1038. data/src/core/lib/surface/validate_metadata.cc +37 -22
  1039. data/src/core/lib/surface/validate_metadata.h +13 -3
  1040. data/src/core/lib/surface/version.cc +2 -2
  1041. data/src/core/lib/transport/batch_builder.cc +15 -12
  1042. data/src/core/lib/transport/batch_builder.h +48 -36
  1043. data/src/core/lib/transport/metadata_batch.cc +7 -7
  1044. data/src/core/lib/transport/metadata_batch.h +88 -107
  1045. data/src/core/lib/transport/metadata_compression_traits.h +67 -0
  1046. data/src/core/lib/transport/parsed_metadata.h +34 -20
  1047. data/src/core/lib/transport/simple_slice_based_metadata.h +55 -0
  1048. data/src/core/lib/transport/transport.h +3 -0
  1049. data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -6
  1050. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +2 -0
  1051. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  1052. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  1053. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  1054. data/src/core/tsi/ssl_transport_security.cc +44 -9
  1055. data/src/core/tsi/ssl_transport_security.h +13 -1
  1056. data/src/ruby/bin/math_pb.rb +24 -18
  1057. data/src/ruby/ext/grpc/extconf.rb +27 -27
  1058. data/src/ruby/ext/grpc/rb_call.c +62 -39
  1059. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  1060. data/src/ruby/ext/grpc/rb_channel.c +109 -84
  1061. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  1062. data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
  1063. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  1064. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  1065. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  1066. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  1067. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  1068. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  1069. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  1070. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  1071. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  1072. data/src/ruby/ext/grpc/rb_server.c +62 -45
  1073. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  1074. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  1075. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  1076. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  1077. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  1078. data/src/ruby/lib/grpc/version.rb +1 -1
  1079. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  1080. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  1081. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
  1082. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  1083. data/src/ruby/pb/test/client.rb +16 -0
  1084. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  1085. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  1086. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  1087. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  1088. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  1089. data/third_party/abseil-cpp/absl/base/config.h +89 -106
  1090. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  1091. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  1092. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  1093. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  1094. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  1095. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  1096. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  1097. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  1098. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  1099. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  1100. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  1101. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  1102. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1103. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  1104. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  1105. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  1106. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  1107. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  1108. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  1109. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  1110. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  1111. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  1112. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  1113. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  1114. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  1115. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  1116. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  1117. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  1118. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  1119. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  1120. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  1121. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  1122. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  1123. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  1124. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  1125. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  1126. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  1127. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  1128. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  1129. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  1130. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  1131. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  1132. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  1133. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  1134. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  1135. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
  1136. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
  1137. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
  1138. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
  1139. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
  1140. data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
  1141. data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
  1142. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  1143. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  1144. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  1145. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  1146. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  1147. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  1148. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  1149. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  1150. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  1151. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  1152. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  1153. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  1154. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  1155. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  1156. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  1157. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  1158. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  1159. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  1160. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  1161. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  1162. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  1163. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  1164. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  1165. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  1166. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  1167. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  1168. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  1169. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  1170. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  1171. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  1172. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  1173. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  1174. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  1175. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  1176. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  1177. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  1178. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  1179. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  1180. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  1181. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
  1182. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  1183. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  1184. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  1185. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  1186. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  1187. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  1188. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  1189. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  1190. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  1191. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  1192. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  1193. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  1194. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  1195. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  1196. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  1197. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  1198. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  1199. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  1200. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  1201. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  1202. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  1203. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  1204. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  1205. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  1206. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  1207. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  1208. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  1209. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  1210. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  1211. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  1212. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  1213. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  1214. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  1215. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  1216. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  1217. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  1218. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  1219. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  1220. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  1221. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  1222. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  1223. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  1224. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  1225. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  1226. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  1227. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  1228. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  1229. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  1230. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  1231. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  1232. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  1233. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  1234. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  1235. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  1236. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  1237. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1238. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  1239. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  1240. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  1241. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  1242. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  1243. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  1244. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  1245. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  1246. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  1247. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  1248. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  1249. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  1250. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  1251. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  1252. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  1253. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  1254. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  1255. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  1256. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  1257. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  1258. data/third_party/boringssl-with-bazel/err_data.c +554 -553
  1259. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
  1260. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -8
  1261. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
  1262. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +6 -6
  1263. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
  1264. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +11 -4
  1265. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +3 -3
  1266. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +10 -6
  1267. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +7 -4
  1268. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +9 -7
  1269. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +40 -55
  1270. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +7 -7
  1271. data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
  1272. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +14 -54
  1273. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +23 -22
  1274. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  1275. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +4 -2
  1276. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +4 -4
  1277. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +11 -2
  1278. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +31 -22
  1279. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
  1280. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
  1281. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  1282. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +29 -26
  1283. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +8 -0
  1284. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
  1285. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +31 -192
  1286. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
  1287. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
  1288. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -2
  1289. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
  1290. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
  1291. data/third_party/boringssl-with-bazel/src/crypto/{cpu_aarch64_freebsd.c → cpu_aarch64_openbsd.c} +23 -24
  1292. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  1293. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
  1294. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
  1295. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
  1296. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +55 -50
  1297. data/third_party/boringssl-with-bazel/src/crypto/{cpu_arm.c → curve25519/curve25519_64_adx.c} +4 -24
  1298. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
  1299. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
  1300. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
  1301. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
  1302. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +4 -0
  1303. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
  1304. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
  1305. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  1306. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +42 -34
  1307. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +17 -11
  1308. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
  1309. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +23 -21
  1310. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
  1311. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
  1312. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
  1313. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -1
  1314. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  1315. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
  1316. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
  1317. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
  1318. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
  1319. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
  1320. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
  1321. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
  1322. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
  1323. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
  1324. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  1325. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
  1326. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +41 -19
  1327. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +9 -0
  1328. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  1329. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +204 -428
  1330. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +4 -4
  1331. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +31 -64
  1332. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  1333. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +105 -143
  1334. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +19 -19
  1335. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +16 -18
  1336. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +27 -30
  1337. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +23 -26
  1338. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
  1339. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
  1340. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -37
  1341. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +31 -31
  1342. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -16
  1343. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +1 -1
  1344. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +11 -5
  1345. data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
  1346. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +2 -10
  1347. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +1 -4
  1348. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +115 -133
  1349. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
  1350. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +57 -47
  1351. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +1 -8
  1352. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
  1353. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
  1354. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
  1355. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
  1356. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -41
  1357. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +76 -16
  1358. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +5 -288
  1359. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +143 -83
  1360. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +126 -233
  1361. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +113 -24
  1362. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
  1363. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
  1364. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +33 -0
  1365. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +169 -6
  1366. data/third_party/boringssl-with-bazel/src/crypto/internal.h +216 -87
  1367. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +32 -2
  1368. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +11 -12
  1369. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +834 -0
  1370. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
  1371. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +25 -46
  1372. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +6 -13
  1373. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -14
  1374. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  1375. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  1376. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
  1377. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
  1378. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
  1379. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  1380. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  1381. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
  1382. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  1383. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +38 -0
  1384. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  1385. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
  1386. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +77 -0
  1387. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
  1388. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +152 -72
  1389. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  1390. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
  1391. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
  1392. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +62 -0
  1393. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +240 -72
  1394. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +35 -0
  1395. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +588 -130
  1396. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +27 -18
  1397. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +1 -1
  1398. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +10 -20
  1399. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
  1400. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +3 -2
  1401. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +17 -39
  1402. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +18 -14
  1403. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +39 -48
  1404. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -141
  1405. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
  1406. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +19 -25
  1407. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +72 -23
  1408. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +8 -4
  1409. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
  1410. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +22 -24
  1411. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -72
  1412. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +22 -29
  1413. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
  1414. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +9 -7
  1415. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
  1416. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
  1417. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +2 -2
  1418. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +1 -1
  1419. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
  1420. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +33 -46
  1421. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +1 -0
  1422. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +3 -5
  1423. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +20 -52
  1424. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -26
  1425. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +11 -9
  1426. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +17 -10
  1427. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +5 -3
  1428. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +5 -7
  1429. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
  1430. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  1431. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +11 -4
  1432. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +37 -112
  1433. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +19 -13
  1434. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
  1435. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
  1436. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  1437. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
  1438. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
  1439. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
  1440. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +28 -11
  1441. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
  1442. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +14 -10
  1443. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +34 -2
  1444. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
  1445. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +2 -11
  1446. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
  1447. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -3
  1448. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
  1449. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +91 -62
  1450. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +26 -19
  1451. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +275 -96
  1452. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +242 -223
  1453. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
  1454. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -25
  1455. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +4 -0
  1456. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +8 -0
  1457. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +760 -614
  1458. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +45 -12
  1459. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +11 -6
  1460. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +10 -68
  1461. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
  1462. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +33 -18
  1463. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  1464. data/third_party/boringssl-with-bazel/src/ssl/internal.h +86 -46
  1465. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +37 -18
  1466. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +8 -4
  1467. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +209 -209
  1468. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +6 -6
  1469. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +76 -118
  1470. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +209 -33
  1471. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +17 -4
  1472. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +19 -21
  1473. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
  1474. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
  1475. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
  1476. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +5 -21
  1477. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -2
  1478. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  1479. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
  1480. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
  1481. data/third_party/cares/cares/include/ares.h +23 -1
  1482. data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
  1483. data/third_party/cares/cares/include/ares_rules.h +2 -2
  1484. data/third_party/cares/cares/include/ares_version.h +3 -3
  1485. data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
  1486. data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
  1487. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
  1488. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
  1489. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
  1490. data/third_party/cares/cares/src/lib/ares_data.c +16 -0
  1491. data/third_party/cares/cares/src/lib/ares_data.h +7 -0
  1492. data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
  1493. data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
  1494. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
  1495. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
  1496. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
  1497. data/third_party/cares/cares/src/lib/ares_init.c +97 -485
  1498. data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
  1499. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
  1500. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
  1501. data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
  1502. data/third_party/cares/cares/src/lib/ares_private.h +30 -16
  1503. data/third_party/cares/cares/src/lib/ares_process.c +55 -16
  1504. data/third_party/cares/cares/src/lib/ares_query.c +1 -35
  1505. data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
  1506. data/third_party/cares/cares/src/lib/ares_send.c +5 -7
  1507. data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
  1508. data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
  1509. data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
  1510. data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
  1511. data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
  1512. data/third_party/upb/upb/{table_internal.h → alloc.h} +6 -6
  1513. data/third_party/upb/upb/arena.h +4 -193
  1514. data/third_party/upb/upb/array.h +4 -51
  1515. data/third_party/upb/upb/base/descriptor_constants.h +104 -0
  1516. data/third_party/upb/upb/base/log2.h +57 -0
  1517. data/third_party/upb/upb/{status.c → base/status.c} +2 -7
  1518. data/third_party/upb/upb/base/status.h +66 -0
  1519. data/third_party/upb/upb/base/string_view.h +75 -0
  1520. data/third_party/upb/upb/{array.c → collections/array.c} +67 -36
  1521. data/third_party/upb/upb/collections/array.h +85 -0
  1522. data/third_party/upb/upb/collections/array_internal.h +135 -0
  1523. data/third_party/upb/upb/{map.c → collections/map.c} +53 -26
  1524. data/third_party/upb/upb/collections/map.h +135 -0
  1525. data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
  1526. data/third_party/upb/upb/collections/map_internal.h +170 -0
  1527. data/third_party/upb/upb/collections/map_sorter.c +166 -0
  1528. data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
  1529. data/third_party/upb/upb/{message_value.h → collections/message_value.h} +12 -13
  1530. data/third_party/upb/upb/decode.h +3 -62
  1531. data/third_party/upb/upb/def.h +4 -384
  1532. data/third_party/upb/upb/def.hpp +3 -411
  1533. data/third_party/upb/upb/encode.h +3 -48
  1534. data/third_party/upb/upb/extension_registry.h +3 -52
  1535. data/third_party/upb/upb/{table.c → hash/common.c} +52 -110
  1536. data/third_party/upb/upb/hash/common.h +199 -0
  1537. data/third_party/upb/upb/hash/int_table.h +102 -0
  1538. data/third_party/upb/upb/hash/str_table.h +161 -0
  1539. data/third_party/upb/upb/{json_decode.c → json/decode.c} +63 -98
  1540. data/third_party/upb/upb/json/decode.h +52 -0
  1541. data/third_party/upb/upb/{json_encode.c → json/encode.c} +69 -45
  1542. data/third_party/upb/upb/json/encode.h +70 -0
  1543. data/third_party/upb/upb/json_decode.h +4 -15
  1544. data/third_party/upb/upb/json_encode.h +4 -33
  1545. data/third_party/upb/upb/lex/atoi.c +68 -0
  1546. data/third_party/upb/upb/lex/atoi.h +53 -0
  1547. data/third_party/upb/upb/{upb.c → lex/round_trip.c} +2 -11
  1548. data/third_party/upb/upb/{internal/upb.h → lex/round_trip.h} +17 -30
  1549. data/third_party/upb/upb/lex/strtod.c +97 -0
  1550. data/third_party/upb/upb/lex/strtod.h +46 -0
  1551. data/third_party/upb/upb/lex/unicode.c +57 -0
  1552. data/third_party/upb/upb/lex/unicode.h +77 -0
  1553. data/third_party/upb/upb/map.h +4 -85
  1554. data/third_party/upb/upb/mem/alloc.c +47 -0
  1555. data/third_party/upb/upb/mem/alloc.h +98 -0
  1556. data/third_party/upb/upb/mem/arena.c +367 -0
  1557. data/third_party/upb/upb/mem/arena.h +160 -0
  1558. data/third_party/upb/upb/mem/arena_internal.h +114 -0
  1559. data/third_party/upb/upb/message/accessors.c +68 -0
  1560. data/third_party/upb/upb/message/accessors.h +379 -0
  1561. data/third_party/upb/upb/message/accessors_internal.h +325 -0
  1562. data/third_party/upb/upb/message/extension_internal.h +83 -0
  1563. data/third_party/upb/upb/message/internal.h +135 -0
  1564. data/third_party/upb/upb/message/message.c +180 -0
  1565. data/third_party/upb/upb/message/message.h +69 -0
  1566. data/third_party/upb/upb/mini_table/common.c +128 -0
  1567. data/third_party/upb/upb/mini_table/common.h +170 -0
  1568. data/third_party/upb/upb/mini_table/common_internal.h +111 -0
  1569. data/third_party/upb/upb/{mini_table.c → mini_table/decode.c} +513 -533
  1570. data/third_party/upb/upb/mini_table/decode.h +179 -0
  1571. data/third_party/upb/upb/mini_table/encode.c +300 -0
  1572. data/third_party/upb/upb/mini_table/encode_internal.h +111 -0
  1573. data/third_party/upb/upb/{mini_table.hpp → mini_table/encode_internal.hpp} +32 -8
  1574. data/third_party/upb/upb/mini_table/enum_internal.h +88 -0
  1575. data/third_party/upb/upb/mini_table/extension_internal.h +47 -0
  1576. data/third_party/upb/upb/{extension_registry.c → mini_table/extension_registry.c} +27 -24
  1577. data/third_party/upb/upb/mini_table/extension_registry.h +104 -0
  1578. data/third_party/upb/upb/mini_table/field_internal.h +192 -0
  1579. data/third_party/upb/upb/mini_table/file_internal.h +47 -0
  1580. data/third_party/upb/upb/mini_table/message_internal.h +136 -0
  1581. data/third_party/upb/upb/mini_table/sub_internal.h +38 -0
  1582. data/third_party/upb/upb/mini_table/types.h +40 -0
  1583. data/third_party/upb/upb/msg.h +3 -38
  1584. data/third_party/upb/upb/port/atomic.h +101 -0
  1585. data/third_party/upb/upb/{port_def.inc → port/def.inc} +94 -27
  1586. data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +13 -3
  1587. data/third_party/upb/upb/{internal → port}/vsnprintf_compat.h +5 -7
  1588. data/third_party/upb/upb/reflection/common.h +67 -0
  1589. data/third_party/upb/upb/reflection/def.h +42 -0
  1590. data/third_party/upb/upb/reflection/def.hpp +610 -0
  1591. data/third_party/upb/upb/reflection/def_builder.c +357 -0
  1592. data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
  1593. data/third_party/upb/upb/reflection/def_pool.c +462 -0
  1594. data/third_party/upb/upb/reflection/def_pool.h +108 -0
  1595. data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
  1596. data/third_party/upb/upb/reflection/def_type.c +50 -0
  1597. data/third_party/upb/upb/reflection/def_type.h +81 -0
  1598. data/third_party/upb/upb/reflection/desc_state.c +53 -0
  1599. data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
  1600. data/third_party/upb/upb/reflection/enum_def.c +310 -0
  1601. data/third_party/upb/upb/reflection/enum_def.h +80 -0
  1602. data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
  1603. data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
  1604. data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
  1605. data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
  1606. data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
  1607. data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
  1608. data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
  1609. data/third_party/upb/upb/reflection/extension_range.c +93 -0
  1610. data/third_party/upb/upb/reflection/extension_range.h +55 -0
  1611. data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
  1612. data/third_party/upb/upb/reflection/field_def.c +930 -0
  1613. data/third_party/upb/upb/reflection/field_def.h +91 -0
  1614. data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
  1615. data/third_party/upb/upb/reflection/file_def.c +370 -0
  1616. data/third_party/upb/upb/reflection/file_def.h +77 -0
  1617. data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
  1618. data/third_party/upb/upb/reflection/message.c +233 -0
  1619. data/third_party/upb/upb/reflection/message.h +102 -0
  1620. data/third_party/upb/upb/reflection/message.hpp +37 -0
  1621. data/third_party/upb/upb/reflection/message_def.c +718 -0
  1622. data/third_party/upb/upb/reflection/message_def.h +174 -0
  1623. data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
  1624. data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
  1625. data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
  1626. data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
  1627. data/third_party/upb/upb/reflection/method_def.c +124 -0
  1628. data/third_party/upb/upb/reflection/method_def.h +59 -0
  1629. data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
  1630. data/third_party/upb/upb/reflection/oneof_def.c +226 -0
  1631. data/third_party/upb/upb/reflection/oneof_def.h +66 -0
  1632. data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
  1633. data/third_party/upb/upb/reflection/service_def.c +128 -0
  1634. data/third_party/upb/upb/reflection/service_def.h +60 -0
  1635. data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
  1636. data/third_party/upb/upb/reflection.h +4 -78
  1637. data/third_party/upb/upb/reflection.hpp +3 -7
  1638. data/third_party/upb/upb/status.h +4 -34
  1639. data/third_party/upb/upb/{collections.h → string_view.h} +7 -7
  1640. data/third_party/upb/upb/{text_encode.c → text/encode.c} +74 -70
  1641. data/third_party/upb/upb/text/encode.h +69 -0
  1642. data/third_party/upb/upb/text_encode.h +4 -32
  1643. data/third_party/upb/upb/upb.h +6 -151
  1644. data/third_party/upb/upb/upb.hpp +10 -18
  1645. data/third_party/upb/upb/wire/common.h +44 -0
  1646. data/third_party/upb/upb/wire/common_internal.h +50 -0
  1647. data/third_party/upb/upb/wire/decode.c +1343 -0
  1648. data/third_party/upb/upb/wire/decode.h +108 -0
  1649. data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
  1650. data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
  1651. data/third_party/upb/upb/{internal/decode.h → wire/decode_internal.h} +44 -92
  1652. data/third_party/upb/upb/{encode.c → wire/encode.c} +114 -95
  1653. data/third_party/upb/upb/wire/encode.h +92 -0
  1654. data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
  1655. data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
  1656. data/third_party/upb/upb/wire/reader.c +67 -0
  1657. data/third_party/upb/upb/wire/reader.h +227 -0
  1658. data/third_party/upb/upb/wire/swap_internal.h +63 -0
  1659. data/third_party/upb/upb/wire/types.h +41 -0
  1660. data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
  1661. data/third_party/{upb/third_party/utf8_range → utf8_range}/utf8_range.h +12 -0
  1662. metadata +258 -82
  1663. data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -175
  1664. data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
  1665. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  1666. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  1667. data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
  1668. data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
  1669. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  1670. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  1671. data/src/core/lib/promise/detail/basic_join.h +0 -197
  1672. data/src/core/lib/promise/detail/switch.h +0 -1455
  1673. data/src/core/lib/promise/try_join.h +0 -82
  1674. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  1675. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -52
  1676. data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
  1677. data/third_party/re2/util/benchmark.h +0 -156
  1678. data/third_party/re2/util/flags.h +0 -26
  1679. data/third_party/re2/util/malloc_counter.h +0 -19
  1680. data/third_party/re2/util/pcre.cc +0 -1025
  1681. data/third_party/re2/util/pcre.h +0 -681
  1682. data/third_party/re2/util/test.h +0 -50
  1683. data/third_party/upb/upb/arena.c +0 -277
  1684. data/third_party/upb/upb/decode.c +0 -1221
  1685. data/third_party/upb/upb/def.c +0 -3269
  1686. data/third_party/upb/upb/internal/table.h +0 -385
  1687. data/third_party/upb/upb/mini_table.h +0 -189
  1688. data/third_party/upb/upb/msg.c +0 -368
  1689. data/third_party/upb/upb/msg_internal.h +0 -837
  1690. data/third_party/upb/upb/reflection.c +0 -323
  1691. data/third_party/zlib/gzclose.c +0 -25
  1692. data/third_party/zlib/gzlib.c +0 -639
  1693. data/third_party/zlib/gzread.c +0 -650
  1694. data/third_party/zlib/gzwrite.c +0 -677
  1695. /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
  1696. /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -12,7 +12,6 @@
12
12
  // See the License for the specific language governing permissions and
13
13
  // limitations under the License.
14
14
 
15
- ////////////////////////////////////////////////////////////////////////////////
16
15
  // This file is autogenerated: see
17
16
  // tools/codegen/core/gen_huffman_decompressor.cc
18
17
 
@@ -22,7 +21,6 @@
22
21
 
23
22
  #include <cstddef>
24
23
  #include <cstdint>
25
- // GEOMETRY: 8,7,8,5
26
24
  namespace grpc_core {
27
25
  class HuffDecoderCommon {
28
26
  protected:
@@ -40,51 +38,53 @@ class HuffDecoderCommon {
40
38
  static inline uint64_t GetEmit4(size_t i, size_t emit) {
41
39
  return table4_emit_[i >> 6][emit];
42
40
  }
43
- static inline uint64_t GetOp1(size_t i) {
44
- return table1_0_inner_[table1_0_outer_[i]];
41
+ static inline uint64_t GetOp5(size_t i) {
42
+ return table5_ops_[i >> 7][i & 0x7f];
45
43
  }
46
- static inline uint64_t GetEmit1(size_t, size_t emit) {
47
- return table1_0_emit_[emit];
44
+ static inline uint64_t GetEmit5(size_t i, size_t emit) {
45
+ return table5_emit_[i >> 7][emit];
48
46
  }
49
- static inline uint64_t GetOp5(size_t i) {
50
- return (i < 2 ? (i ? 6 : 2) : ((i - 2) ? 14 : 10));
47
+ static inline uint64_t GetOp6(size_t i) {
48
+ return table6_ops_[i >> 5][i & 0x1f];
51
49
  }
52
- static inline uint64_t GetEmit5(size_t, size_t emit) {
53
- return (emit < 2 ? (emit + 33) : ((emit - 2) + 40));
50
+ static inline uint64_t GetEmit6(size_t i, size_t emit) {
51
+ return table6_emit_[i >> 5][emit];
54
52
  }
55
53
  static inline uint64_t GetOp7(size_t i) {
56
- return ((i < 2 ? (i) : ((i - 2) + 1)) < 1
57
- ? (((void)(i < 2 ? (i) : ((i - 2) + 1)), 2))
58
- : (((i < 2 ? (i) : ((i - 2) + 1)) - 1) ? 0 : 1));
54
+ return table7_ops_[i >> 6][i & 0x3f];
59
55
  }
60
- static inline uint64_t GetEmit7(size_t, size_t emit) {
61
- return ((void)emit, 63);
56
+ static inline uint64_t GetEmit7(size_t i, size_t emit) {
57
+ return table7_emit_[i >> 6][emit];
62
58
  }
63
59
  static inline uint64_t GetOp8(size_t i) {
64
- return table8_0_inner_[table8_0_outer_[i]];
60
+ return table8_inner_[i >> 6][table8_outer_[i >> 6][i & 0x3f]];
65
61
  }
66
- static inline uint64_t GetEmit8(size_t, size_t emit) {
67
- return (emit < 2 ? (emit ? 39 : 63) : ((emit - 2) ? 124 : 43));
62
+ static inline uint64_t GetEmit8(size_t i, size_t emit) {
63
+ return table8_emit_[i >> 6][emit];
68
64
  }
69
65
  static inline uint64_t GetOp9(size_t i) {
70
- return table9_0_inner_[table9_0_outer_[i]];
66
+ return table9_ops_[i >> 5][i & 0x1f];
71
67
  }
72
- static inline uint64_t GetEmit9(size_t, size_t emit) {
73
- return table9_0_emit_[emit];
68
+ static inline uint64_t GetEmit9(size_t i, size_t emit) {
69
+ return table9_emit_[i >> 5][emit];
74
70
  }
75
- static inline uint64_t GetOp10(size_t i) { return table10_0_ops_[i]; }
76
- static inline uint64_t GetEmit10(size_t, size_t emit) {
77
- return table10_0_emit_[emit];
71
+ static inline uint64_t GetOp10(size_t i) {
72
+ return table10_inner_[i >> 6][table10_outer_[i >> 6][i & 0x3f]];
78
73
  }
79
- static inline uint64_t GetOp11(size_t i) { return table11_0_ops_[i]; }
80
- static inline uint64_t GetEmit11(size_t, size_t emit) {
81
- return table11_0_emit_[emit];
74
+ static inline uint64_t GetEmit10(size_t i, size_t emit) {
75
+ return table10_emit_[i >> 6][emit];
82
76
  }
83
- static inline uint64_t GetOp6(size_t i) {
84
- return table6_ops_[i >> 6][i & 0x3f];
77
+ static inline uint64_t GetOp11(size_t i) {
78
+ return table11_inner_[i >> 6][table11_outer_[i >> 6][i & 0x3f]];
85
79
  }
86
- static inline uint64_t GetEmit6(size_t i, size_t emit) {
87
- return table6_emit_[i >> 6][emit];
80
+ static inline uint64_t GetEmit11(size_t i, size_t emit) {
81
+ return table11_emit_[i >> 6][emit];
82
+ }
83
+ static inline uint64_t GetOp1(size_t i) {
84
+ return table1_inner_[i >> 6][table1_outer_[i >> 6][i & 0x3f]];
85
+ }
86
+ static inline uint64_t GetEmit1(size_t i, size_t emit) {
87
+ return table1_emit_[i >> 6][emit];
88
88
  }
89
89
  static inline uint64_t GetOp13(size_t i) {
90
90
  return table13_0_inner_[(i < 3 ? (i) : ((i - 3) / 12 + 3))];
@@ -100,80 +100,117 @@ class HuffDecoderCommon {
100
100
  static inline uint64_t GetEmit15(size_t, size_t emit) {
101
101
  return table15_0_emit_[emit];
102
102
  }
103
- static inline uint64_t GetOp16(size_t i) { return table16_0_ops_[i]; }
104
- static inline uint64_t GetEmit16(size_t, size_t emit) {
105
- return table16_0_emit_[emit];
106
- }
107
103
  static inline uint64_t GetOp12(size_t i) {
108
104
  return table12_0_inner_[table12_0_outer_[i]];
109
105
  }
110
106
  static inline uint64_t GetEmit12(size_t, size_t emit) {
111
107
  return table12_0_emit_[emit];
112
108
  }
113
- static inline uint64_t GetOp17(size_t i) { return i ? 3 : 1; }
114
- static inline uint64_t GetEmit17(size_t, size_t emit) {
115
- return emit ? 142 : 9;
109
+ static inline uint64_t GetOp16(size_t i) { return i ? 3 : 1; }
110
+ static inline uint64_t GetEmit16(size_t, size_t emit) {
111
+ return emit ? 135 : 1;
116
112
  }
113
+ static inline uint64_t GetOp17(size_t i) { return i ? 3 : 1; }
114
+ static inline uint64_t GetEmit17(size_t, size_t emit) { return emit + 137; }
117
115
  static inline uint64_t GetOp18(size_t i) { return i ? 3 : 1; }
118
- static inline uint64_t GetEmit18(size_t, size_t emit) { return emit + 144; }
116
+ static inline uint64_t GetEmit18(size_t, size_t emit) { return emit + 139; }
119
117
  static inline uint64_t GetOp19(size_t i) { return i ? 3 : 1; }
120
118
  static inline uint64_t GetEmit19(size_t, size_t emit) {
121
- return emit ? 159 : 148;
119
+ return emit ? 143 : 141;
122
120
  }
123
121
  static inline uint64_t GetOp20(size_t i) { return i ? 3 : 1; }
124
122
  static inline uint64_t GetEmit20(size_t, size_t emit) {
125
- return emit ? 206 : 171;
123
+ return emit ? 149 : 147;
126
124
  }
127
125
  static inline uint64_t GetOp21(size_t i) { return i ? 3 : 1; }
128
- static inline uint64_t GetEmit21(size_t, size_t emit) {
129
- return emit ? 225 : 215;
130
- }
126
+ static inline uint64_t GetEmit21(size_t, size_t emit) { return emit + 150; }
131
127
  static inline uint64_t GetOp22(size_t i) { return i ? 3 : 1; }
132
- static inline uint64_t GetEmit22(size_t, size_t emit) { return emit + 236; }
133
- static inline uint64_t GetOp23(size_t i) {
128
+ static inline uint64_t GetEmit22(size_t, size_t emit) {
129
+ return emit ? 155 : 152;
130
+ }
131
+ static inline uint64_t GetOp23(size_t i) { return i ? 3 : 1; }
132
+ static inline uint64_t GetEmit23(size_t, size_t emit) { return emit + 157; }
133
+ static inline uint64_t GetOp24(size_t i) { return i ? 3 : 1; }
134
+ static inline uint64_t GetEmit24(size_t, size_t emit) { return emit + 165; }
135
+ static inline uint64_t GetOp25(size_t i) { return i ? 3 : 1; }
136
+ static inline uint64_t GetEmit25(size_t, size_t emit) {
137
+ return emit ? 174 : 168;
138
+ }
139
+ static inline uint64_t GetOp26(size_t i) { return i ? 3 : 1; }
140
+ static inline uint64_t GetEmit26(size_t, size_t emit) {
141
+ return emit ? 180 : 175;
142
+ }
143
+ static inline uint64_t GetOp27(size_t i) { return i ? 3 : 1; }
144
+ static inline uint64_t GetEmit27(size_t, size_t emit) { return emit + 182; }
145
+ static inline uint64_t GetOp28(size_t i) { return i ? 3 : 1; }
146
+ static inline uint64_t GetEmit28(size_t, size_t emit) {
147
+ return emit ? 191 : 188;
148
+ }
149
+ static inline uint64_t GetOp29(size_t i) { return i ? 3 : 1; }
150
+ static inline uint64_t GetEmit29(size_t, size_t emit) {
151
+ return emit ? 231 : 197;
152
+ }
153
+ static inline uint64_t GetOp30(size_t i) {
134
154
  return (i < 2 ? (i ? 6 : 2) : ((i - 2) ? 14 : 10));
135
155
  }
136
- static inline uint64_t GetEmit23(size_t, size_t emit) {
137
- return (emit < 2 ? (emit ? 207 : 199) : ((emit - 2) + 234));
156
+ static inline uint64_t GetEmit30(size_t, size_t emit) {
157
+ return (emit < 2 ? (emit + 144) : ((emit - 2) ? 159 : 148));
138
158
  }
139
- static inline uint64_t GetOp24(size_t i) { return table24_0_inner_[i]; }
140
- static inline uint64_t GetEmit24(size_t, size_t emit) {
141
- return table24_0_emit_[emit];
159
+ static inline uint64_t GetOp31(size_t i) {
160
+ return (i < 2 ? (i ? 6 : 2) : ((i - 2) ? 14 : 10));
142
161
  }
143
- static inline uint64_t GetOp25(size_t i) { return table25_0_inner_[i]; }
144
- static inline uint64_t GetEmit25(size_t, size_t emit) {
145
- return table25_0_emit_[emit];
162
+ static inline uint64_t GetEmit31(size_t, size_t emit) {
163
+ return (emit < 2 ? (emit ? 206 : 171) : ((emit - 2) ? 225 : 215));
146
164
  }
147
- static inline uint64_t GetOp27(size_t i) {
148
- return (
149
- (i < 1 ? (((void)i, 0)) : ((i - 1) / 14 + 1)) < 1
150
- ? (((void)(i < 1 ? (((void)i, 0)) : ((i - 1) / 14 + 1)), 2))
151
- : (((i < 1 ? (((void)i, 0)) : ((i - 1) / 14 + 1)) - 1) ? 0 : 1));
165
+ static inline uint64_t GetOp33(size_t i) { return table33_0_inner_[i]; }
166
+ static inline uint64_t GetEmit33(size_t, size_t emit) {
167
+ return table33_0_emit_[emit];
152
168
  }
153
- static inline uint64_t GetEmit27(size_t, size_t emit) {
154
- return ((void)emit, 254);
169
+ static inline uint64_t GetOp32(size_t i) { return table32_0_ops_[i]; }
170
+ static inline uint64_t GetEmit32(size_t, size_t emit) {
171
+ return table32_0_emit_[emit];
155
172
  }
156
- static inline uint64_t GetOp26(size_t i) {
157
- return table26_0_inner_[(i < 1 ? (((void)i, 0)) : ((i - 1)))];
173
+ static inline uint64_t GetOp35(size_t i) { return i; }
174
+ static inline uint64_t GetEmit35(size_t, size_t emit) {
175
+ return ((void)emit, 239);
158
176
  }
159
- static inline uint64_t GetEmit26(size_t, size_t emit) {
160
- return table26_0_emit_[emit];
177
+ static inline uint64_t GetOp34(size_t i) {
178
+ return ((i < 1 ? (((void)i, 0)) : ((i - 1))) < 1
179
+ ? (((void)(i < 1 ? (((void)i, 0)) : ((i - 1))), 1))
180
+ : (((i < 1 ? (((void)i, 0)) : ((i - 1))) - 1) ? 10 : 6));
161
181
  }
162
- static inline uint64_t GetOp28(size_t i) {
163
- return (i < 2 ? (i ? 10 : 2) : ((i - 2) ? 6 : 18));
182
+ static inline uint64_t GetEmit34(size_t, size_t emit) {
183
+ return (emit < 1 ? (((void)emit, 239)) : ((emit - 1) ? 142 : 9));
164
184
  }
165
- static inline uint64_t GetEmit28(size_t, size_t emit) {
166
- return (emit < 1 ? (((void)emit, 10)) : ((emit - 1) ? 22 : 13));
185
+ static inline uint64_t GetOp37(size_t i) {
186
+ return ((i < 2 ? (i) : (((void)(i - 2), 2))) < 1
187
+ ? (((void)(i < 2 ? (i) : (((void)(i - 2), 2))), 0))
188
+ : (((i < 2 ? (i) : (((void)(i - 2), 2))) - 1) ? 1 : 2));
167
189
  }
168
- static inline uint64_t GetOp30(size_t i) { return table30_0_inner_[i]; }
169
- static inline uint64_t GetEmit30(size_t, size_t emit) {
170
- return table30_0_emit_[emit];
190
+ static inline uint64_t GetEmit37(size_t, size_t emit) { return emit + 236; }
191
+ static inline uint64_t GetOp36(size_t i) {
192
+ return table36_0_inner_[(i < 3 ? (i / 2 + 0) : ((i - 3) + 1))];
171
193
  }
172
- static inline uint64_t GetOp29(size_t i) {
173
- return table29_0_inner_[(i < 13 ? (i / 2 + 0) : ((i - 13) + 6))];
194
+ static inline uint64_t GetEmit36(size_t, size_t emit) {
195
+ return table36_0_emit_[emit];
174
196
  }
175
- static inline uint64_t GetEmit29(size_t, size_t emit) {
176
- return table29_0_emit_[emit];
197
+ static inline uint64_t GetOp39(size_t i) { return table39_0_ops_[i]; }
198
+ static inline uint64_t GetEmit39(size_t, size_t emit) {
199
+ return table39_0_emit_[emit];
200
+ }
201
+ static inline uint64_t GetOp40(size_t i) { return table40_0_ops_[i]; }
202
+ static inline uint64_t GetEmit40(size_t, size_t emit) {
203
+ return table40_0_emit_[emit];
204
+ }
205
+ static inline uint64_t GetOp41(size_t i) { return table41_0_ops_[i]; }
206
+ static inline uint64_t GetEmit41(size_t, size_t emit) {
207
+ return table40_0_emit_[emit];
208
+ }
209
+ static inline uint64_t GetOp38(size_t i) {
210
+ return table38_ops_[i >> 5][i & 0x1f];
211
+ }
212
+ static inline uint64_t GetEmit38(size_t i, size_t emit) {
213
+ return table38_emit_[i >> 5][emit];
177
214
  }
178
215
 
179
216
  private:
@@ -187,44 +224,1373 @@ class HuffDecoderCommon {
187
224
  static const uint8_t table4_1_ops_[64];
188
225
  static const uint8_t* const table4_emit_[2];
189
226
  static const uint8_t* const table4_ops_[2];
190
- static const uint8_t table1_0_emit_[74];
191
- static const uint16_t table1_0_inner_[76];
192
- static const uint8_t table1_0_outer_[256];
193
- static const uint8_t table8_0_inner_[6];
194
- static const uint8_t table8_0_outer_[8];
195
- static const uint8_t table9_0_emit_[6];
196
- static const uint8_t table9_0_inner_[8];
197
- static const uint8_t table9_0_outer_[16];
198
- static const uint8_t table10_0_emit_[12];
199
- static const uint8_t table10_0_ops_[32];
200
- static const uint8_t table11_0_emit_[14];
201
- static const uint8_t table11_0_ops_[64];
202
- static const uint8_t table6_0_emit_[3];
203
- static const uint8_t table6_0_ops_[64];
204
- static const uint8_t table6_1_emit_[14];
205
- static const uint8_t table6_1_ops_[64];
206
- static const uint8_t* const table6_emit_[2];
207
- static const uint8_t* const table6_ops_[2];
227
+ static const uint8_t table5_0_ops_[128];
228
+ static const uint8_t table5_1_emit_[52];
229
+ static const uint8_t table5_1_ops_[128];
230
+ static const uint8_t* const table5_emit_[2];
231
+ static const uint8_t* const table5_ops_[2];
232
+ static const uint8_t table6_0_emit_[2];
233
+ static const uint8_t table6_0_ops_[32];
234
+ static const uint8_t table6_1_emit_[2];
235
+ static const uint8_t table6_2_emit_[2];
236
+ static const uint8_t table6_3_emit_[2];
237
+ static const uint8_t table6_4_emit_[2];
238
+ static const uint8_t table6_5_emit_[4];
239
+ static const uint8_t table6_5_ops_[32];
240
+ static const uint8_t table6_6_emit_[4];
241
+ static const uint8_t table6_7_emit_[4];
242
+ static const uint8_t table6_8_emit_[4];
243
+ static const uint8_t table6_9_emit_[4];
244
+ static const uint8_t table6_10_emit_[4];
245
+ static const uint8_t table6_11_emit_[6];
246
+ static const uint8_t table6_11_ops_[32];
247
+ static const uint8_t table6_12_emit_[8];
248
+ static const uint8_t table6_12_ops_[32];
249
+ static const uint8_t table6_13_emit_[8];
250
+ static const uint8_t table6_14_emit_[8];
251
+ static const uint8_t table6_15_emit_[10];
252
+ static const uint8_t table6_15_ops_[32];
253
+ static const uint8_t* const table6_emit_[16];
254
+ static const uint8_t* const table6_ops_[16];
255
+ static const uint8_t table7_0_emit_[36];
256
+ static const uint8_t table7_0_ops_[64];
257
+ static const uint8_t table7_1_emit_[36];
258
+ static const uint8_t table7_1_ops_[64];
259
+ static const uint8_t table7_2_emit_[36];
260
+ static const uint8_t table7_2_ops_[64];
261
+ static const uint8_t table7_3_emit_[36];
262
+ static const uint8_t table7_3_ops_[64];
263
+ static const uint8_t table7_4_emit_[38];
264
+ static const uint8_t table7_4_ops_[64];
265
+ static const uint8_t table7_5_ops_[64];
266
+ static const uint8_t table7_11_ops_[64];
267
+ static const uint8_t table7_12_ops_[64];
268
+ static const uint8_t table7_15_emit_[15];
269
+ static const uint8_t table7_15_ops_[64];
270
+ static const uint8_t* const table7_emit_[16];
271
+ static const uint8_t* const table7_ops_[16];
272
+ static const uint8_t table8_0_emit_[71];
273
+ static const uint16_t table8_0_inner_[38];
274
+ static const uint8_t table8_0_outer_[64];
275
+ static const uint8_t table8_1_emit_[71];
276
+ static const uint16_t table8_1_inner_[38];
277
+ static const uint8_t table8_2_emit_[71];
278
+ static const uint16_t table8_2_inner_[38];
279
+ static const uint8_t table8_3_emit_[71];
280
+ static const uint16_t table8_3_inner_[38];
281
+ static const uint8_t table8_4_emit_[71];
282
+ static const uint16_t table8_4_inner_[38];
283
+ static const uint8_t table8_5_emit_[71];
284
+ static const uint16_t table8_5_inner_[38];
285
+ static const uint8_t table8_6_emit_[71];
286
+ static const uint16_t table8_6_inner_[38];
287
+ static const uint8_t table8_7_emit_[71];
288
+ static const uint16_t table8_7_inner_[38];
289
+ static const uint8_t table8_8_emit_[71];
290
+ static const uint16_t table8_8_inner_[38];
291
+ static const uint8_t table8_9_emit_[71];
292
+ static const uint16_t table8_9_inner_[38];
293
+ static const uint8_t table8_10_emit_[40];
294
+ static const uint16_t table8_10_inner_[23];
295
+ static const uint8_t table8_10_outer_[64];
296
+ static const uint8_t table8_11_emit_[40];
297
+ static const uint8_t table8_12_emit_[40];
298
+ static const uint8_t table8_13_emit_[40];
299
+ static const uint8_t table8_14_emit_[40];
300
+ static const uint8_t table8_15_emit_[40];
301
+ static const uint8_t table8_16_emit_[40];
302
+ static const uint8_t table8_17_emit_[40];
303
+ static const uint8_t table8_18_emit_[40];
304
+ static const uint8_t table8_19_emit_[40];
305
+ static const uint8_t table8_20_emit_[40];
306
+ static const uint8_t table8_21_emit_[40];
307
+ static const uint8_t table8_22_emit_[40];
308
+ static const uint8_t table8_23_emit_[4];
309
+ static const uint16_t table8_23_inner_[5];
310
+ static const uint8_t table8_23_outer_[64];
311
+ static const uint8_t table8_24_emit_[4];
312
+ static const uint8_t table8_25_emit_[4];
313
+ static const uint8_t table8_26_emit_[4];
314
+ static const uint8_t table8_27_emit_[4];
315
+ static const uint8_t table8_28_emit_[4];
316
+ static const uint8_t table8_29_emit_[4];
317
+ static const uint8_t table8_30_emit_[4];
318
+ static const uint8_t table8_31_emit_[14];
319
+ static const uint16_t table8_31_inner_[16];
320
+ static const uint8_t table8_31_outer_[64];
321
+ static const uint8_t* const table8_emit_[32];
322
+ static const uint16_t* const table8_inner_[32];
323
+ static const uint8_t* const table8_outer_[32];
324
+ static const uint8_t table9_0_emit_[15];
325
+ static const uint8_t table9_0_ops_[32];
326
+ static const uint8_t table9_1_emit_[28];
327
+ static const uint8_t table9_1_ops_[32];
328
+ static const uint8_t table9_2_emit_[36];
329
+ static const uint8_t table9_2_ops_[32];
330
+ static const uint8_t table9_3_emit_[56];
331
+ static const uint8_t table9_3_ops_[32];
332
+ static const uint8_t table9_4_emit_[15];
333
+ static const uint8_t table9_4_ops_[32];
334
+ static const uint8_t table9_5_emit_[28];
335
+ static const uint8_t table9_6_emit_[36];
336
+ static const uint8_t table9_7_emit_[56];
337
+ static const uint8_t table9_8_emit_[15];
338
+ static const uint8_t table9_8_ops_[32];
339
+ static const uint8_t table9_9_emit_[28];
340
+ static const uint8_t table9_10_emit_[36];
341
+ static const uint8_t table9_11_emit_[56];
342
+ static const uint8_t table9_12_emit_[15];
343
+ static const uint8_t table9_12_ops_[32];
344
+ static const uint8_t table9_13_emit_[28];
345
+ static const uint8_t table9_14_emit_[36];
346
+ static const uint8_t table9_15_emit_[56];
347
+ static const uint8_t table9_16_emit_[15];
348
+ static const uint8_t table9_16_ops_[32];
349
+ static const uint8_t table9_17_emit_[28];
350
+ static const uint8_t table9_18_emit_[36];
351
+ static const uint8_t table9_19_emit_[56];
352
+ static const uint8_t table9_20_emit_[15];
353
+ static const uint8_t table9_20_ops_[32];
354
+ static const uint8_t table9_21_emit_[28];
355
+ static const uint8_t table9_22_emit_[36];
356
+ static const uint8_t table9_23_emit_[56];
357
+ static const uint8_t table9_24_emit_[15];
358
+ static const uint8_t table9_24_ops_[32];
359
+ static const uint8_t table9_25_emit_[28];
360
+ static const uint8_t table9_26_emit_[36];
361
+ static const uint8_t table9_27_emit_[56];
362
+ static const uint8_t table9_28_emit_[16];
363
+ static const uint8_t table9_28_ops_[32];
364
+ static const uint8_t table9_29_emit_[28];
365
+ static const uint8_t table9_30_emit_[36];
366
+ static const uint8_t table9_31_emit_[56];
367
+ static const uint8_t table9_32_emit_[16];
368
+ static const uint8_t table9_33_emit_[27];
369
+ static const uint8_t table9_33_ops_[32];
370
+ static const uint8_t table9_34_emit_[36];
371
+ static const uint8_t table9_35_emit_[56];
372
+ static const uint8_t table9_36_emit_[16];
373
+ static const uint8_t table9_37_emit_[27];
374
+ static const uint8_t table9_37_ops_[32];
375
+ static const uint8_t table9_38_emit_[36];
376
+ static const uint8_t table9_39_emit_[56];
377
+ static const uint8_t table9_40_emit_[43];
378
+ static const uint8_t table9_40_ops_[32];
379
+ static const uint8_t table9_41_emit_[28];
380
+ static const uint8_t table9_41_ops_[32];
381
+ static const uint8_t table9_42_emit_[43];
382
+ static const uint8_t table9_42_ops_[32];
383
+ static const uint8_t table9_43_emit_[28];
384
+ static const uint8_t table9_44_emit_[43];
385
+ static const uint8_t table9_44_ops_[32];
386
+ static const uint8_t table9_45_emit_[28];
387
+ static const uint8_t table9_46_emit_[43];
388
+ static const uint8_t table9_46_ops_[32];
389
+ static const uint8_t table9_47_emit_[28];
390
+ static const uint8_t table9_48_emit_[43];
391
+ static const uint8_t table9_48_ops_[32];
392
+ static const uint8_t table9_49_emit_[28];
393
+ static const uint8_t table9_50_emit_[43];
394
+ static const uint8_t table9_50_ops_[32];
395
+ static const uint8_t table9_51_emit_[28];
396
+ static const uint8_t table9_52_emit_[43];
397
+ static const uint8_t table9_52_ops_[32];
398
+ static const uint8_t table9_53_emit_[28];
399
+ static const uint8_t table9_54_emit_[43];
400
+ static const uint8_t table9_54_ops_[32];
401
+ static const uint8_t table9_55_emit_[28];
402
+ static const uint8_t table9_56_emit_[43];
403
+ static const uint8_t table9_56_ops_[32];
404
+ static const uint8_t table9_57_emit_[28];
405
+ static const uint8_t table9_58_emit_[43];
406
+ static const uint8_t table9_58_ops_[32];
407
+ static const uint8_t table9_59_emit_[28];
408
+ static const uint8_t table9_60_emit_[43];
409
+ static const uint8_t table9_60_ops_[32];
410
+ static const uint8_t table9_61_emit_[28];
411
+ static const uint8_t table9_62_emit_[44];
412
+ static const uint8_t table9_62_ops_[32];
413
+ static const uint8_t table9_63_emit_[28];
414
+ static const uint8_t table9_64_emit_[44];
415
+ static const uint8_t table9_65_emit_[27];
416
+ static const uint8_t table9_65_ops_[32];
417
+ static const uint8_t table9_66_emit_[44];
418
+ static const uint8_t table9_67_emit_[27];
419
+ static const uint8_t table9_67_ops_[32];
420
+ static const uint8_t table9_68_emit_[44];
421
+ static const uint8_t table9_69_emit_[27];
422
+ static const uint8_t table9_69_ops_[32];
423
+ static const uint8_t table9_70_emit_[44];
424
+ static const uint8_t table9_71_emit_[27];
425
+ static const uint8_t table9_71_ops_[32];
426
+ static const uint8_t table9_72_emit_[44];
427
+ static const uint8_t table9_73_emit_[27];
428
+ static const uint8_t table9_73_ops_[32];
429
+ static const uint8_t table9_74_emit_[44];
430
+ static const uint8_t table9_75_emit_[27];
431
+ static const uint8_t table9_75_ops_[32];
432
+ static const uint8_t table9_76_emit_[44];
433
+ static const uint8_t table9_77_emit_[27];
434
+ static const uint8_t table9_77_ops_[32];
435
+ static const uint8_t table9_78_emit_[44];
436
+ static const uint8_t table9_79_emit_[27];
437
+ static const uint8_t table9_79_ops_[32];
438
+ static const uint8_t table9_80_emit_[44];
439
+ static const uint8_t table9_81_emit_[27];
440
+ static const uint8_t table9_81_ops_[32];
441
+ static const uint8_t table9_82_emit_[44];
442
+ static const uint8_t table9_83_emit_[27];
443
+ static const uint8_t table9_83_ops_[32];
444
+ static const uint8_t table9_84_emit_[44];
445
+ static const uint8_t table9_85_emit_[27];
446
+ static const uint8_t table9_85_ops_[32];
447
+ static const uint8_t table9_86_emit_[44];
448
+ static const uint8_t table9_87_emit_[27];
449
+ static const uint8_t table9_87_ops_[32];
450
+ static const uint8_t table9_88_emit_[44];
451
+ static const uint8_t table9_89_emit_[27];
452
+ static const uint8_t table9_89_ops_[32];
453
+ static const uint8_t table9_90_emit_[44];
454
+ static const uint8_t table9_91_emit_[28];
455
+ static const uint8_t table9_92_emit_[20];
456
+ static const uint8_t table9_92_ops_[32];
457
+ static const uint8_t table9_93_emit_[20];
458
+ static const uint8_t table9_94_emit_[20];
459
+ static const uint8_t table9_95_emit_[20];
460
+ static const uint8_t table9_96_emit_[20];
461
+ static const uint8_t table9_97_emit_[20];
462
+ static const uint8_t table9_98_emit_[20];
463
+ static const uint8_t table9_99_emit_[20];
464
+ static const uint8_t table9_100_emit_[20];
465
+ static const uint8_t table9_101_emit_[20];
466
+ static const uint8_t table9_102_emit_[20];
467
+ static const uint8_t table9_103_emit_[20];
468
+ static const uint8_t table9_104_emit_[20];
469
+ static const uint8_t table9_105_emit_[20];
470
+ static const uint8_t table9_106_emit_[20];
471
+ static const uint8_t table9_107_emit_[20];
472
+ static const uint8_t table9_108_emit_[20];
473
+ static const uint8_t table9_109_emit_[20];
474
+ static const uint8_t table9_110_emit_[20];
475
+ static const uint8_t table9_111_emit_[20];
476
+ static const uint8_t table9_112_emit_[20];
477
+ static const uint8_t table9_113_emit_[20];
478
+ static const uint8_t table9_114_emit_[20];
479
+ static const uint8_t table9_115_emit_[20];
480
+ static const uint8_t table9_116_emit_[20];
481
+ static const uint8_t table9_117_emit_[20];
482
+ static const uint8_t table9_118_emit_[20];
483
+ static const uint8_t table9_119_emit_[20];
484
+ static const uint8_t table9_120_emit_[20];
485
+ static const uint8_t table9_121_emit_[20];
486
+ static const uint8_t table9_122_emit_[20];
487
+ static const uint8_t table9_123_emit_[20];
488
+ static const uint8_t table9_124_emit_[2];
489
+ static const uint8_t table9_124_ops_[32];
490
+ static const uint8_t table9_125_emit_[2];
491
+ static const uint8_t table9_126_emit_[2];
492
+ static const uint8_t table9_127_emit_[10];
493
+ static const uint8_t table9_127_ops_[32];
494
+ static const uint8_t* const table9_emit_[128];
495
+ static const uint8_t* const table9_ops_[128];
496
+ static const uint16_t table10_0_inner_[9];
497
+ static const uint8_t table10_0_outer_[64];
498
+ static const uint16_t table10_1_inner_[15];
499
+ static const uint8_t table10_1_outer_[64];
500
+ static const uint16_t table10_2_inner_[19];
501
+ static const uint8_t table10_2_outer_[64];
502
+ static const uint8_t table10_3_emit_[68];
503
+ static const uint16_t table10_3_inner_[36];
504
+ static const uint8_t table10_3_outer_[64];
505
+ static const uint16_t table10_4_inner_[9];
506
+ static const uint8_t table10_7_emit_[68];
507
+ static const uint16_t table10_8_inner_[9];
508
+ static const uint8_t table10_11_emit_[68];
509
+ static const uint16_t table10_12_inner_[9];
510
+ static const uint8_t table10_15_emit_[68];
511
+ static const uint16_t table10_16_inner_[9];
512
+ static const uint8_t table10_19_emit_[68];
513
+ static const uint16_t table10_20_inner_[9];
514
+ static const uint8_t table10_23_emit_[68];
515
+ static const uint16_t table10_24_inner_[9];
516
+ static const uint8_t table10_27_emit_[68];
517
+ static const uint16_t table10_28_inner_[9];
518
+ static const uint8_t table10_31_emit_[68];
519
+ static const uint16_t table10_33_inner_[15];
520
+ static const uint8_t table10_35_emit_[68];
521
+ static const uint16_t table10_37_inner_[15];
522
+ static const uint8_t table10_39_emit_[68];
523
+ static const uint16_t table10_40_inner_[23];
524
+ static const uint8_t table10_40_outer_[64];
525
+ static const uint8_t table10_41_emit_[92];
526
+ static const uint16_t table10_41_inner_[48];
527
+ static const uint8_t table10_41_outer_[64];
528
+ static const uint16_t table10_42_inner_[23];
529
+ static const uint8_t table10_43_emit_[92];
530
+ static const uint16_t table10_44_inner_[23];
531
+ static const uint8_t table10_45_emit_[92];
532
+ static const uint16_t table10_46_inner_[23];
533
+ static const uint8_t table10_47_emit_[92];
534
+ static const uint16_t table10_48_inner_[23];
535
+ static const uint8_t table10_49_emit_[92];
536
+ static const uint16_t table10_50_inner_[23];
537
+ static const uint8_t table10_51_emit_[92];
538
+ static const uint16_t table10_52_inner_[23];
539
+ static const uint8_t table10_53_emit_[92];
540
+ static const uint16_t table10_54_inner_[23];
541
+ static const uint8_t table10_55_emit_[92];
542
+ static const uint16_t table10_56_inner_[23];
543
+ static const uint8_t table10_57_emit_[92];
544
+ static const uint16_t table10_58_inner_[23];
545
+ static const uint8_t table10_59_emit_[92];
546
+ static const uint16_t table10_60_inner_[23];
547
+ static const uint8_t table10_61_emit_[92];
548
+ static const uint16_t table10_62_inner_[23];
549
+ static const uint8_t table10_63_emit_[92];
550
+ static const uint8_t table10_65_emit_[91];
551
+ static const uint16_t table10_65_inner_[48];
552
+ static const uint8_t table10_67_emit_[91];
553
+ static const uint16_t table10_67_inner_[48];
554
+ static const uint8_t table10_69_emit_[91];
555
+ static const uint16_t table10_69_inner_[48];
556
+ static const uint8_t table10_71_emit_[91];
557
+ static const uint16_t table10_71_inner_[48];
558
+ static const uint8_t table10_73_emit_[91];
559
+ static const uint16_t table10_73_inner_[48];
560
+ static const uint8_t table10_75_emit_[91];
561
+ static const uint16_t table10_75_inner_[48];
562
+ static const uint8_t table10_77_emit_[91];
563
+ static const uint16_t table10_77_inner_[48];
564
+ static const uint8_t table10_79_emit_[91];
565
+ static const uint16_t table10_79_inner_[48];
566
+ static const uint8_t table10_81_emit_[91];
567
+ static const uint16_t table10_81_inner_[48];
568
+ static const uint8_t table10_83_emit_[91];
569
+ static const uint16_t table10_83_inner_[48];
570
+ static const uint8_t table10_85_emit_[91];
571
+ static const uint16_t table10_85_inner_[48];
572
+ static const uint8_t table10_87_emit_[91];
573
+ static const uint16_t table10_87_inner_[48];
574
+ static const uint8_t table10_89_emit_[91];
575
+ static const uint16_t table10_89_inner_[48];
576
+ static const uint8_t table10_91_emit_[91];
577
+ static const uint16_t table10_91_inner_[48];
578
+ static const uint8_t table10_92_emit_[72];
579
+ static const uint16_t table10_92_inner_[38];
580
+ static const uint8_t table10_93_emit_[72];
581
+ static const uint8_t table10_94_emit_[72];
582
+ static const uint8_t table10_95_emit_[72];
583
+ static const uint8_t table10_96_emit_[72];
584
+ static const uint8_t table10_97_emit_[72];
585
+ static const uint8_t table10_98_emit_[72];
586
+ static const uint8_t table10_99_emit_[72];
587
+ static const uint8_t table10_100_emit_[72];
588
+ static const uint8_t table10_101_emit_[72];
589
+ static const uint8_t table10_102_emit_[72];
590
+ static const uint8_t table10_103_emit_[72];
591
+ static const uint8_t table10_104_emit_[72];
592
+ static const uint8_t table10_105_emit_[72];
593
+ static const uint8_t table10_106_emit_[72];
594
+ static const uint8_t table10_107_emit_[72];
595
+ static const uint8_t table10_108_emit_[72];
596
+ static const uint8_t table10_109_emit_[72];
597
+ static const uint8_t table10_110_emit_[72];
598
+ static const uint8_t table10_111_emit_[72];
599
+ static const uint8_t table10_112_emit_[72];
600
+ static const uint8_t table10_113_emit_[72];
601
+ static const uint8_t table10_114_emit_[72];
602
+ static const uint8_t table10_115_emit_[72];
603
+ static const uint8_t table10_116_emit_[72];
604
+ static const uint8_t table10_117_emit_[72];
605
+ static const uint8_t table10_118_emit_[72];
606
+ static const uint8_t table10_119_emit_[72];
607
+ static const uint8_t table10_120_emit_[72];
608
+ static const uint8_t table10_121_emit_[72];
609
+ static const uint8_t table10_122_emit_[72];
610
+ static const uint8_t table10_123_emit_[72];
611
+ static const uint8_t table10_124_emit_[40];
612
+ static const uint8_t table10_125_emit_[40];
613
+ static const uint8_t table10_126_emit_[40];
614
+ static const uint8_t table10_127_emit_[16];
615
+ static const uint16_t table10_127_inner_[18];
616
+ static const uint8_t table10_127_outer_[64];
617
+ static const uint8_t* const table10_emit_[128];
618
+ static const uint16_t* const table10_inner_[128];
619
+ static const uint8_t* const table10_outer_[128];
620
+ static const uint8_t table11_0_emit_[7];
621
+ static const uint16_t table11_0_inner_[5];
622
+ static const uint8_t table11_1_emit_[8];
623
+ static const uint16_t table11_1_inner_[5];
624
+ static const uint8_t table11_2_emit_[12];
625
+ static const uint16_t table11_2_inner_[7];
626
+ static const uint8_t table11_2_outer_[64];
627
+ static const uint8_t table11_3_emit_[16];
628
+ static const uint8_t table11_4_emit_[16];
629
+ static const uint8_t table11_5_emit_[20];
630
+ static const uint16_t table11_5_inner_[11];
631
+ static const uint8_t table11_5_outer_[64];
632
+ static const uint8_t table11_6_emit_[32];
633
+ static const uint16_t table11_6_inner_[17];
634
+ static const uint8_t table11_6_outer_[64];
635
+ static const uint8_t table11_7_emit_[36];
636
+ static const uint16_t table11_7_inner_[20];
637
+ static const uint8_t table11_7_outer_[64];
638
+ static const uint8_t table11_8_emit_[7];
639
+ static const uint16_t table11_8_inner_[5];
640
+ static const uint8_t table11_9_emit_[8];
641
+ static const uint8_t table11_10_emit_[12];
642
+ static const uint8_t table11_11_emit_[16];
643
+ static const uint8_t table11_12_emit_[16];
644
+ static const uint8_t table11_13_emit_[20];
645
+ static const uint8_t table11_14_emit_[32];
646
+ static const uint8_t table11_15_emit_[36];
647
+ static const uint8_t table11_16_emit_[7];
648
+ static const uint16_t table11_16_inner_[5];
649
+ static const uint8_t table11_17_emit_[8];
650
+ static const uint8_t table11_18_emit_[12];
651
+ static const uint8_t table11_19_emit_[16];
652
+ static const uint8_t table11_20_emit_[16];
653
+ static const uint8_t table11_21_emit_[20];
654
+ static const uint8_t table11_22_emit_[32];
655
+ static const uint8_t table11_23_emit_[36];
656
+ static const uint8_t table11_24_emit_[8];
657
+ static const uint8_t table11_25_emit_[8];
658
+ static const uint8_t table11_26_emit_[12];
659
+ static const uint8_t table11_27_emit_[16];
660
+ static const uint8_t table11_28_emit_[16];
661
+ static const uint8_t table11_29_emit_[20];
662
+ static const uint8_t table11_30_emit_[32];
663
+ static const uint8_t table11_31_emit_[36];
664
+ static const uint8_t table11_32_emit_[8];
665
+ static const uint8_t table11_33_emit_[7];
666
+ static const uint8_t table11_34_emit_[12];
667
+ static const uint8_t table11_35_emit_[16];
668
+ static const uint8_t table11_36_emit_[16];
669
+ static const uint8_t table11_37_emit_[20];
670
+ static const uint8_t table11_38_emit_[32];
671
+ static const uint8_t table11_39_emit_[36];
672
+ static const uint8_t table11_40_emit_[8];
673
+ static const uint8_t table11_41_emit_[7];
674
+ static const uint8_t table11_42_emit_[12];
675
+ static const uint8_t table11_43_emit_[16];
676
+ static const uint8_t table11_44_emit_[16];
677
+ static const uint8_t table11_45_emit_[20];
678
+ static const uint8_t table11_46_emit_[32];
679
+ static const uint8_t table11_47_emit_[36];
680
+ static const uint8_t table11_48_emit_[8];
681
+ static const uint8_t table11_49_emit_[7];
682
+ static const uint8_t table11_50_emit_[12];
683
+ static const uint8_t table11_51_emit_[16];
684
+ static const uint8_t table11_52_emit_[16];
685
+ static const uint8_t table11_53_emit_[20];
686
+ static const uint8_t table11_54_emit_[32];
687
+ static const uint8_t table11_55_emit_[36];
688
+ static const uint8_t table11_56_emit_[8];
689
+ static const uint8_t table11_57_emit_[8];
690
+ static const uint8_t table11_58_emit_[12];
691
+ static const uint8_t table11_59_emit_[16];
692
+ static const uint8_t table11_60_emit_[16];
693
+ static const uint8_t table11_61_emit_[20];
694
+ static const uint8_t table11_62_emit_[32];
695
+ static const uint8_t table11_63_emit_[36];
696
+ static const uint8_t table11_64_emit_[8];
697
+ static const uint8_t table11_65_emit_[8];
698
+ static const uint8_t table11_66_emit_[11];
699
+ static const uint16_t table11_66_inner_[7];
700
+ static const uint8_t table11_67_emit_[16];
701
+ static const uint8_t table11_68_emit_[16];
702
+ static const uint8_t table11_69_emit_[20];
703
+ static const uint8_t table11_70_emit_[32];
704
+ static const uint8_t table11_71_emit_[36];
705
+ static const uint8_t table11_72_emit_[8];
706
+ static const uint8_t table11_73_emit_[8];
707
+ static const uint8_t table11_74_emit_[11];
708
+ static const uint16_t table11_74_inner_[7];
709
+ static const uint8_t table11_75_emit_[16];
710
+ static const uint8_t table11_76_emit_[16];
711
+ static const uint8_t table11_77_emit_[20];
712
+ static const uint8_t table11_78_emit_[32];
713
+ static const uint8_t table11_79_emit_[36];
714
+ static const uint8_t table11_80_emit_[16];
715
+ static const uint8_t table11_81_emit_[27];
716
+ static const uint16_t table11_81_inner_[15];
717
+ static const uint8_t table11_82_emit_[36];
718
+ static const uint8_t table11_83_emit_[68];
719
+ static const uint8_t table11_84_emit_[16];
720
+ static const uint8_t table11_85_emit_[27];
721
+ static const uint16_t table11_85_inner_[15];
722
+ static const uint8_t table11_86_emit_[36];
723
+ static const uint8_t table11_87_emit_[68];
724
+ static const uint8_t table11_88_emit_[16];
725
+ static const uint8_t table11_89_emit_[27];
726
+ static const uint16_t table11_89_inner_[15];
727
+ static const uint8_t table11_90_emit_[36];
728
+ static const uint8_t table11_91_emit_[68];
729
+ static const uint8_t table11_92_emit_[16];
730
+ static const uint8_t table11_93_emit_[27];
731
+ static const uint16_t table11_93_inner_[15];
732
+ static const uint8_t table11_94_emit_[36];
733
+ static const uint8_t table11_95_emit_[68];
734
+ static const uint8_t table11_96_emit_[16];
735
+ static const uint8_t table11_97_emit_[27];
736
+ static const uint16_t table11_97_inner_[15];
737
+ static const uint8_t table11_98_emit_[36];
738
+ static const uint8_t table11_99_emit_[68];
739
+ static const uint8_t table11_100_emit_[16];
740
+ static const uint8_t table11_101_emit_[27];
741
+ static const uint16_t table11_101_inner_[15];
742
+ static const uint8_t table11_102_emit_[36];
743
+ static const uint8_t table11_103_emit_[68];
744
+ static const uint8_t table11_104_emit_[16];
745
+ static const uint8_t table11_105_emit_[27];
746
+ static const uint16_t table11_105_inner_[15];
747
+ static const uint8_t table11_106_emit_[36];
748
+ static const uint8_t table11_107_emit_[68];
749
+ static const uint8_t table11_108_emit_[16];
750
+ static const uint8_t table11_109_emit_[27];
751
+ static const uint16_t table11_109_inner_[15];
752
+ static const uint8_t table11_110_emit_[36];
753
+ static const uint8_t table11_111_emit_[68];
754
+ static const uint8_t table11_112_emit_[16];
755
+ static const uint8_t table11_113_emit_[27];
756
+ static const uint16_t table11_113_inner_[15];
757
+ static const uint8_t table11_114_emit_[36];
758
+ static const uint8_t table11_115_emit_[68];
759
+ static const uint8_t table11_116_emit_[16];
760
+ static const uint8_t table11_117_emit_[27];
761
+ static const uint16_t table11_117_inner_[15];
762
+ static const uint8_t table11_118_emit_[36];
763
+ static const uint8_t table11_119_emit_[68];
764
+ static const uint8_t table11_120_emit_[16];
765
+ static const uint8_t table11_121_emit_[27];
766
+ static const uint16_t table11_121_inner_[15];
767
+ static const uint8_t table11_122_emit_[36];
768
+ static const uint8_t table11_123_emit_[68];
769
+ static const uint8_t table11_124_emit_[16];
770
+ static const uint8_t table11_125_emit_[28];
771
+ static const uint8_t table11_126_emit_[36];
772
+ static const uint8_t table11_127_emit_[68];
773
+ static const uint8_t table11_128_emit_[16];
774
+ static const uint8_t table11_129_emit_[28];
775
+ static const uint8_t table11_130_emit_[35];
776
+ static const uint16_t table11_130_inner_[19];
777
+ static const uint8_t table11_131_emit_[68];
778
+ static const uint8_t table11_132_emit_[16];
779
+ static const uint8_t table11_133_emit_[28];
780
+ static const uint8_t table11_134_emit_[35];
781
+ static const uint16_t table11_134_inner_[19];
782
+ static const uint8_t table11_135_emit_[68];
783
+ static const uint8_t table11_136_emit_[16];
784
+ static const uint8_t table11_137_emit_[28];
785
+ static const uint8_t table11_138_emit_[35];
786
+ static const uint16_t table11_138_inner_[19];
787
+ static const uint8_t table11_139_emit_[68];
788
+ static const uint8_t table11_140_emit_[16];
789
+ static const uint8_t table11_141_emit_[28];
790
+ static const uint8_t table11_142_emit_[35];
791
+ static const uint16_t table11_142_inner_[19];
792
+ static const uint8_t table11_143_emit_[68];
793
+ static const uint8_t table11_144_emit_[16];
794
+ static const uint8_t table11_145_emit_[28];
795
+ static const uint8_t table11_146_emit_[35];
796
+ static const uint16_t table11_146_inner_[19];
797
+ static const uint8_t table11_147_emit_[68];
798
+ static const uint8_t table11_148_emit_[16];
799
+ static const uint8_t table11_149_emit_[28];
800
+ static const uint8_t table11_150_emit_[35];
801
+ static const uint16_t table11_150_inner_[19];
802
+ static const uint8_t table11_151_emit_[68];
803
+ static const uint8_t table11_152_emit_[16];
804
+ static const uint8_t table11_153_emit_[28];
805
+ static const uint8_t table11_154_emit_[35];
806
+ static const uint16_t table11_154_inner_[19];
807
+ static const uint8_t table11_155_emit_[68];
808
+ static const uint8_t table11_156_emit_[16];
809
+ static const uint8_t table11_157_emit_[28];
810
+ static const uint8_t table11_158_emit_[35];
811
+ static const uint16_t table11_158_inner_[19];
812
+ static const uint8_t table11_159_emit_[68];
813
+ static const uint8_t table11_160_emit_[16];
814
+ static const uint8_t table11_161_emit_[28];
815
+ static const uint8_t table11_162_emit_[35];
816
+ static const uint16_t table11_162_inner_[19];
817
+ static const uint8_t table11_163_emit_[68];
818
+ static const uint8_t table11_164_emit_[16];
819
+ static const uint8_t table11_165_emit_[28];
820
+ static const uint8_t table11_166_emit_[35];
821
+ static const uint16_t table11_166_inner_[19];
822
+ static const uint8_t table11_167_emit_[68];
823
+ static const uint8_t table11_168_emit_[16];
824
+ static const uint8_t table11_169_emit_[28];
825
+ static const uint8_t table11_170_emit_[35];
826
+ static const uint16_t table11_170_inner_[19];
827
+ static const uint8_t table11_171_emit_[68];
828
+ static const uint8_t table11_172_emit_[16];
829
+ static const uint8_t table11_173_emit_[28];
830
+ static const uint8_t table11_174_emit_[35];
831
+ static const uint16_t table11_174_inner_[19];
832
+ static const uint8_t table11_175_emit_[68];
833
+ static const uint8_t table11_176_emit_[16];
834
+ static const uint8_t table11_177_emit_[28];
835
+ static const uint8_t table11_178_emit_[35];
836
+ static const uint16_t table11_178_inner_[19];
837
+ static const uint8_t table11_179_emit_[68];
838
+ static const uint8_t table11_180_emit_[16];
839
+ static const uint8_t table11_181_emit_[28];
840
+ static const uint8_t table11_182_emit_[35];
841
+ static const uint16_t table11_182_inner_[19];
842
+ static const uint8_t table11_183_emit_[68];
843
+ static const uint8_t table11_184_emit_[44];
844
+ static const uint8_t table11_185_emit_[91];
845
+ static const uint16_t table11_185_inner_[48];
846
+ static const uint8_t table11_186_emit_[44];
847
+ static const uint8_t table11_187_emit_[91];
848
+ static const uint16_t table11_187_inner_[48];
849
+ static const uint8_t table11_188_emit_[44];
850
+ static const uint8_t table11_189_emit_[91];
851
+ static const uint16_t table11_189_inner_[48];
852
+ static const uint8_t table11_190_emit_[44];
853
+ static const uint8_t table11_191_emit_[91];
854
+ static const uint16_t table11_191_inner_[48];
855
+ static const uint8_t table11_192_emit_[44];
856
+ static const uint8_t table11_193_emit_[91];
857
+ static const uint16_t table11_193_inner_[48];
858
+ static const uint8_t table11_194_emit_[44];
859
+ static const uint8_t table11_195_emit_[91];
860
+ static const uint16_t table11_195_inner_[48];
861
+ static const uint8_t table11_196_emit_[44];
862
+ static const uint8_t table11_197_emit_[91];
863
+ static const uint16_t table11_197_inner_[48];
864
+ static const uint8_t table11_198_emit_[44];
865
+ static const uint8_t table11_199_emit_[91];
866
+ static const uint16_t table11_199_inner_[48];
867
+ static const uint8_t table11_200_emit_[44];
868
+ static const uint8_t table11_201_emit_[91];
869
+ static const uint16_t table11_201_inner_[48];
870
+ static const uint8_t table11_202_emit_[44];
871
+ static const uint8_t table11_203_emit_[91];
872
+ static const uint16_t table11_203_inner_[48];
873
+ static const uint8_t table11_204_emit_[44];
874
+ static const uint8_t table11_205_emit_[91];
875
+ static const uint16_t table11_205_inner_[48];
876
+ static const uint8_t table11_206_emit_[44];
877
+ static const uint8_t table11_207_emit_[91];
878
+ static const uint16_t table11_207_inner_[48];
879
+ static const uint8_t table11_208_emit_[44];
880
+ static const uint8_t table11_209_emit_[91];
881
+ static const uint16_t table11_209_inner_[48];
882
+ static const uint8_t table11_210_emit_[44];
883
+ static const uint8_t table11_211_emit_[91];
884
+ static const uint16_t table11_211_inner_[48];
885
+ static const uint8_t table11_212_emit_[44];
886
+ static const uint8_t table11_213_emit_[91];
887
+ static const uint16_t table11_213_inner_[48];
888
+ static const uint8_t table11_214_emit_[44];
889
+ static const uint8_t table11_215_emit_[91];
890
+ static const uint16_t table11_215_inner_[48];
891
+ static const uint8_t table11_216_emit_[44];
892
+ static const uint8_t table11_217_emit_[91];
893
+ static const uint16_t table11_217_inner_[48];
894
+ static const uint8_t table11_218_emit_[44];
895
+ static const uint8_t table11_219_emit_[91];
896
+ static const uint16_t table11_219_inner_[48];
897
+ static const uint8_t table11_220_emit_[44];
898
+ static const uint8_t table11_221_emit_[91];
899
+ static const uint16_t table11_221_inner_[48];
900
+ static const uint8_t table11_222_emit_[44];
901
+ static const uint8_t table11_223_emit_[91];
902
+ static const uint16_t table11_223_inner_[48];
903
+ static const uint8_t table11_224_emit_[44];
904
+ static const uint8_t table11_225_emit_[91];
905
+ static const uint16_t table11_225_inner_[48];
906
+ static const uint8_t table11_226_emit_[44];
907
+ static const uint8_t table11_227_emit_[91];
908
+ static const uint16_t table11_227_inner_[48];
909
+ static const uint8_t table11_228_emit_[44];
910
+ static const uint8_t table11_229_emit_[91];
911
+ static const uint16_t table11_229_inner_[48];
912
+ static const uint8_t table11_230_emit_[44];
913
+ static const uint8_t table11_231_emit_[91];
914
+ static const uint16_t table11_231_inner_[48];
915
+ static const uint8_t table11_232_emit_[44];
916
+ static const uint8_t table11_233_emit_[91];
917
+ static const uint16_t table11_233_inner_[48];
918
+ static const uint8_t table11_234_emit_[44];
919
+ static const uint8_t table11_235_emit_[91];
920
+ static const uint16_t table11_235_inner_[48];
921
+ static const uint8_t table11_236_emit_[44];
922
+ static const uint8_t table11_237_emit_[91];
923
+ static const uint16_t table11_237_inner_[48];
924
+ static const uint8_t table11_238_emit_[44];
925
+ static const uint8_t table11_239_emit_[91];
926
+ static const uint16_t table11_239_inner_[48];
927
+ static const uint8_t table11_240_emit_[44];
928
+ static const uint8_t table11_241_emit_[91];
929
+ static const uint16_t table11_241_inner_[48];
930
+ static const uint8_t table11_242_emit_[44];
931
+ static const uint8_t table11_243_emit_[91];
932
+ static const uint16_t table11_243_inner_[48];
933
+ static const uint8_t table11_244_emit_[44];
934
+ static const uint8_t table11_245_emit_[91];
935
+ static const uint16_t table11_245_inner_[48];
936
+ static const uint8_t table11_246_emit_[44];
937
+ static const uint8_t table11_247_emit_[92];
938
+ static const uint8_t table11_248_emit_[72];
939
+ static const uint8_t table11_249_emit_[72];
940
+ static const uint8_t table11_250_emit_[72];
941
+ static const uint8_t table11_251_emit_[72];
942
+ static const uint8_t table11_252_emit_[72];
943
+ static const uint8_t table11_253_emit_[72];
944
+ static const uint8_t table11_254_emit_[4];
945
+ static const uint8_t table11_255_emit_[14];
946
+ static const uint8_t table11_255_outer_[64];
947
+ static const uint8_t* const table11_emit_[256];
948
+ static const uint16_t* const table11_inner_[256];
949
+ static const uint8_t* const table11_outer_[256];
950
+ static const uint8_t table1_0_emit_[55];
951
+ static const uint16_t table1_0_inner_[22];
952
+ static const uint8_t table1_0_outer_[64];
953
+ static const uint8_t table1_1_emit_[58];
954
+ static const uint16_t table1_1_inner_[22];
955
+ static const uint8_t table1_2_emit_[58];
956
+ static const uint8_t table1_3_emit_[58];
957
+ static const uint8_t table1_4_emit_[58];
958
+ static const uint8_t table1_5_emit_[8];
959
+ static const uint16_t table1_5_inner_[4];
960
+ static const uint8_t table1_5_outer_[64];
961
+ static const uint8_t table1_6_emit_[8];
962
+ static const uint8_t table1_7_emit_[8];
963
+ static const uint8_t table1_8_emit_[8];
964
+ static const uint8_t table1_9_emit_[8];
965
+ static const uint8_t table1_10_emit_[8];
966
+ static const uint8_t table1_11_emit_[12];
967
+ static const uint16_t table1_11_inner_[6];
968
+ static const uint8_t table1_11_outer_[64];
969
+ static const uint8_t table1_12_emit_[16];
970
+ static const uint16_t table1_12_inner_[8];
971
+ static const uint8_t table1_12_outer_[64];
972
+ static const uint8_t table1_13_emit_[16];
973
+ static const uint8_t table1_14_emit_[16];
974
+ static const uint8_t table1_15_emit_[30];
975
+ static const uint16_t table1_15_inner_[16];
976
+ static const uint8_t table1_15_outer_[64];
977
+ static const uint8_t table1_16_emit_[57];
978
+ static const uint16_t table1_16_inner_[22];
979
+ static const uint8_t table1_17_emit_[58];
980
+ static const uint16_t table1_17_inner_[22];
981
+ static const uint8_t table1_18_emit_[58];
982
+ static const uint8_t table1_19_emit_[58];
983
+ static const uint8_t table1_20_emit_[58];
984
+ static const uint8_t table1_21_emit_[8];
985
+ static const uint8_t table1_22_emit_[8];
986
+ static const uint8_t table1_23_emit_[8];
987
+ static const uint8_t table1_24_emit_[8];
988
+ static const uint8_t table1_25_emit_[8];
989
+ static const uint8_t table1_26_emit_[8];
990
+ static const uint8_t table1_27_emit_[12];
991
+ static const uint8_t table1_28_emit_[16];
992
+ static const uint8_t table1_29_emit_[16];
993
+ static const uint8_t table1_30_emit_[16];
994
+ static const uint8_t table1_31_emit_[30];
995
+ static const uint8_t table1_32_emit_[58];
996
+ static const uint16_t table1_32_inner_[22];
997
+ static const uint8_t table1_33_emit_[55];
998
+ static const uint16_t table1_33_inner_[22];
999
+ static const uint8_t table1_34_emit_[58];
1000
+ static const uint8_t table1_35_emit_[58];
1001
+ static const uint8_t table1_36_emit_[58];
1002
+ static const uint8_t table1_37_emit_[8];
1003
+ static const uint8_t table1_38_emit_[8];
1004
+ static const uint8_t table1_39_emit_[8];
1005
+ static const uint8_t table1_40_emit_[8];
1006
+ static const uint8_t table1_41_emit_[8];
1007
+ static const uint8_t table1_42_emit_[8];
1008
+ static const uint8_t table1_43_emit_[12];
1009
+ static const uint8_t table1_44_emit_[16];
1010
+ static const uint8_t table1_45_emit_[16];
1011
+ static const uint8_t table1_46_emit_[16];
1012
+ static const uint8_t table1_47_emit_[30];
1013
+ static const uint8_t table1_48_emit_[58];
1014
+ static const uint16_t table1_48_inner_[22];
1015
+ static const uint8_t table1_49_emit_[57];
1016
+ static const uint16_t table1_49_inner_[22];
1017
+ static const uint8_t table1_50_emit_[58];
1018
+ static const uint8_t table1_51_emit_[58];
1019
+ static const uint8_t table1_52_emit_[58];
1020
+ static const uint8_t table1_53_emit_[8];
1021
+ static const uint8_t table1_54_emit_[8];
1022
+ static const uint8_t table1_55_emit_[8];
1023
+ static const uint8_t table1_56_emit_[8];
1024
+ static const uint8_t table1_57_emit_[8];
1025
+ static const uint8_t table1_58_emit_[8];
1026
+ static const uint8_t table1_59_emit_[12];
1027
+ static const uint8_t table1_60_emit_[16];
1028
+ static const uint8_t table1_61_emit_[16];
1029
+ static const uint8_t table1_62_emit_[16];
1030
+ static const uint8_t table1_63_emit_[30];
1031
+ static const uint8_t table1_64_emit_[58];
1032
+ static const uint16_t table1_64_inner_[22];
1033
+ static const uint8_t table1_65_emit_[58];
1034
+ static const uint8_t table1_66_emit_[55];
1035
+ static const uint16_t table1_66_inner_[22];
1036
+ static const uint8_t table1_67_emit_[58];
1037
+ static const uint8_t table1_68_emit_[58];
1038
+ static const uint8_t table1_69_emit_[8];
1039
+ static const uint8_t table1_70_emit_[8];
1040
+ static const uint8_t table1_71_emit_[8];
1041
+ static const uint8_t table1_72_emit_[8];
1042
+ static const uint8_t table1_73_emit_[8];
1043
+ static const uint8_t table1_74_emit_[8];
1044
+ static const uint8_t table1_75_emit_[12];
1045
+ static const uint8_t table1_76_emit_[16];
1046
+ static const uint8_t table1_77_emit_[16];
1047
+ static const uint8_t table1_78_emit_[16];
1048
+ static const uint8_t table1_79_emit_[30];
1049
+ static const uint8_t table1_80_emit_[58];
1050
+ static const uint16_t table1_80_inner_[22];
1051
+ static const uint8_t table1_81_emit_[58];
1052
+ static const uint8_t table1_82_emit_[57];
1053
+ static const uint16_t table1_82_inner_[22];
1054
+ static const uint8_t table1_83_emit_[58];
1055
+ static const uint8_t table1_84_emit_[58];
1056
+ static const uint8_t table1_85_emit_[8];
1057
+ static const uint8_t table1_86_emit_[8];
1058
+ static const uint8_t table1_87_emit_[8];
1059
+ static const uint8_t table1_88_emit_[8];
1060
+ static const uint8_t table1_89_emit_[8];
1061
+ static const uint8_t table1_90_emit_[8];
1062
+ static const uint8_t table1_91_emit_[12];
1063
+ static const uint8_t table1_92_emit_[16];
1064
+ static const uint8_t table1_93_emit_[16];
1065
+ static const uint8_t table1_94_emit_[16];
1066
+ static const uint8_t table1_95_emit_[30];
1067
+ static const uint8_t table1_96_emit_[58];
1068
+ static const uint16_t table1_96_inner_[22];
1069
+ static const uint8_t table1_97_emit_[58];
1070
+ static const uint8_t table1_98_emit_[58];
1071
+ static const uint8_t table1_99_emit_[55];
1072
+ static const uint16_t table1_99_inner_[22];
1073
+ static const uint8_t table1_100_emit_[58];
1074
+ static const uint8_t table1_101_emit_[8];
1075
+ static const uint8_t table1_102_emit_[8];
1076
+ static const uint8_t table1_103_emit_[8];
1077
+ static const uint8_t table1_104_emit_[8];
1078
+ static const uint8_t table1_105_emit_[8];
1079
+ static const uint8_t table1_106_emit_[8];
1080
+ static const uint8_t table1_107_emit_[12];
1081
+ static const uint8_t table1_108_emit_[16];
1082
+ static const uint8_t table1_109_emit_[16];
1083
+ static const uint8_t table1_110_emit_[16];
1084
+ static const uint8_t table1_111_emit_[30];
1085
+ static const uint8_t table1_112_emit_[58];
1086
+ static const uint16_t table1_112_inner_[22];
1087
+ static const uint8_t table1_113_emit_[58];
1088
+ static const uint8_t table1_114_emit_[58];
1089
+ static const uint8_t table1_115_emit_[57];
1090
+ static const uint16_t table1_115_inner_[22];
1091
+ static const uint8_t table1_116_emit_[58];
1092
+ static const uint8_t table1_117_emit_[8];
1093
+ static const uint8_t table1_118_emit_[8];
1094
+ static const uint8_t table1_119_emit_[8];
1095
+ static const uint8_t table1_120_emit_[8];
1096
+ static const uint8_t table1_121_emit_[8];
1097
+ static const uint8_t table1_122_emit_[8];
1098
+ static const uint8_t table1_123_emit_[12];
1099
+ static const uint8_t table1_124_emit_[16];
1100
+ static const uint8_t table1_125_emit_[16];
1101
+ static const uint8_t table1_126_emit_[16];
1102
+ static const uint8_t table1_127_emit_[30];
1103
+ static const uint8_t table1_128_emit_[58];
1104
+ static const uint16_t table1_128_inner_[22];
1105
+ static const uint8_t table1_129_emit_[58];
1106
+ static const uint8_t table1_130_emit_[58];
1107
+ static const uint8_t table1_131_emit_[58];
1108
+ static const uint8_t table1_132_emit_[55];
1109
+ static const uint16_t table1_132_inner_[22];
1110
+ static const uint8_t table1_133_emit_[8];
1111
+ static const uint8_t table1_134_emit_[8];
1112
+ static const uint8_t table1_135_emit_[8];
1113
+ static const uint8_t table1_136_emit_[8];
1114
+ static const uint8_t table1_137_emit_[8];
1115
+ static const uint8_t table1_138_emit_[8];
1116
+ static const uint8_t table1_139_emit_[12];
1117
+ static const uint8_t table1_140_emit_[16];
1118
+ static const uint8_t table1_141_emit_[16];
1119
+ static const uint8_t table1_142_emit_[16];
1120
+ static const uint8_t table1_143_emit_[30];
1121
+ static const uint8_t table1_144_emit_[59];
1122
+ static const uint16_t table1_144_inner_[22];
1123
+ static const uint8_t table1_145_emit_[59];
1124
+ static const uint8_t table1_146_emit_[59];
1125
+ static const uint8_t table1_147_emit_[59];
1126
+ static const uint8_t table1_148_emit_[59];
1127
+ static const uint8_t table1_149_emit_[8];
1128
+ static const uint8_t table1_150_emit_[8];
1129
+ static const uint8_t table1_151_emit_[8];
1130
+ static const uint8_t table1_152_emit_[8];
1131
+ static const uint8_t table1_153_emit_[8];
1132
+ static const uint8_t table1_154_emit_[8];
1133
+ static const uint8_t table1_155_emit_[12];
1134
+ static const uint8_t table1_156_emit_[16];
1135
+ static const uint8_t table1_157_emit_[16];
1136
+ static const uint8_t table1_158_emit_[16];
1137
+ static const uint8_t table1_159_emit_[30];
1138
+ static const uint8_t table1_160_emit_[8];
1139
+ static const uint8_t table1_161_emit_[8];
1140
+ static const uint8_t table1_162_emit_[11];
1141
+ static const uint16_t table1_162_inner_[6];
1142
+ static const uint8_t table1_163_emit_[16];
1143
+ static const uint8_t table1_164_emit_[16];
1144
+ static const uint8_t table1_165_emit_[20];
1145
+ static const uint16_t table1_165_inner_[10];
1146
+ static const uint8_t table1_165_outer_[64];
1147
+ static const uint8_t table1_166_emit_[32];
1148
+ static const uint16_t table1_166_inner_[16];
1149
+ static const uint8_t table1_166_outer_[64];
1150
+ static const uint8_t table1_167_emit_[36];
1151
+ static const uint16_t table1_167_inner_[19];
1152
+ static const uint8_t table1_167_outer_[64];
1153
+ static const uint8_t table1_168_emit_[8];
1154
+ static const uint8_t table1_169_emit_[8];
1155
+ static const uint8_t table1_170_emit_[11];
1156
+ static const uint16_t table1_170_inner_[6];
1157
+ static const uint8_t table1_171_emit_[16];
1158
+ static const uint8_t table1_172_emit_[16];
1159
+ static const uint8_t table1_173_emit_[20];
1160
+ static const uint8_t table1_174_emit_[32];
1161
+ static const uint8_t table1_175_emit_[36];
1162
+ static const uint8_t table1_176_emit_[8];
1163
+ static const uint8_t table1_177_emit_[8];
1164
+ static const uint8_t table1_178_emit_[11];
1165
+ static const uint16_t table1_178_inner_[6];
1166
+ static const uint8_t table1_179_emit_[16];
1167
+ static const uint8_t table1_180_emit_[16];
1168
+ static const uint8_t table1_181_emit_[20];
1169
+ static const uint8_t table1_182_emit_[32];
1170
+ static const uint8_t table1_183_emit_[36];
1171
+ static const uint8_t table1_184_emit_[8];
1172
+ static const uint8_t table1_185_emit_[8];
1173
+ static const uint8_t table1_186_emit_[12];
1174
+ static const uint8_t table1_187_emit_[16];
1175
+ static const uint8_t table1_188_emit_[16];
1176
+ static const uint8_t table1_189_emit_[20];
1177
+ static const uint8_t table1_190_emit_[32];
1178
+ static const uint8_t table1_191_emit_[36];
1179
+ static const uint8_t table1_192_emit_[8];
1180
+ static const uint8_t table1_193_emit_[8];
1181
+ static const uint8_t table1_194_emit_[12];
1182
+ static const uint8_t table1_195_emit_[15];
1183
+ static const uint16_t table1_195_inner_[8];
1184
+ static const uint8_t table1_196_emit_[16];
1185
+ static const uint8_t table1_197_emit_[20];
1186
+ static const uint8_t table1_198_emit_[32];
1187
+ static const uint8_t table1_199_emit_[36];
1188
+ static const uint8_t table1_200_emit_[8];
1189
+ static const uint8_t table1_201_emit_[8];
1190
+ static const uint8_t table1_202_emit_[12];
1191
+ static const uint8_t table1_203_emit_[15];
1192
+ static const uint16_t table1_203_inner_[8];
1193
+ static const uint8_t table1_204_emit_[16];
1194
+ static const uint8_t table1_205_emit_[20];
1195
+ static const uint8_t table1_206_emit_[32];
1196
+ static const uint8_t table1_207_emit_[36];
1197
+ static const uint8_t table1_208_emit_[8];
1198
+ static const uint8_t table1_209_emit_[8];
1199
+ static const uint8_t table1_210_emit_[12];
1200
+ static const uint8_t table1_211_emit_[15];
1201
+ static const uint16_t table1_211_inner_[8];
1202
+ static const uint8_t table1_212_emit_[16];
1203
+ static const uint8_t table1_213_emit_[20];
1204
+ static const uint8_t table1_214_emit_[32];
1205
+ static const uint8_t table1_215_emit_[36];
1206
+ static const uint8_t table1_216_emit_[8];
1207
+ static const uint8_t table1_217_emit_[8];
1208
+ static const uint8_t table1_218_emit_[12];
1209
+ static const uint8_t table1_219_emit_[15];
1210
+ static const uint16_t table1_219_inner_[8];
1211
+ static const uint8_t table1_220_emit_[16];
1212
+ static const uint8_t table1_221_emit_[20];
1213
+ static const uint8_t table1_222_emit_[32];
1214
+ static const uint8_t table1_223_emit_[36];
1215
+ static const uint8_t table1_224_emit_[8];
1216
+ static const uint8_t table1_225_emit_[8];
1217
+ static const uint8_t table1_226_emit_[12];
1218
+ static const uint8_t table1_227_emit_[15];
1219
+ static const uint16_t table1_227_inner_[8];
1220
+ static const uint8_t table1_228_emit_[16];
1221
+ static const uint8_t table1_229_emit_[20];
1222
+ static const uint8_t table1_230_emit_[32];
1223
+ static const uint8_t table1_231_emit_[36];
1224
+ static const uint8_t table1_232_emit_[8];
1225
+ static const uint8_t table1_233_emit_[8];
1226
+ static const uint8_t table1_234_emit_[12];
1227
+ static const uint8_t table1_235_emit_[15];
1228
+ static const uint16_t table1_235_inner_[8];
1229
+ static const uint8_t table1_236_emit_[16];
1230
+ static const uint8_t table1_237_emit_[20];
1231
+ static const uint8_t table1_238_emit_[32];
1232
+ static const uint8_t table1_239_emit_[36];
1233
+ static const uint8_t table1_240_emit_[8];
1234
+ static const uint8_t table1_241_emit_[8];
1235
+ static const uint8_t table1_242_emit_[12];
1236
+ static const uint8_t table1_243_emit_[15];
1237
+ static const uint16_t table1_243_inner_[8];
1238
+ static const uint8_t table1_244_emit_[16];
1239
+ static const uint8_t table1_245_emit_[20];
1240
+ static const uint8_t table1_246_emit_[32];
1241
+ static const uint8_t table1_247_emit_[36];
1242
+ static const uint8_t table1_248_emit_[8];
1243
+ static const uint8_t table1_249_emit_[8];
1244
+ static const uint8_t table1_250_emit_[12];
1245
+ static const uint8_t table1_251_emit_[16];
1246
+ static const uint8_t table1_252_emit_[16];
1247
+ static const uint8_t table1_253_emit_[20];
1248
+ static const uint8_t table1_254_emit_[32];
1249
+ static const uint8_t table1_255_emit_[36];
1250
+ static const uint8_t table1_256_emit_[8];
1251
+ static const uint8_t table1_257_emit_[8];
1252
+ static const uint8_t table1_258_emit_[12];
1253
+ static const uint8_t table1_259_emit_[16];
1254
+ static const uint8_t table1_260_emit_[15];
1255
+ static const uint8_t table1_261_emit_[20];
1256
+ static const uint8_t table1_262_emit_[32];
1257
+ static const uint8_t table1_263_emit_[36];
1258
+ static const uint8_t table1_264_emit_[8];
1259
+ static const uint8_t table1_265_emit_[8];
1260
+ static const uint8_t table1_266_emit_[12];
1261
+ static const uint8_t table1_267_emit_[16];
1262
+ static const uint8_t table1_268_emit_[15];
1263
+ static const uint8_t table1_269_emit_[20];
1264
+ static const uint8_t table1_270_emit_[32];
1265
+ static const uint8_t table1_271_emit_[36];
1266
+ static const uint8_t table1_272_emit_[8];
1267
+ static const uint8_t table1_273_emit_[8];
1268
+ static const uint8_t table1_274_emit_[12];
1269
+ static const uint8_t table1_275_emit_[16];
1270
+ static const uint8_t table1_276_emit_[15];
1271
+ static const uint8_t table1_277_emit_[20];
1272
+ static const uint8_t table1_278_emit_[32];
1273
+ static const uint8_t table1_279_emit_[36];
1274
+ static const uint8_t table1_280_emit_[8];
1275
+ static const uint8_t table1_281_emit_[8];
1276
+ static const uint8_t table1_282_emit_[12];
1277
+ static const uint8_t table1_283_emit_[16];
1278
+ static const uint8_t table1_284_emit_[15];
1279
+ static const uint8_t table1_285_emit_[20];
1280
+ static const uint8_t table1_286_emit_[32];
1281
+ static const uint8_t table1_287_emit_[36];
1282
+ static const uint8_t table1_288_emit_[8];
1283
+ static const uint8_t table1_289_emit_[8];
1284
+ static const uint8_t table1_290_emit_[12];
1285
+ static const uint8_t table1_291_emit_[16];
1286
+ static const uint8_t table1_292_emit_[15];
1287
+ static const uint8_t table1_293_emit_[20];
1288
+ static const uint8_t table1_294_emit_[32];
1289
+ static const uint8_t table1_295_emit_[36];
1290
+ static const uint8_t table1_296_emit_[8];
1291
+ static const uint8_t table1_297_emit_[8];
1292
+ static const uint8_t table1_298_emit_[12];
1293
+ static const uint8_t table1_299_emit_[16];
1294
+ static const uint8_t table1_300_emit_[15];
1295
+ static const uint8_t table1_301_emit_[20];
1296
+ static const uint8_t table1_302_emit_[32];
1297
+ static const uint8_t table1_303_emit_[36];
1298
+ static const uint8_t table1_304_emit_[8];
1299
+ static const uint8_t table1_305_emit_[8];
1300
+ static const uint8_t table1_306_emit_[12];
1301
+ static const uint8_t table1_307_emit_[16];
1302
+ static const uint8_t table1_308_emit_[15];
1303
+ static const uint8_t table1_309_emit_[20];
1304
+ static const uint8_t table1_310_emit_[32];
1305
+ static const uint8_t table1_311_emit_[36];
1306
+ static const uint8_t table1_312_emit_[8];
1307
+ static const uint8_t table1_313_emit_[8];
1308
+ static const uint8_t table1_314_emit_[12];
1309
+ static const uint8_t table1_315_emit_[16];
1310
+ static const uint8_t table1_316_emit_[16];
1311
+ static const uint8_t table1_317_emit_[20];
1312
+ static const uint8_t table1_318_emit_[32];
1313
+ static const uint8_t table1_319_emit_[36];
1314
+ static const uint8_t table1_320_emit_[8];
1315
+ static const uint8_t table1_321_emit_[8];
1316
+ static const uint8_t table1_322_emit_[12];
1317
+ static const uint8_t table1_323_emit_[16];
1318
+ static const uint8_t table1_324_emit_[16];
1319
+ static const uint8_t table1_325_emit_[19];
1320
+ static const uint16_t table1_325_inner_[10];
1321
+ static const uint8_t table1_326_emit_[32];
1322
+ static const uint8_t table1_327_emit_[36];
1323
+ static const uint8_t table1_328_emit_[8];
1324
+ static const uint8_t table1_329_emit_[8];
1325
+ static const uint8_t table1_330_emit_[12];
1326
+ static const uint8_t table1_331_emit_[16];
1327
+ static const uint8_t table1_332_emit_[16];
1328
+ static const uint8_t table1_333_emit_[19];
1329
+ static const uint16_t table1_333_inner_[10];
1330
+ static const uint8_t table1_334_emit_[32];
1331
+ static const uint8_t table1_335_emit_[36];
1332
+ static const uint8_t table1_336_emit_[8];
1333
+ static const uint8_t table1_337_emit_[8];
1334
+ static const uint8_t table1_338_emit_[12];
1335
+ static const uint8_t table1_339_emit_[16];
1336
+ static const uint8_t table1_340_emit_[16];
1337
+ static const uint8_t table1_341_emit_[19];
1338
+ static const uint16_t table1_341_inner_[10];
1339
+ static const uint8_t table1_342_emit_[32];
1340
+ static const uint8_t table1_343_emit_[36];
1341
+ static const uint8_t table1_344_emit_[8];
1342
+ static const uint8_t table1_345_emit_[8];
1343
+ static const uint8_t table1_346_emit_[12];
1344
+ static const uint8_t table1_347_emit_[16];
1345
+ static const uint8_t table1_348_emit_[16];
1346
+ static const uint8_t table1_349_emit_[19];
1347
+ static const uint16_t table1_349_inner_[10];
1348
+ static const uint8_t table1_350_emit_[32];
1349
+ static const uint8_t table1_351_emit_[36];
1350
+ static const uint8_t table1_352_emit_[8];
1351
+ static const uint8_t table1_353_emit_[8];
1352
+ static const uint8_t table1_354_emit_[12];
1353
+ static const uint8_t table1_355_emit_[16];
1354
+ static const uint8_t table1_356_emit_[16];
1355
+ static const uint8_t table1_357_emit_[19];
1356
+ static const uint16_t table1_357_inner_[10];
1357
+ static const uint8_t table1_358_emit_[32];
1358
+ static const uint8_t table1_359_emit_[36];
1359
+ static const uint8_t table1_360_emit_[8];
1360
+ static const uint8_t table1_361_emit_[8];
1361
+ static const uint8_t table1_362_emit_[12];
1362
+ static const uint8_t table1_363_emit_[16];
1363
+ static const uint8_t table1_364_emit_[16];
1364
+ static const uint8_t table1_365_emit_[19];
1365
+ static const uint16_t table1_365_inner_[10];
1366
+ static const uint8_t table1_366_emit_[32];
1367
+ static const uint8_t table1_367_emit_[36];
1368
+ static const uint8_t table1_368_emit_[16];
1369
+ static const uint8_t table1_369_emit_[28];
1370
+ static const uint16_t table1_369_inner_[14];
1371
+ static const uint8_t table1_369_outer_[64];
1372
+ static const uint8_t table1_370_emit_[35];
1373
+ static const uint16_t table1_370_inner_[18];
1374
+ static const uint8_t table1_370_outer_[64];
1375
+ static const uint8_t table1_371_emit_[68];
1376
+ static const uint16_t table1_371_inner_[35];
1377
+ static const uint8_t table1_371_outer_[64];
1378
+ static const uint8_t table1_372_emit_[16];
1379
+ static const uint8_t table1_373_emit_[28];
1380
+ static const uint8_t table1_374_emit_[35];
1381
+ static const uint16_t table1_374_inner_[18];
1382
+ static const uint8_t table1_375_emit_[68];
1383
+ static const uint8_t table1_376_emit_[16];
1384
+ static const uint8_t table1_377_emit_[28];
1385
+ static const uint8_t table1_378_emit_[35];
1386
+ static const uint16_t table1_378_inner_[18];
1387
+ static const uint8_t table1_379_emit_[68];
1388
+ static const uint8_t table1_380_emit_[16];
1389
+ static const uint8_t table1_381_emit_[28];
1390
+ static const uint8_t table1_382_emit_[36];
1391
+ static const uint16_t table1_382_inner_[18];
1392
+ static const uint8_t table1_383_emit_[68];
1393
+ static const uint8_t table1_384_emit_[16];
1394
+ static const uint8_t table1_385_emit_[28];
1395
+ static const uint8_t table1_386_emit_[36];
1396
+ static const uint8_t table1_387_emit_[67];
1397
+ static const uint16_t table1_387_inner_[35];
1398
+ static const uint8_t table1_388_emit_[16];
1399
+ static const uint8_t table1_389_emit_[28];
1400
+ static const uint8_t table1_390_emit_[36];
1401
+ static const uint8_t table1_391_emit_[67];
1402
+ static const uint16_t table1_391_inner_[35];
1403
+ static const uint8_t table1_392_emit_[16];
1404
+ static const uint8_t table1_393_emit_[28];
1405
+ static const uint8_t table1_394_emit_[36];
1406
+ static const uint8_t table1_395_emit_[67];
1407
+ static const uint16_t table1_395_inner_[35];
1408
+ static const uint8_t table1_396_emit_[16];
1409
+ static const uint8_t table1_397_emit_[28];
1410
+ static const uint8_t table1_398_emit_[36];
1411
+ static const uint8_t table1_399_emit_[67];
1412
+ static const uint16_t table1_399_inner_[35];
1413
+ static const uint8_t table1_400_emit_[16];
1414
+ static const uint8_t table1_401_emit_[28];
1415
+ static const uint8_t table1_402_emit_[36];
1416
+ static const uint8_t table1_403_emit_[67];
1417
+ static const uint16_t table1_403_inner_[35];
1418
+ static const uint8_t table1_404_emit_[16];
1419
+ static const uint8_t table1_405_emit_[28];
1420
+ static const uint8_t table1_406_emit_[36];
1421
+ static const uint8_t table1_407_emit_[67];
1422
+ static const uint16_t table1_407_inner_[35];
1423
+ static const uint8_t table1_408_emit_[16];
1424
+ static const uint8_t table1_409_emit_[28];
1425
+ static const uint8_t table1_410_emit_[36];
1426
+ static const uint8_t table1_411_emit_[67];
1427
+ static const uint16_t table1_411_inner_[35];
1428
+ static const uint8_t table1_412_emit_[16];
1429
+ static const uint8_t table1_413_emit_[28];
1430
+ static const uint8_t table1_414_emit_[36];
1431
+ static const uint8_t table1_415_emit_[67];
1432
+ static const uint16_t table1_415_inner_[35];
1433
+ static const uint8_t table1_416_emit_[16];
1434
+ static const uint8_t table1_417_emit_[28];
1435
+ static const uint8_t table1_418_emit_[36];
1436
+ static const uint8_t table1_419_emit_[67];
1437
+ static const uint16_t table1_419_inner_[35];
1438
+ static const uint8_t table1_420_emit_[16];
1439
+ static const uint8_t table1_421_emit_[28];
1440
+ static const uint8_t table1_422_emit_[36];
1441
+ static const uint8_t table1_423_emit_[67];
1442
+ static const uint16_t table1_423_inner_[35];
1443
+ static const uint8_t table1_424_emit_[16];
1444
+ static const uint8_t table1_425_emit_[28];
1445
+ static const uint8_t table1_426_emit_[36];
1446
+ static const uint8_t table1_427_emit_[67];
1447
+ static const uint16_t table1_427_inner_[35];
1448
+ static const uint8_t table1_428_emit_[16];
1449
+ static const uint8_t table1_429_emit_[28];
1450
+ static const uint8_t table1_430_emit_[36];
1451
+ static const uint8_t table1_431_emit_[67];
1452
+ static const uint16_t table1_431_inner_[35];
1453
+ static const uint8_t table1_432_emit_[16];
1454
+ static const uint8_t table1_433_emit_[28];
1455
+ static const uint8_t table1_434_emit_[36];
1456
+ static const uint8_t table1_435_emit_[67];
1457
+ static const uint16_t table1_435_inner_[35];
1458
+ static const uint8_t table1_436_emit_[16];
1459
+ static const uint8_t table1_437_emit_[28];
1460
+ static const uint8_t table1_438_emit_[36];
1461
+ static const uint8_t table1_439_emit_[67];
1462
+ static const uint16_t table1_439_inner_[35];
1463
+ static const uint8_t table1_440_emit_[16];
1464
+ static const uint8_t table1_441_emit_[28];
1465
+ static const uint8_t table1_442_emit_[36];
1466
+ static const uint8_t table1_443_emit_[67];
1467
+ static const uint16_t table1_443_inner_[35];
1468
+ static const uint8_t table1_444_emit_[16];
1469
+ static const uint8_t table1_445_emit_[28];
1470
+ static const uint8_t table1_446_emit_[36];
1471
+ static const uint8_t table1_447_emit_[67];
1472
+ static const uint16_t table1_447_inner_[35];
1473
+ static const uint8_t table1_448_emit_[16];
1474
+ static const uint8_t table1_449_emit_[28];
1475
+ static const uint8_t table1_450_emit_[36];
1476
+ static const uint8_t table1_451_emit_[67];
1477
+ static const uint16_t table1_451_inner_[35];
1478
+ static const uint8_t table1_452_emit_[16];
1479
+ static const uint8_t table1_453_emit_[28];
1480
+ static const uint8_t table1_454_emit_[36];
1481
+ static const uint8_t table1_455_emit_[67];
1482
+ static const uint16_t table1_455_inner_[35];
1483
+ static const uint8_t table1_456_emit_[16];
1484
+ static const uint8_t table1_457_emit_[28];
1485
+ static const uint8_t table1_458_emit_[36];
1486
+ static const uint8_t table1_459_emit_[67];
1487
+ static const uint16_t table1_459_inner_[35];
1488
+ static const uint8_t table1_460_emit_[16];
1489
+ static const uint8_t table1_461_emit_[28];
1490
+ static const uint8_t table1_462_emit_[36];
1491
+ static const uint8_t table1_463_emit_[67];
1492
+ static const uint16_t table1_463_inner_[35];
1493
+ static const uint8_t table1_464_emit_[16];
1494
+ static const uint8_t table1_465_emit_[28];
1495
+ static const uint8_t table1_466_emit_[36];
1496
+ static const uint8_t table1_467_emit_[67];
1497
+ static const uint16_t table1_467_inner_[35];
1498
+ static const uint8_t table1_468_emit_[16];
1499
+ static const uint8_t table1_469_emit_[28];
1500
+ static const uint8_t table1_470_emit_[36];
1501
+ static const uint8_t table1_471_emit_[67];
1502
+ static const uint16_t table1_471_inner_[35];
1503
+ static const uint8_t table1_472_emit_[16];
1504
+ static const uint8_t table1_473_emit_[28];
1505
+ static const uint8_t table1_474_emit_[36];
1506
+ static const uint8_t table1_475_emit_[67];
1507
+ static const uint16_t table1_475_inner_[35];
1508
+ static const uint8_t table1_476_emit_[16];
1509
+ static const uint8_t table1_477_emit_[28];
1510
+ static const uint8_t table1_478_emit_[36];
1511
+ static const uint8_t table1_479_emit_[67];
1512
+ static const uint16_t table1_479_inner_[35];
1513
+ static const uint8_t table1_480_emit_[16];
1514
+ static const uint8_t table1_481_emit_[28];
1515
+ static const uint8_t table1_482_emit_[36];
1516
+ static const uint8_t table1_483_emit_[67];
1517
+ static const uint16_t table1_483_inner_[35];
1518
+ static const uint8_t table1_484_emit_[16];
1519
+ static const uint8_t table1_485_emit_[28];
1520
+ static const uint8_t table1_486_emit_[36];
1521
+ static const uint8_t table1_487_emit_[67];
1522
+ static const uint16_t table1_487_inner_[35];
1523
+ static const uint8_t table1_488_emit_[16];
1524
+ static const uint8_t table1_489_emit_[28];
1525
+ static const uint8_t table1_490_emit_[36];
1526
+ static const uint8_t table1_491_emit_[67];
1527
+ static const uint16_t table1_491_inner_[35];
1528
+ static const uint8_t table1_492_emit_[16];
1529
+ static const uint8_t table1_493_emit_[28];
1530
+ static const uint8_t table1_494_emit_[36];
1531
+ static const uint8_t table1_495_emit_[67];
1532
+ static const uint16_t table1_495_inner_[35];
1533
+ static const uint8_t table1_496_emit_[44];
1534
+ static const uint16_t table1_496_inner_[22];
1535
+ static const uint8_t table1_496_outer_[64];
1536
+ static const uint8_t table1_497_emit_[92];
1537
+ static const uint16_t table1_497_inner_[47];
1538
+ static const uint8_t table1_497_outer_[64];
1539
+ static const uint8_t table1_498_emit_[44];
1540
+ static const uint8_t table1_499_emit_[92];
1541
+ static const uint8_t table1_500_emit_[44];
1542
+ static const uint8_t table1_501_emit_[92];
1543
+ static const uint8_t table1_502_emit_[44];
1544
+ static const uint8_t table1_503_emit_[92];
1545
+ static const uint8_t table1_504_emit_[44];
1546
+ static const uint8_t table1_505_emit_[92];
1547
+ static const uint8_t table1_506_emit_[44];
1548
+ static const uint8_t table1_507_emit_[92];
1549
+ static const uint8_t table1_508_emit_[40];
1550
+ static const uint16_t table1_508_inner_[22];
1551
+ static const uint8_t table1_509_emit_[40];
1552
+ static const uint8_t table1_510_emit_[22];
1553
+ static const uint16_t table1_510_inner_[13];
1554
+ static const uint8_t table1_510_outer_[64];
1555
+ static const uint8_t table1_511_emit_[14];
1556
+ static const uint16_t table1_511_inner_[15];
1557
+ static const uint8_t table1_511_outer_[64];
1558
+ static const uint8_t* const table1_emit_[512];
1559
+ static const uint16_t* const table1_inner_[512];
1560
+ static const uint8_t* const table1_outer_[512];
208
1561
  static const uint8_t table13_0_inner_[5];
209
1562
  static const uint8_t table14_0_emit_[11];
210
1563
  static const uint8_t table14_0_ops_[32];
211
1564
  static const uint8_t table15_0_emit_[24];
212
1565
  static const uint8_t table15_0_ops_[64];
213
- static const uint8_t table16_0_emit_[50];
214
- static const uint8_t table16_0_ops_[128];
215
- static const uint8_t table12_0_emit_[79];
216
- static const uint16_t table12_0_inner_[90];
217
- static const uint8_t table12_0_outer_[256];
218
- static const uint8_t table24_0_emit_[8];
219
- static const uint8_t table24_0_inner_[8];
220
- static const uint8_t table25_0_emit_[16];
221
- static const uint8_t table25_0_inner_[16];
222
- static const uint8_t table26_0_emit_[30];
223
- static const uint16_t table26_0_inner_[31];
224
- static const uint8_t table30_0_emit_[7];
225
- static const uint8_t table30_0_inner_[8];
226
- static const uint8_t table29_0_emit_[9];
227
- static const uint8_t table29_0_inner_[9];
1566
+ static const uint8_t table12_0_emit_[50];
1567
+ static const uint16_t table12_0_inner_[70];
1568
+ static const uint8_t table12_0_outer_[128];
1569
+ static const uint8_t table33_0_emit_[15];
1570
+ static const uint8_t table33_0_inner_[16];
1571
+ static const uint8_t table32_0_emit_[17];
1572
+ static const uint8_t table32_0_ops_[32];
1573
+ static const uint8_t table36_0_emit_[6];
1574
+ static const uint8_t table36_0_inner_[6];
1575
+ static const uint8_t table39_0_emit_[17];
1576
+ static const uint8_t table39_0_ops_[32];
1577
+ static const uint8_t table40_0_emit_[46];
1578
+ static const uint8_t table40_0_ops_[64];
1579
+ static const uint8_t table41_0_ops_[128];
1580
+ static const uint8_t table38_0_emit_[4];
1581
+ static const uint16_t table38_0_ops_[32];
1582
+ static const uint8_t table38_1_emit_[4];
1583
+ static const uint8_t table38_2_emit_[4];
1584
+ static const uint8_t table38_3_emit_[4];
1585
+ static const uint8_t table38_4_emit_[7];
1586
+ static const uint16_t table38_4_ops_[32];
1587
+ static const uint8_t table38_5_emit_[8];
1588
+ static const uint16_t table38_5_ops_[32];
1589
+ static const uint8_t table38_6_emit_[8];
1590
+ static const uint8_t table38_7_emit_[10];
1591
+ static const uint16_t table38_7_ops_[32];
1592
+ static const uint8_t* const table38_emit_[8];
1593
+ static const uint16_t* const table38_ops_[8];
228
1594
  };
229
1595
  template <typename F>
230
1596
  class HuffDecoder : public HuffDecoderCommon {
@@ -233,26 +1599,33 @@ class HuffDecoder : public HuffDecoderCommon {
233
1599
  : sink_(sink), begin_(begin), end_(end) {}
234
1600
  bool Run() {
235
1601
  while (!done_) {
236
- if (!RefillTo8()) {
1602
+ if (!RefillTo15()) {
237
1603
  Done0();
238
1604
  break;
239
1605
  }
240
- const auto index = (buffer_ >> (buffer_len_ - 8)) & 0xff;
1606
+ const auto index = (buffer_ >> (buffer_len_ - 15)) & 0x7fff;
241
1607
  const auto op = GetOp1(index);
242
1608
  const int consumed = op & 15;
243
1609
  buffer_len_ -= consumed;
244
1610
  const auto emit_ofs = op >> 6;
245
1611
  switch ((op >> 4) & 3) {
1612
+ case 0: {
1613
+ sink_(GetEmit1(index, emit_ofs + 0));
1614
+ sink_(GetEmit1(index, emit_ofs + 1));
1615
+ sink_(GetEmit1(index, emit_ofs + 2));
1616
+ break;
1617
+ }
246
1618
  case 1: {
247
- DecodeStep0();
1619
+ sink_(GetEmit1(index, emit_ofs + 0));
1620
+ sink_(GetEmit1(index, emit_ofs + 1));
248
1621
  break;
249
1622
  }
250
1623
  case 2: {
251
- DecodeStep1();
1624
+ sink_(GetEmit1(index, emit_ofs + 0));
252
1625
  break;
253
1626
  }
254
- case 0: {
255
- sink_(GetEmit1(index, emit_ofs + 0));
1627
+ case 3: {
1628
+ DecodeStep0();
256
1629
  break;
257
1630
  }
258
1631
  }
@@ -261,330 +1634,603 @@ class HuffDecoder : public HuffDecoderCommon {
261
1634
  }
262
1635
 
263
1636
  private:
264
- bool RefillTo8() {
1637
+ bool RefillTo15() {
265
1638
  switch (buffer_len_) {
266
- case 0:
1639
+ case 0: {
1640
+ return Read2to8Bytes();
1641
+ }
267
1642
  case 1:
268
1643
  case 2:
269
1644
  case 3:
270
1645
  case 4:
271
1646
  case 5:
272
- case 6:
273
- case 7: {
274
- return Read1();
1647
+ case 6: {
1648
+ return Read2to7Bytes();
1649
+ }
1650
+ case 7:
1651
+ case 8: {
1652
+ return Read1to7Bytes();
1653
+ }
1654
+ case 9:
1655
+ case 10:
1656
+ case 11:
1657
+ case 12:
1658
+ case 13:
1659
+ case 14: {
1660
+ return Read1to6Bytes();
275
1661
  }
276
1662
  }
277
1663
  return true;
278
1664
  }
279
- bool Read1() {
280
- if (end_ - begin_ < 1) return false;
281
- buffer_ <<= 8;
282
- buffer_ |= static_cast<uint64_t>(*begin_++) << 0;
283
- buffer_len_ += 8;
284
- return true;
285
- }
286
- void Done0() {
287
- done_ = true;
288
- switch (buffer_len_) {
289
- case 7: {
290
- const auto index = buffer_ & 127;
291
- const auto op = GetOp4(index);
292
- switch (op & 3) {
293
- case 1: {
294
- ok_ = false;
295
- break;
296
- }
297
- case 2: {
298
- sink_(GetEmit4(index, op >> 2));
299
- break;
300
- }
301
- }
302
- return;
1665
+ bool Read2to8Bytes() {
1666
+ switch (end_ - begin_) {
1667
+ case 0:
1668
+ case 1: {
1669
+ return false;
1670
+ }
1671
+ case 2: {
1672
+ Fill2();
1673
+ return true;
1674
+ }
1675
+ case 3: {
1676
+ Fill3();
1677
+ return true;
1678
+ }
1679
+ case 4: {
1680
+ Fill4();
1681
+ return true;
303
1682
  }
304
1683
  case 5: {
305
- const auto index = buffer_ & 31;
306
- const auto op = GetOp2(index);
307
- switch (op & 3) {
308
- case 1: {
309
- ok_ = false;
310
- break;
311
- }
312
- case 2: {
313
- sink_(GetEmit2(index, op >> 2));
314
- break;
315
- }
316
- }
317
- return;
1684
+ Fill5();
1685
+ return true;
318
1686
  }
319
1687
  case 6: {
320
- const auto index = buffer_ & 63;
321
- const auto op = GetOp3(index);
322
- switch (op & 3) {
323
- case 1: {
324
- ok_ = false;
325
- break;
326
- }
327
- case 2: {
328
- sink_(GetEmit3(index, op >> 2));
329
- break;
330
- }
331
- }
332
- return;
1688
+ Fill6();
1689
+ return true;
333
1690
  }
334
- case 1:
335
- case 2:
336
- case 3:
337
- case 4: {
338
- ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
339
- return;
1691
+ case 7: {
1692
+ Fill7();
1693
+ return true;
340
1694
  }
341
- case 0: {
342
- return;
1695
+ default: {
1696
+ Fill8();
1697
+ return true;
343
1698
  }
344
1699
  }
345
1700
  }
346
- void DecodeStep0() {
347
- if (!RefillTo2()) {
348
- Done1();
349
- return;
350
- }
351
- const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
352
- const auto op = GetOp5(index);
353
- const int consumed = op & 3;
354
- buffer_len_ -= consumed;
355
- const auto emit_ofs = op >> 2;
356
- sink_(GetEmit5(index, emit_ofs + 0));
357
- }
358
- bool RefillTo2() {
359
- switch (buffer_len_) {
1701
+ void Fill2() {
1702
+ buffer_ = (buffer_ << 16) | (static_cast<uint64_t>(begin_[0]) << 8) |
1703
+ (static_cast<uint64_t>(begin_[1]) << 0);
1704
+ begin_ += 2;
1705
+ buffer_len_ += 16;
1706
+ }
1707
+ void Fill3() {
1708
+ buffer_ = (buffer_ << 24) | (static_cast<uint64_t>(begin_[0]) << 16) |
1709
+ (static_cast<uint64_t>(begin_[1]) << 8) |
1710
+ (static_cast<uint64_t>(begin_[2]) << 0);
1711
+ begin_ += 3;
1712
+ buffer_len_ += 24;
1713
+ }
1714
+ void Fill4() {
1715
+ buffer_ = (buffer_ << 32) | (static_cast<uint64_t>(begin_[0]) << 24) |
1716
+ (static_cast<uint64_t>(begin_[1]) << 16) |
1717
+ (static_cast<uint64_t>(begin_[2]) << 8) |
1718
+ (static_cast<uint64_t>(begin_[3]) << 0);
1719
+ begin_ += 4;
1720
+ buffer_len_ += 32;
1721
+ }
1722
+ void Fill5() {
1723
+ buffer_ = (buffer_ << 40) | (static_cast<uint64_t>(begin_[0]) << 32) |
1724
+ (static_cast<uint64_t>(begin_[1]) << 24) |
1725
+ (static_cast<uint64_t>(begin_[2]) << 16) |
1726
+ (static_cast<uint64_t>(begin_[3]) << 8) |
1727
+ (static_cast<uint64_t>(begin_[4]) << 0);
1728
+ begin_ += 5;
1729
+ buffer_len_ += 40;
1730
+ }
1731
+ void Fill6() {
1732
+ buffer_ = (buffer_ << 48) | (static_cast<uint64_t>(begin_[0]) << 40) |
1733
+ (static_cast<uint64_t>(begin_[1]) << 32) |
1734
+ (static_cast<uint64_t>(begin_[2]) << 24) |
1735
+ (static_cast<uint64_t>(begin_[3]) << 16) |
1736
+ (static_cast<uint64_t>(begin_[4]) << 8) |
1737
+ (static_cast<uint64_t>(begin_[5]) << 0);
1738
+ begin_ += 6;
1739
+ buffer_len_ += 48;
1740
+ }
1741
+ void Fill7() {
1742
+ buffer_ = (buffer_ << 56) | (static_cast<uint64_t>(begin_[0]) << 48) |
1743
+ (static_cast<uint64_t>(begin_[1]) << 40) |
1744
+ (static_cast<uint64_t>(begin_[2]) << 32) |
1745
+ (static_cast<uint64_t>(begin_[3]) << 24) |
1746
+ (static_cast<uint64_t>(begin_[4]) << 16) |
1747
+ (static_cast<uint64_t>(begin_[5]) << 8) |
1748
+ (static_cast<uint64_t>(begin_[6]) << 0);
1749
+ begin_ += 7;
1750
+ buffer_len_ += 56;
1751
+ }
1752
+ void Fill8() {
1753
+ buffer_ = 0 | (static_cast<uint64_t>(begin_[0]) << 56) |
1754
+ (static_cast<uint64_t>(begin_[1]) << 48) |
1755
+ (static_cast<uint64_t>(begin_[2]) << 40) |
1756
+ (static_cast<uint64_t>(begin_[3]) << 32) |
1757
+ (static_cast<uint64_t>(begin_[4]) << 24) |
1758
+ (static_cast<uint64_t>(begin_[5]) << 16) |
1759
+ (static_cast<uint64_t>(begin_[6]) << 8) |
1760
+ (static_cast<uint64_t>(begin_[7]) << 0);
1761
+ begin_ += 8;
1762
+ buffer_len_ += 64;
1763
+ }
1764
+ bool Read2to7Bytes() {
1765
+ switch (end_ - begin_) {
360
1766
  case 0:
361
1767
  case 1: {
362
- return Read1();
1768
+ return false;
1769
+ }
1770
+ case 2: {
1771
+ Fill2();
1772
+ return true;
1773
+ }
1774
+ case 3: {
1775
+ Fill3();
1776
+ return true;
1777
+ }
1778
+ case 4: {
1779
+ Fill4();
1780
+ return true;
1781
+ }
1782
+ case 5: {
1783
+ Fill5();
1784
+ return true;
1785
+ }
1786
+ case 6: {
1787
+ Fill6();
1788
+ return true;
1789
+ }
1790
+ default: {
1791
+ Fill7();
1792
+ return true;
363
1793
  }
364
1794
  }
365
- return true;
366
1795
  }
367
- void Done1() {
368
- done_ = true;
369
- switch (buffer_len_) {
370
- case 0:
1796
+ bool Read1to7Bytes() {
1797
+ switch (end_ - begin_) {
1798
+ case 0: {
1799
+ return false;
1800
+ }
371
1801
  case 1: {
372
- ok_ = false;
373
- return;
1802
+ Fill1();
1803
+ return true;
1804
+ }
1805
+ case 2: {
1806
+ Fill2();
1807
+ return true;
1808
+ }
1809
+ case 3: {
1810
+ Fill3();
1811
+ return true;
1812
+ }
1813
+ case 4: {
1814
+ Fill4();
1815
+ return true;
1816
+ }
1817
+ case 5: {
1818
+ Fill5();
1819
+ return true;
1820
+ }
1821
+ case 6: {
1822
+ Fill6();
1823
+ return true;
1824
+ }
1825
+ default: {
1826
+ Fill7();
1827
+ return true;
374
1828
  }
375
1829
  }
376
1830
  }
377
- void DecodeStep1() {
378
- if (!RefillTo7()) {
379
- Done2();
380
- return;
381
- }
382
- const auto index = (buffer_ >> (buffer_len_ - 7)) & 0x7f;
383
- const auto op = GetOp6(index);
384
- const int consumed = op & 7;
385
- buffer_len_ -= consumed;
386
- const auto emit_ofs = op >> 4;
387
- switch ((op >> 3) & 1) {
1831
+ void Fill1() {
1832
+ buffer_ = (buffer_ << 8) | (static_cast<uint64_t>(begin_[0]) << 0);
1833
+ begin_ += 1;
1834
+ buffer_len_ += 8;
1835
+ }
1836
+ bool Read1to6Bytes() {
1837
+ switch (end_ - begin_) {
1838
+ case 0: {
1839
+ return false;
1840
+ }
388
1841
  case 1: {
389
- DecodeStep2();
390
- break;
1842
+ Fill1();
1843
+ return true;
391
1844
  }
392
- case 0: {
393
- sink_(GetEmit6(index, emit_ofs + 0));
394
- break;
1845
+ case 2: {
1846
+ Fill2();
1847
+ return true;
1848
+ }
1849
+ case 3: {
1850
+ Fill3();
1851
+ return true;
1852
+ }
1853
+ case 4: {
1854
+ Fill4();
1855
+ return true;
1856
+ }
1857
+ case 5: {
1858
+ Fill5();
1859
+ return true;
1860
+ }
1861
+ default: {
1862
+ Fill6();
1863
+ return true;
395
1864
  }
396
1865
  }
397
1866
  }
398
- bool RefillTo7() {
1867
+ void Done0() {
1868
+ done_ = true;
1869
+ switch (end_ - begin_) {
1870
+ case 1: {
1871
+ Fill1();
1872
+ break;
1873
+ }
1874
+ }
399
1875
  switch (buffer_len_) {
400
- case 0:
401
1876
  case 1:
402
1877
  case 2:
403
1878
  case 3:
404
- case 4:
405
- case 5:
406
- case 6: {
407
- return Read1();
408
- }
409
- }
410
- return true;
411
- }
412
- void Done2() {
413
- done_ = true;
414
- switch (buffer_len_) {
415
1879
  case 4: {
416
- const auto index = buffer_ & 15;
417
- const auto op = GetOp9(index);
1880
+ ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
1881
+ return;
1882
+ }
1883
+ case 5: {
1884
+ const auto index = buffer_ & 31;
1885
+ const auto op = GetOp2(index);
418
1886
  switch (op & 3) {
1887
+ case 0: {
1888
+ sink_(GetEmit2(index, (op >> 2) + 0));
1889
+ break;
1890
+ }
419
1891
  case 1: {
420
1892
  ok_ = false;
421
1893
  break;
422
1894
  }
423
- case 2: {
424
- sink_(GetEmit9(index, op >> 2));
1895
+ }
1896
+ return;
1897
+ }
1898
+ case 6: {
1899
+ const auto index = buffer_ & 63;
1900
+ const auto op = GetOp3(index);
1901
+ switch (op & 3) {
1902
+ case 0: {
1903
+ ok_ = false;
1904
+ break;
1905
+ }
1906
+ case 1: {
1907
+ sink_(GetEmit3(index, (op >> 2) + 0));
425
1908
  break;
426
1909
  }
427
1910
  }
428
1911
  return;
429
1912
  }
430
- case 5: {
431
- const auto index = buffer_ & 31;
432
- const auto op = GetOp10(index);
1913
+ case 7: {
1914
+ const auto index = buffer_ & 127;
1915
+ const auto op = GetOp4(index);
433
1916
  switch (op & 3) {
434
- case 1: {
1917
+ case 0: {
435
1918
  ok_ = false;
436
1919
  break;
437
1920
  }
438
- case 2: {
439
- sink_(GetEmit10(index, op >> 2));
1921
+ case 1: {
1922
+ sink_(GetEmit4(index, (op >> 2) + 0));
440
1923
  break;
441
1924
  }
442
1925
  }
443
1926
  return;
444
1927
  }
445
- case 2: {
446
- const auto index = buffer_ & 3;
447
- const auto op = GetOp7(index);
1928
+ case 8: {
1929
+ const auto index = buffer_ & 255;
1930
+ const auto op = GetOp5(index);
448
1931
  switch (op & 3) {
449
- case 1: {
1932
+ case 0: {
450
1933
  ok_ = false;
451
1934
  break;
452
1935
  }
453
- case 2: {
454
- sink_(GetEmit7(index, op >> 2));
1936
+ case 1: {
1937
+ sink_(GetEmit5(index, (op >> 2) + 0));
455
1938
  break;
456
1939
  }
457
1940
  }
458
1941
  return;
459
1942
  }
460
- case 6: {
461
- const auto index = buffer_ & 63;
462
- const auto op = GetOp11(index);
1943
+ case 9: {
1944
+ const auto index = buffer_ & 511;
1945
+ const auto op = GetOp6(index);
463
1946
  switch (op & 3) {
464
- case 1: {
1947
+ case 0: {
465
1948
  ok_ = false;
466
1949
  break;
467
1950
  }
468
- case 2: {
469
- sink_(GetEmit11(index, op >> 2));
1951
+ case 1: {
1952
+ sink_(GetEmit6(index, (op >> 2) + 0));
470
1953
  break;
471
1954
  }
472
1955
  }
473
1956
  return;
474
1957
  }
475
- case 3: {
476
- const auto index = buffer_ & 7;
477
- const auto op = GetOp8(index);
1958
+ case 10: {
1959
+ const auto index = buffer_ & 1023;
1960
+ const auto op = GetOp7(index);
478
1961
  switch (op & 3) {
1962
+ case 0: {
1963
+ sink_(GetEmit7(index, (op >> 2) + 0));
1964
+ sink_(GetEmit7(index, (op >> 2) + 1));
1965
+ break;
1966
+ }
479
1967
  case 1: {
480
1968
  ok_ = false;
481
1969
  break;
482
1970
  }
483
1971
  case 2: {
484
- sink_(GetEmit8(index, op >> 2));
1972
+ sink_(GetEmit7(index, (op >> 2) + 0));
1973
+ break;
1974
+ }
1975
+ }
1976
+ return;
1977
+ }
1978
+ case 11: {
1979
+ const auto index = buffer_ & 2047;
1980
+ const auto op = GetOp8(index);
1981
+ switch (op & 3) {
1982
+ case 0: {
1983
+ ok_ = false;
1984
+ break;
1985
+ }
1986
+ case 1: {
1987
+ sink_(GetEmit8(index, (op >> 2) + 0));
1988
+ sink_(GetEmit8(index, (op >> 2) + 1));
1989
+ break;
1990
+ }
1991
+ case 2: {
1992
+ sink_(GetEmit8(index, (op >> 2) + 0));
1993
+ break;
1994
+ }
1995
+ }
1996
+ return;
1997
+ }
1998
+ case 12: {
1999
+ const auto index = buffer_ & 4095;
2000
+ const auto op = GetOp9(index);
2001
+ switch (op & 3) {
2002
+ case 0: {
2003
+ ok_ = false;
2004
+ break;
2005
+ }
2006
+ case 1: {
2007
+ sink_(GetEmit9(index, (op >> 2) + 0));
2008
+ sink_(GetEmit9(index, (op >> 2) + 1));
2009
+ break;
2010
+ }
2011
+ case 2: {
2012
+ sink_(GetEmit9(index, (op >> 2) + 0));
2013
+ break;
2014
+ }
2015
+ }
2016
+ return;
2017
+ }
2018
+ case 13: {
2019
+ const auto index = buffer_ & 8191;
2020
+ const auto op = GetOp10(index);
2021
+ switch (op & 3) {
2022
+ case 0: {
2023
+ ok_ = false;
2024
+ break;
2025
+ }
2026
+ case 1: {
2027
+ sink_(GetEmit10(index, (op >> 2) + 0));
2028
+ sink_(GetEmit10(index, (op >> 2) + 1));
2029
+ break;
2030
+ }
2031
+ case 2: {
2032
+ sink_(GetEmit10(index, (op >> 2) + 0));
2033
+ break;
2034
+ }
2035
+ }
2036
+ return;
2037
+ }
2038
+ case 14: {
2039
+ const auto index = buffer_ & 16383;
2040
+ const auto op = GetOp11(index);
2041
+ switch (op & 3) {
2042
+ case 0: {
2043
+ ok_ = false;
2044
+ break;
2045
+ }
2046
+ case 1: {
2047
+ sink_(GetEmit11(index, (op >> 2) + 0));
2048
+ sink_(GetEmit11(index, (op >> 2) + 1));
2049
+ break;
2050
+ }
2051
+ case 2: {
2052
+ sink_(GetEmit11(index, (op >> 2) + 0));
485
2053
  break;
486
2054
  }
487
2055
  }
488
2056
  return;
489
2057
  }
490
- case 1: {
491
- ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
492
- return;
493
- }
494
2058
  case 0: {
495
2059
  return;
496
2060
  }
497
2061
  }
498
2062
  }
499
- void DecodeStep2() {
500
- if (!RefillTo8()) {
501
- Done3();
2063
+ void DecodeStep0() {
2064
+ if (!RefillTo7()) {
2065
+ Done1();
502
2066
  return;
503
2067
  }
504
- const auto index = (buffer_ >> (buffer_len_ - 8)) & 0xff;
2068
+ const auto index = (buffer_ >> (buffer_len_ - 7)) & 0x7f;
505
2069
  const auto op = GetOp12(index);
506
- const int consumed = op & 15;
2070
+ const int consumed = op & 7;
507
2071
  buffer_len_ -= consumed;
508
2072
  const auto emit_ofs = op >> 8;
509
- switch ((op >> 4) & 15) {
510
- case 8: {
511
- DecodeStep10();
512
- break;
513
- }
514
- case 10: {
515
- DecodeStep11();
2073
+ switch ((op >> 3) & 31) {
2074
+ case 0: {
2075
+ sink_(GetEmit12(index, emit_ofs + 0));
516
2076
  break;
517
2077
  }
518
- case 11: {
519
- DecodeStep12();
2078
+ case 1: {
2079
+ DecodeStep1();
520
2080
  break;
521
2081
  }
522
- case 9: {
523
- DecodeStep14();
2082
+ case 2: {
2083
+ DecodeStep2();
524
2084
  break;
525
2085
  }
526
- case 1: {
2086
+ case 3: {
527
2087
  DecodeStep3();
528
2088
  break;
529
2089
  }
530
- case 2: {
2090
+ case 4: {
531
2091
  DecodeStep4();
532
2092
  break;
533
2093
  }
534
- case 3: {
2094
+ case 5: {
535
2095
  DecodeStep5();
536
2096
  break;
537
2097
  }
538
- case 4: {
2098
+ case 6: {
539
2099
  DecodeStep6();
540
2100
  break;
541
2101
  }
542
- case 5: {
2102
+ case 7: {
543
2103
  DecodeStep7();
544
2104
  break;
545
2105
  }
546
- case 6: {
2106
+ case 8: {
547
2107
  DecodeStep8();
548
2108
  break;
549
2109
  }
550
- case 7: {
2110
+ case 9: {
551
2111
  DecodeStep9();
552
2112
  break;
553
2113
  }
554
- case 0: {
555
- sink_(GetEmit12(index, emit_ofs + 0));
2114
+ case 10: {
2115
+ DecodeStep10();
2116
+ break;
2117
+ }
2118
+ case 11: {
2119
+ DecodeStep11();
2120
+ break;
2121
+ }
2122
+ case 12: {
2123
+ DecodeStep12();
2124
+ break;
2125
+ }
2126
+ case 13: {
2127
+ DecodeStep13();
2128
+ break;
2129
+ }
2130
+ case 14: {
2131
+ DecodeStep14();
2132
+ break;
2133
+ }
2134
+ case 15: {
2135
+ DecodeStep18();
2136
+ break;
2137
+ }
2138
+ case 16: {
2139
+ DecodeStep15();
2140
+ break;
2141
+ }
2142
+ case 17: {
2143
+ DecodeStep16();
2144
+ break;
2145
+ }
2146
+ case 18: {
2147
+ DecodeStep19();
2148
+ break;
2149
+ }
2150
+ case 19: {
2151
+ DecodeStep17();
2152
+ break;
2153
+ }
2154
+ case 20: {
2155
+ DecodeStep20();
556
2156
  break;
557
2157
  }
558
2158
  }
559
2159
  }
560
- void Done3() {
561
- done_ = true;
2160
+ bool RefillTo7() {
562
2161
  switch (buffer_len_) {
2162
+ case 0: {
2163
+ return Read1to8Bytes();
2164
+ }
2165
+ case 1:
2166
+ case 2:
2167
+ case 3:
2168
+ case 4:
2169
+ case 5:
2170
+ case 6: {
2171
+ return Read1to7Bytes();
2172
+ }
2173
+ }
2174
+ return true;
2175
+ }
2176
+ bool Read1to8Bytes() {
2177
+ switch (end_ - begin_) {
2178
+ case 0: {
2179
+ return false;
2180
+ }
2181
+ case 1: {
2182
+ Fill1();
2183
+ return true;
2184
+ }
2185
+ case 2: {
2186
+ Fill2();
2187
+ return true;
2188
+ }
2189
+ case 3: {
2190
+ Fill3();
2191
+ return true;
2192
+ }
2193
+ case 4: {
2194
+ Fill4();
2195
+ return true;
2196
+ }
2197
+ case 5: {
2198
+ Fill5();
2199
+ return true;
2200
+ }
2201
+ case 6: {
2202
+ Fill6();
2203
+ return true;
2204
+ }
563
2205
  case 7: {
564
- const auto index = buffer_ & 127;
565
- const auto op = GetOp16(index);
566
- switch (op & 3) {
567
- case 1: {
568
- ok_ = false;
569
- break;
570
- }
571
- case 2: {
572
- sink_(GetEmit16(index, op >> 2));
573
- break;
574
- }
575
- }
2206
+ Fill7();
2207
+ return true;
2208
+ }
2209
+ default: {
2210
+ Fill8();
2211
+ return true;
2212
+ }
2213
+ }
2214
+ }
2215
+ void Done1() {
2216
+ done_ = true;
2217
+ switch (buffer_len_) {
2218
+ case 1:
2219
+ case 2:
2220
+ case 3: {
2221
+ ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
576
2222
  return;
577
2223
  }
578
2224
  case 4: {
579
2225
  const auto index = buffer_ & 15;
580
2226
  const auto op = GetOp13(index);
581
2227
  switch (op & 3) {
582
- case 1: {
583
- ok_ = false;
2228
+ case 0: {
2229
+ sink_(GetEmit13(index, (op >> 2) + 0));
584
2230
  break;
585
2231
  }
586
- case 2: {
587
- sink_(GetEmit13(index, op >> 2));
2232
+ case 1: {
2233
+ ok_ = false;
588
2234
  break;
589
2235
  }
590
2236
  }
@@ -594,12 +2240,12 @@ class HuffDecoder : public HuffDecoderCommon {
594
2240
  const auto index = buffer_ & 31;
595
2241
  const auto op = GetOp14(index);
596
2242
  switch (op & 3) {
597
- case 1: {
2243
+ case 0: {
598
2244
  ok_ = false;
599
2245
  break;
600
2246
  }
601
- case 2: {
602
- sink_(GetEmit14(index, op >> 2));
2247
+ case 1: {
2248
+ sink_(GetEmit14(index, (op >> 2) + 0));
603
2249
  break;
604
2250
  }
605
2251
  }
@@ -609,48 +2255,74 @@ class HuffDecoder : public HuffDecoderCommon {
609
2255
  const auto index = buffer_ & 63;
610
2256
  const auto op = GetOp15(index);
611
2257
  switch (op & 3) {
612
- case 1: {
2258
+ case 0: {
613
2259
  ok_ = false;
614
2260
  break;
615
2261
  }
616
- case 2: {
617
- sink_(GetEmit15(index, op >> 2));
2262
+ case 1: {
2263
+ sink_(GetEmit15(index, (op >> 2) + 0));
618
2264
  break;
619
2265
  }
620
2266
  }
621
2267
  return;
622
2268
  }
623
- case 1:
624
- case 2:
625
- case 3: {
626
- ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
627
- return;
628
- }
629
2269
  case 0: {
630
2270
  return;
631
2271
  }
632
2272
  }
633
2273
  }
634
- void DecodeStep3() {
2274
+ void DecodeStep1() {
635
2275
  if (!RefillTo1()) {
636
- Done4();
2276
+ Done2();
637
2277
  return;
638
2278
  }
639
2279
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
640
- const auto op = GetOp17(index);
2280
+ const auto op = GetOp16(index);
641
2281
  const int consumed = op & 1;
642
2282
  buffer_len_ -= consumed;
643
2283
  const auto emit_ofs = op >> 1;
644
- sink_(GetEmit17(index, emit_ofs + 0));
2284
+ sink_(GetEmit16(index, emit_ofs + 0));
645
2285
  }
646
2286
  bool RefillTo1() {
647
2287
  switch (buffer_len_) {
648
2288
  case 0: {
649
- return Read1();
2289
+ return Read1to8Bytes();
650
2290
  }
651
2291
  }
652
2292
  return true;
653
2293
  }
2294
+ void Done2() {
2295
+ done_ = true;
2296
+ ok_ = false;
2297
+ }
2298
+ void DecodeStep2() {
2299
+ if (!RefillTo1()) {
2300
+ Done3();
2301
+ return;
2302
+ }
2303
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2304
+ const auto op = GetOp17(index);
2305
+ const int consumed = op & 1;
2306
+ buffer_len_ -= consumed;
2307
+ const auto emit_ofs = op >> 1;
2308
+ sink_(GetEmit17(index, emit_ofs + 0));
2309
+ }
2310
+ void Done3() {
2311
+ done_ = true;
2312
+ ok_ = false;
2313
+ }
2314
+ void DecodeStep3() {
2315
+ if (!RefillTo1()) {
2316
+ Done4();
2317
+ return;
2318
+ }
2319
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2320
+ const auto op = GetOp18(index);
2321
+ const int consumed = op & 1;
2322
+ buffer_len_ -= consumed;
2323
+ const auto emit_ofs = op >> 1;
2324
+ sink_(GetEmit18(index, emit_ofs + 0));
2325
+ }
654
2326
  void Done4() {
655
2327
  done_ = true;
656
2328
  ok_ = false;
@@ -661,11 +2333,11 @@ class HuffDecoder : public HuffDecoderCommon {
661
2333
  return;
662
2334
  }
663
2335
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
664
- const auto op = GetOp18(index);
2336
+ const auto op = GetOp19(index);
665
2337
  const int consumed = op & 1;
666
2338
  buffer_len_ -= consumed;
667
2339
  const auto emit_ofs = op >> 1;
668
- sink_(GetEmit18(index, emit_ofs + 0));
2340
+ sink_(GetEmit19(index, emit_ofs + 0));
669
2341
  }
670
2342
  void Done5() {
671
2343
  done_ = true;
@@ -677,11 +2349,11 @@ class HuffDecoder : public HuffDecoderCommon {
677
2349
  return;
678
2350
  }
679
2351
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
680
- const auto op = GetOp19(index);
2352
+ const auto op = GetOp20(index);
681
2353
  const int consumed = op & 1;
682
2354
  buffer_len_ -= consumed;
683
2355
  const auto emit_ofs = op >> 1;
684
- sink_(GetEmit19(index, emit_ofs + 0));
2356
+ sink_(GetEmit20(index, emit_ofs + 0));
685
2357
  }
686
2358
  void Done6() {
687
2359
  done_ = true;
@@ -693,11 +2365,11 @@ class HuffDecoder : public HuffDecoderCommon {
693
2365
  return;
694
2366
  }
695
2367
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
696
- const auto op = GetOp20(index);
2368
+ const auto op = GetOp21(index);
697
2369
  const int consumed = op & 1;
698
2370
  buffer_len_ -= consumed;
699
2371
  const auto emit_ofs = op >> 1;
700
- sink_(GetEmit20(index, emit_ofs + 0));
2372
+ sink_(GetEmit21(index, emit_ofs + 0));
701
2373
  }
702
2374
  void Done7() {
703
2375
  done_ = true;
@@ -709,11 +2381,11 @@ class HuffDecoder : public HuffDecoderCommon {
709
2381
  return;
710
2382
  }
711
2383
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
712
- const auto op = GetOp21(index);
2384
+ const auto op = GetOp22(index);
713
2385
  const int consumed = op & 1;
714
2386
  buffer_len_ -= consumed;
715
2387
  const auto emit_ofs = op >> 1;
716
- sink_(GetEmit21(index, emit_ofs + 0));
2388
+ sink_(GetEmit22(index, emit_ofs + 0));
717
2389
  }
718
2390
  void Done8() {
719
2391
  done_ = true;
@@ -725,236 +2397,401 @@ class HuffDecoder : public HuffDecoderCommon {
725
2397
  return;
726
2398
  }
727
2399
  const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
728
- const auto op = GetOp22(index);
2400
+ const auto op = GetOp23(index);
729
2401
  const int consumed = op & 1;
730
2402
  buffer_len_ -= consumed;
731
2403
  const auto emit_ofs = op >> 1;
732
- sink_(GetEmit22(index, emit_ofs + 0));
2404
+ sink_(GetEmit23(index, emit_ofs + 0));
733
2405
  }
734
2406
  void Done9() {
735
2407
  done_ = true;
736
2408
  ok_ = false;
737
2409
  }
738
2410
  void DecodeStep9() {
739
- if (!RefillTo2()) {
2411
+ if (!RefillTo1()) {
740
2412
  Done10();
741
2413
  return;
742
2414
  }
743
- const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
744
- const auto op = GetOp23(index);
745
- const int consumed = op & 3;
746
- buffer_len_ -= consumed;
747
- const auto emit_ofs = op >> 2;
748
- sink_(GetEmit23(index, emit_ofs + 0));
2415
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2416
+ const auto op = GetOp24(index);
2417
+ const int consumed = op & 1;
2418
+ buffer_len_ -= consumed;
2419
+ const auto emit_ofs = op >> 1;
2420
+ sink_(GetEmit24(index, emit_ofs + 0));
749
2421
  }
750
2422
  void Done10() {
751
2423
  done_ = true;
752
- switch (buffer_len_) {
753
- case 0:
754
- case 1: {
755
- ok_ = false;
756
- return;
757
- }
758
- }
2424
+ ok_ = false;
759
2425
  }
760
2426
  void DecodeStep10() {
761
- if (!RefillTo3()) {
2427
+ if (!RefillTo1()) {
762
2428
  Done11();
763
2429
  return;
764
2430
  }
765
- const auto index = (buffer_ >> (buffer_len_ - 3)) & 0x7;
766
- const auto op = GetOp24(index);
2431
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2432
+ const auto op = GetOp25(index);
2433
+ const int consumed = op & 1;
2434
+ buffer_len_ -= consumed;
2435
+ const auto emit_ofs = op >> 1;
2436
+ sink_(GetEmit25(index, emit_ofs + 0));
2437
+ }
2438
+ void Done11() {
2439
+ done_ = true;
2440
+ ok_ = false;
2441
+ }
2442
+ void DecodeStep11() {
2443
+ if (!RefillTo1()) {
2444
+ Done12();
2445
+ return;
2446
+ }
2447
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2448
+ const auto op = GetOp26(index);
2449
+ const int consumed = op & 1;
2450
+ buffer_len_ -= consumed;
2451
+ const auto emit_ofs = op >> 1;
2452
+ sink_(GetEmit26(index, emit_ofs + 0));
2453
+ }
2454
+ void Done12() {
2455
+ done_ = true;
2456
+ ok_ = false;
2457
+ }
2458
+ void DecodeStep12() {
2459
+ if (!RefillTo1()) {
2460
+ Done13();
2461
+ return;
2462
+ }
2463
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2464
+ const auto op = GetOp27(index);
2465
+ const int consumed = op & 1;
2466
+ buffer_len_ -= consumed;
2467
+ const auto emit_ofs = op >> 1;
2468
+ sink_(GetEmit27(index, emit_ofs + 0));
2469
+ }
2470
+ void Done13() {
2471
+ done_ = true;
2472
+ ok_ = false;
2473
+ }
2474
+ void DecodeStep13() {
2475
+ if (!RefillTo1()) {
2476
+ Done14();
2477
+ return;
2478
+ }
2479
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2480
+ const auto op = GetOp28(index);
2481
+ const int consumed = op & 1;
2482
+ buffer_len_ -= consumed;
2483
+ const auto emit_ofs = op >> 1;
2484
+ sink_(GetEmit28(index, emit_ofs + 0));
2485
+ }
2486
+ void Done14() {
2487
+ done_ = true;
2488
+ ok_ = false;
2489
+ }
2490
+ void DecodeStep14() {
2491
+ if (!RefillTo1()) {
2492
+ Done15();
2493
+ return;
2494
+ }
2495
+ const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
2496
+ const auto op = GetOp29(index);
2497
+ const int consumed = op & 1;
2498
+ buffer_len_ -= consumed;
2499
+ const auto emit_ofs = op >> 1;
2500
+ sink_(GetEmit29(index, emit_ofs + 0));
2501
+ }
2502
+ void Done15() {
2503
+ done_ = true;
2504
+ ok_ = false;
2505
+ }
2506
+ void DecodeStep15() {
2507
+ if (!RefillTo2()) {
2508
+ Done16();
2509
+ return;
2510
+ }
2511
+ const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
2512
+ const auto op = GetOp30(index);
767
2513
  const int consumed = op & 3;
768
2514
  buffer_len_ -= consumed;
769
2515
  const auto emit_ofs = op >> 2;
770
- sink_(GetEmit24(index, emit_ofs + 0));
2516
+ sink_(GetEmit30(index, emit_ofs + 0));
771
2517
  }
772
- bool RefillTo3() {
2518
+ bool RefillTo2() {
773
2519
  switch (buffer_len_) {
774
- case 0:
775
- case 1:
776
- case 2: {
777
- return Read1();
2520
+ case 0: {
2521
+ return Read1to8Bytes();
2522
+ }
2523
+ case 1: {
2524
+ return Read1to7Bytes();
778
2525
  }
779
2526
  }
780
2527
  return true;
781
2528
  }
782
- void Done11() {
2529
+ void Done16() {
783
2530
  done_ = true;
784
2531
  switch (buffer_len_) {
785
- case 0:
786
2532
  case 1:
787
- case 2: {
2533
+ case 0: {
788
2534
  ok_ = false;
789
2535
  return;
790
2536
  }
791
2537
  }
792
2538
  }
793
- void DecodeStep11() {
794
- if (!RefillTo4()) {
795
- Done12();
2539
+ void DecodeStep16() {
2540
+ if (!RefillTo2()) {
2541
+ Done17();
796
2542
  return;
797
2543
  }
798
- const auto index = (buffer_ >> (buffer_len_ - 4)) & 0xf;
799
- const auto op = GetOp25(index);
800
- const int consumed = op & 7;
2544
+ const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
2545
+ const auto op = GetOp31(index);
2546
+ const int consumed = op & 3;
801
2547
  buffer_len_ -= consumed;
802
- const auto emit_ofs = op >> 3;
803
- sink_(GetEmit25(index, emit_ofs + 0));
804
- }
805
- bool RefillTo4() {
806
- switch (buffer_len_) {
807
- case 0:
808
- case 1:
809
- case 2:
810
- case 3: {
811
- return Read1();
812
- }
813
- }
814
- return true;
2548
+ const auto emit_ofs = op >> 2;
2549
+ sink_(GetEmit31(index, emit_ofs + 0));
815
2550
  }
816
- void Done12() {
2551
+ void Done17() {
817
2552
  done_ = true;
818
2553
  switch (buffer_len_) {
819
- case 0:
820
2554
  case 1:
821
- case 2:
822
- case 3: {
2555
+ case 0: {
823
2556
  ok_ = false;
824
2557
  return;
825
2558
  }
826
2559
  }
827
2560
  }
828
- void DecodeStep12() {
2561
+ void DecodeStep17() {
829
2562
  if (!RefillTo5()) {
830
- Done13();
2563
+ Done18();
831
2564
  return;
832
2565
  }
833
2566
  const auto index = (buffer_ >> (buffer_len_ - 5)) & 0x1f;
834
- const auto op = GetOp26(index);
2567
+ const auto op = GetOp32(index);
835
2568
  const int consumed = op & 7;
836
2569
  buffer_len_ -= consumed;
837
- const auto emit_ofs = op >> 4;
838
- switch ((op >> 3) & 1) {
839
- case 1: {
840
- DecodeStep13();
841
- break;
842
- }
843
- case 0: {
844
- sink_(GetEmit26(index, emit_ofs + 0));
845
- break;
846
- }
847
- }
2570
+ const auto emit_ofs = op >> 3;
2571
+ sink_(GetEmit32(index, emit_ofs + 0));
848
2572
  }
849
2573
  bool RefillTo5() {
850
2574
  switch (buffer_len_) {
851
- case 0:
2575
+ case 0: {
2576
+ return Read1to8Bytes();
2577
+ }
852
2578
  case 1:
853
2579
  case 2:
854
2580
  case 3:
855
2581
  case 4: {
856
- return Read1();
2582
+ return Read1to7Bytes();
857
2583
  }
858
2584
  }
859
2585
  return true;
860
2586
  }
861
- void Done13() {
2587
+ void Done18() {
862
2588
  done_ = true;
863
2589
  switch (buffer_len_) {
2590
+ case 1:
2591
+ case 2:
2592
+ case 3:
2593
+ case 0: {
2594
+ ok_ = false;
2595
+ return;
2596
+ }
864
2597
  case 4: {
865
2598
  const auto index = buffer_ & 15;
866
- const auto op = GetOp27(index);
867
- switch (op & 3) {
868
- case 1: {
869
- ok_ = false;
2599
+ const auto op = GetOp33(index);
2600
+ switch (op & 1) {
2601
+ case 0: {
2602
+ sink_(GetEmit33(index, (op >> 1) + 0));
870
2603
  break;
871
2604
  }
872
- case 2: {
873
- sink_(GetEmit27(index, op >> 2));
2605
+ case 1: {
2606
+ ok_ = false;
874
2607
  break;
875
2608
  }
876
2609
  }
877
2610
  return;
878
2611
  }
879
- case 1:
880
- case 2:
881
- case 3: {
882
- ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
2612
+ }
2613
+ }
2614
+ void DecodeStep18() {
2615
+ if (!RefillTo2()) {
2616
+ Done19();
2617
+ return;
2618
+ }
2619
+ const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
2620
+ const auto op = GetOp34(index);
2621
+ const int consumed = op & 3;
2622
+ buffer_len_ -= consumed;
2623
+ const auto emit_ofs = op >> 2;
2624
+ sink_(GetEmit34(index, emit_ofs + 0));
2625
+ }
2626
+ void Done19() {
2627
+ done_ = true;
2628
+ switch (buffer_len_) {
2629
+ case 1: {
2630
+ const auto index = buffer_ & 1;
2631
+ const auto op = GetOp35(index);
2632
+ switch (op & 1) {
2633
+ case 0: {
2634
+ sink_(GetEmit35(index, (op >> 1) + 0));
2635
+ break;
2636
+ }
2637
+ case 1: {
2638
+ ok_ = false;
2639
+ break;
2640
+ }
2641
+ }
883
2642
  return;
884
2643
  }
885
2644
  case 0: {
2645
+ ok_ = false;
886
2646
  return;
887
2647
  }
888
2648
  }
889
2649
  }
890
- void DecodeStep13() {
891
- if (!RefillTo2()) {
892
- Done14();
2650
+ void DecodeStep19() {
2651
+ if (!RefillTo3()) {
2652
+ Done20();
893
2653
  return;
894
2654
  }
895
- const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
896
- const auto op = GetOp28(index);
2655
+ const auto index = (buffer_ >> (buffer_len_ - 3)) & 0x7;
2656
+ const auto op = GetOp36(index);
897
2657
  const int consumed = op & 3;
898
2658
  buffer_len_ -= consumed;
899
- const auto emit_ofs = op >> 3;
900
- switch ((op >> 2) & 1) {
901
- case 1: {
902
- begin_ = end_;
903
- buffer_len_ = 0;
904
- break;
905
- }
2659
+ const auto emit_ofs = op >> 2;
2660
+ sink_(GetEmit36(index, emit_ofs + 0));
2661
+ }
2662
+ bool RefillTo3() {
2663
+ switch (buffer_len_) {
906
2664
  case 0: {
907
- sink_(GetEmit28(index, emit_ofs + 0));
908
- break;
2665
+ return Read1to8Bytes();
2666
+ }
2667
+ case 1:
2668
+ case 2: {
2669
+ return Read1to7Bytes();
909
2670
  }
910
2671
  }
2672
+ return true;
911
2673
  }
912
- void Done14() {
2674
+ void Done20() {
913
2675
  done_ = true;
914
2676
  switch (buffer_len_) {
915
- case 1: {
916
- ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
2677
+ case 1:
2678
+ case 0: {
2679
+ ok_ = false;
917
2680
  return;
918
2681
  }
919
- case 0: {
2682
+ case 2: {
2683
+ const auto index = buffer_ & 3;
2684
+ const auto op = GetOp37(index);
2685
+ switch (op & 1) {
2686
+ case 0: {
2687
+ sink_(GetEmit37(index, (op >> 1) + 0));
2688
+ break;
2689
+ }
2690
+ case 1: {
2691
+ ok_ = false;
2692
+ break;
2693
+ }
2694
+ }
920
2695
  return;
921
2696
  }
922
2697
  }
923
2698
  }
924
- void DecodeStep14() {
925
- if (!RefillTo4()) {
926
- Done15();
2699
+ void DecodeStep20() {
2700
+ if (!RefillTo8()) {
2701
+ Done21();
927
2702
  return;
928
2703
  }
929
- const auto index = (buffer_ >> (buffer_len_ - 4)) & 0xf;
930
- const auto op = GetOp29(index);
931
- const int consumed = op & 7;
2704
+ const auto index = (buffer_ >> (buffer_len_ - 8)) & 0xff;
2705
+ const auto op = GetOp38(index);
2706
+ const int consumed = op & 15;
932
2707
  buffer_len_ -= consumed;
933
- const auto emit_ofs = op >> 3;
934
- sink_(GetEmit29(index, emit_ofs + 0));
2708
+ const auto emit_ofs = op >> 5;
2709
+ switch ((op >> 4) & 1) {
2710
+ case 0: {
2711
+ sink_(GetEmit38(index, emit_ofs + 0));
2712
+ break;
2713
+ }
2714
+ case 1: {
2715
+ begin_ = end_;
2716
+ buffer_len_ = 0;
2717
+ break;
2718
+ }
2719
+ }
935
2720
  }
936
- void Done15() {
2721
+ bool RefillTo8() {
2722
+ switch (buffer_len_) {
2723
+ case 0: {
2724
+ return Read1to8Bytes();
2725
+ }
2726
+ case 1:
2727
+ case 2:
2728
+ case 3:
2729
+ case 4:
2730
+ case 5:
2731
+ case 6:
2732
+ case 7: {
2733
+ return Read1to7Bytes();
2734
+ }
2735
+ }
2736
+ return true;
2737
+ }
2738
+ void Done21() {
937
2739
  done_ = true;
2740
+ switch (end_ - begin_) {}
938
2741
  switch (buffer_len_) {
939
- case 3: {
940
- const auto index = buffer_ & 7;
941
- const auto op = GetOp30(index);
2742
+ case 1:
2743
+ case 2:
2744
+ case 3:
2745
+ case 4: {
2746
+ ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
2747
+ return;
2748
+ }
2749
+ case 5: {
2750
+ const auto index = buffer_ & 31;
2751
+ const auto op = GetOp39(index);
942
2752
  switch (op & 3) {
2753
+ case 0: {
2754
+ sink_(GetEmit39(index, (op >> 2) + 0));
2755
+ break;
2756
+ }
943
2757
  case 1: {
944
2758
  ok_ = false;
945
2759
  break;
946
2760
  }
947
- case 2: {
948
- sink_(GetEmit30(index, op >> 2));
2761
+ }
2762
+ return;
2763
+ }
2764
+ case 6: {
2765
+ const auto index = buffer_ & 63;
2766
+ const auto op = GetOp40(index);
2767
+ switch (op & 3) {
2768
+ case 0: {
2769
+ ok_ = false;
2770
+ break;
2771
+ }
2772
+ case 1: {
2773
+ sink_(GetEmit40(index, (op >> 2) + 0));
949
2774
  break;
950
2775
  }
951
2776
  }
952
2777
  return;
953
2778
  }
954
- case 0:
955
- case 1:
956
- case 2: {
957
- ok_ = false;
2779
+ case 7: {
2780
+ const auto index = buffer_ & 127;
2781
+ const auto op = GetOp41(index);
2782
+ switch (op & 3) {
2783
+ case 0: {
2784
+ ok_ = false;
2785
+ break;
2786
+ }
2787
+ case 1: {
2788
+ sink_(GetEmit41(index, (op >> 2) + 0));
2789
+ break;
2790
+ }
2791
+ }
2792
+ return;
2793
+ }
2794
+ case 0: {
958
2795
  return;
959
2796
  }
960
2797
  }