grpc 1.71.0 → 1.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1444) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +96 -76
  3. data/include/grpc/event_engine/event_engine.h +125 -8
  4. data/include/grpc/event_engine/internal/write_event.h +34 -0
  5. data/include/grpc/event_engine/memory_request.h +3 -3
  6. data/include/grpc/impl/channel_arg_names.h +80 -52
  7. data/include/grpc/impl/compression_types.h +3 -2
  8. data/include/grpc/impl/slice_type.h +1 -1
  9. data/include/grpc/support/json.h +3 -21
  10. data/include/grpc/support/port_platform.h +8 -5
  11. data/include/grpc/support/workaround_list.h +1 -4
  12. data/src/core/{lib/transport → call}/call_arena_allocator.cc +1 -1
  13. data/src/core/{lib/transport → call}/call_arena_allocator.h +3 -3
  14. data/src/core/{lib/transport → call}/call_destination.h +4 -4
  15. data/src/core/{lib/transport → call}/call_filters.cc +2 -2
  16. data/src/core/{lib/transport → call}/call_filters.h +53 -25
  17. data/src/core/{lib/channel → call}/call_finalization.h +3 -3
  18. data/src/core/{lib/transport → call}/call_spine.cc +1 -1
  19. data/src/core/{lib/transport → call}/call_spine.h +70 -26
  20. data/src/core/{lib/transport → call}/call_state.cc +1 -1
  21. data/src/core/{lib/transport → call}/call_state.h +3 -3
  22. data/src/core/{lib/surface → call}/client_call.cc +9 -7
  23. data/src/core/{lib/surface → call}/client_call.h +4 -4
  24. data/src/core/{lib/transport → call}/custom_metadata.h +3 -3
  25. data/src/core/{lib/transport → call}/interception_chain.cc +5 -5
  26. data/src/core/{lib/transport → call}/interception_chain.h +7 -7
  27. data/src/core/{lib/transport → call}/message.cc +1 -1
  28. data/src/core/{lib/transport → call}/message.h +7 -3
  29. data/src/core/{lib/transport → call}/metadata.cc +2 -2
  30. data/src/core/{lib/transport → call}/metadata.h +21 -4
  31. data/src/core/{lib/transport → call}/metadata_batch.cc +1 -1
  32. data/src/core/{lib/transport → call}/metadata_batch.h +7 -7
  33. data/src/core/{lib/transport → call}/metadata_compression_traits.h +3 -3
  34. data/src/core/{lib/transport → call}/metadata_info.cc +27 -9
  35. data/src/core/{lib/transport → call}/metadata_info.h +4 -4
  36. data/src/core/{lib/transport → call}/parsed_metadata.cc +1 -1
  37. data/src/core/{lib/transport → call}/parsed_metadata.h +3 -3
  38. data/src/core/call/request_buffer.h +3 -3
  39. data/src/core/call/security_context.cc +125 -0
  40. data/src/core/call/security_context.h +114 -0
  41. data/src/core/{lib/surface → call}/server_call.cc +3 -3
  42. data/src/core/{lib/surface → call}/server_call.h +5 -5
  43. data/src/core/{lib/transport → call}/simple_slice_based_metadata.h +4 -4
  44. data/src/core/{lib/channel → call}/status_util.cc +1 -1
  45. data/src/core/{lib/channel → call}/status_util.h +3 -3
  46. data/src/core/channelz/channel_trace.cc +50 -42
  47. data/src/core/channelz/channel_trace.h +35 -4
  48. data/src/core/channelz/channelz.cc +338 -125
  49. data/src/core/channelz/channelz.h +276 -34
  50. data/src/core/channelz/channelz_registry.cc +322 -117
  51. data/src/core/channelz/channelz_registry.h +179 -21
  52. data/src/core/channelz/ztrace_collector.h +315 -0
  53. data/src/core/client_channel/client_channel.cc +54 -45
  54. data/src/core/client_channel/client_channel.h +4 -3
  55. data/src/core/client_channel/client_channel_filter.cc +31 -40
  56. data/src/core/client_channel/client_channel_filter.h +1 -3
  57. data/src/core/client_channel/client_channel_internal.h +1 -1
  58. data/src/core/client_channel/config_selector.h +2 -2
  59. data/src/core/client_channel/connector.h +0 -3
  60. data/src/core/client_channel/direct_channel.cc +2 -2
  61. data/src/core/client_channel/dynamic_filters.cc +0 -1
  62. data/src/core/client_channel/dynamic_filters.h +0 -1
  63. data/src/core/client_channel/global_subchannel_pool.cc +68 -7
  64. data/src/core/client_channel/global_subchannel_pool.h +37 -4
  65. data/src/core/client_channel/lb_metadata.h +1 -1
  66. data/src/core/client_channel/load_balanced_call_destination.cc +1 -1
  67. data/src/core/client_channel/load_balanced_call_destination.h +1 -1
  68. data/src/core/client_channel/retry_filter_legacy_call_data.cc +43 -41
  69. data/src/core/client_channel/retry_filter_legacy_call_data.h +6 -6
  70. data/src/core/client_channel/retry_interceptor.h +1 -1
  71. data/src/core/client_channel/retry_service_config.cc +1 -1
  72. data/src/core/client_channel/retry_service_config.h +1 -1
  73. data/src/core/client_channel/retry_throttle.cc +30 -34
  74. data/src/core/client_channel/retry_throttle.h +10 -2
  75. data/src/core/client_channel/subchannel.cc +14 -17
  76. data/src/core/client_channel/subchannel.h +3 -10
  77. data/src/core/client_channel/subchannel_pool_interface.cc +5 -6
  78. data/src/core/client_channel/subchannel_pool_interface.h +11 -1
  79. data/src/core/client_channel/subchannel_stream_client.cc +14 -11
  80. data/src/core/client_channel/subchannel_stream_client.h +2 -2
  81. data/src/core/config/config_vars.cc +11 -1
  82. data/src/core/config/config_vars.h +8 -0
  83. data/src/core/config/core_configuration.cc +50 -11
  84. data/src/core/config/core_configuration.h +91 -9
  85. data/src/core/credentials/call/call_credentials.h +157 -0
  86. data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.cc +4 -4
  87. data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.h +4 -4
  88. data/src/core/{lib/security/credentials/composite/composite_credentials.cc → credentials/call/composite/composite_call_credentials.cc} +4 -57
  89. data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
  90. data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.cc +2 -2
  91. data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.h +5 -5
  92. data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.cc +4 -3
  93. data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.h +3 -3
  94. data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.cc +6 -6
  95. data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.h +5 -5
  96. data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.cc +1 -1
  97. data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.h +4 -4
  98. data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.cc +5 -4
  99. data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.h +4 -4
  100. data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +4 -3
  101. data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.h +6 -6
  102. data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.cc +2 -2
  103. data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.h +4 -4
  104. data/src/core/{lib/security/util → credentials/call}/json_util.cc +1 -1
  105. data/src/core/{lib/security/util → credentials/call}/json_util.h +3 -3
  106. data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.cc +2 -2
  107. data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.h +3 -3
  108. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.cc +3 -3
  109. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.h +5 -5
  110. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.cc +7 -6
  111. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.h +3 -3
  112. data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.cc +8 -5
  113. data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.h +5 -5
  114. data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.cc +2 -2
  115. data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.h +5 -5
  116. data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.cc +1 -1
  117. data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.h +5 -5
  118. data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.cc +4 -4
  119. data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.h +5 -5
  120. data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.cc +13 -12
  121. data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.h +4 -4
  122. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.cc +1 -1
  123. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.h +3 -3
  124. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_linux.cc +1 -1
  125. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_no_op.cc +1 -1
  126. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_windows.cc +1 -1
  127. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_client_options.cc +1 -1
  128. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.cc +1 -1
  129. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.h +3 -3
  130. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_server_options.cc +1 -1
  131. data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry.h +4 -4
  132. data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry_init.cc +21 -17
  133. data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
  134. data/src/core/{lib/security/credentials/composite/composite_credentials.h → credentials/transport/composite/composite_channel_credentials.h} +6 -51
  135. data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.cc +4 -26
  136. data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.h +5 -37
  137. data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.cc +4 -4
  138. data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.h +4 -4
  139. data/src/core/{lib/security/credentials → credentials/transport}/google_default/credentials_generic.cc +2 -2
  140. data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.cc +34 -22
  141. data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.h +5 -5
  142. data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.cc +2 -2
  143. data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.h +5 -5
  144. data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.cc +2 -2
  145. data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.h +5 -5
  146. data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.cc +2 -2
  147. data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.h +5 -5
  148. data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.cc +4 -4
  149. data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.h +4 -4
  150. data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.cc +2 -2
  151. data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.h +3 -3
  152. data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.cc +4 -4
  153. data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.h +6 -6
  154. data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.cc +46 -16
  155. data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.h +6 -5
  156. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_factory.h +3 -3
  157. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.cc +1 -1
  158. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.h +4 -4
  159. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.cc +1 -1
  160. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.h +4 -4
  161. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_match.cc +1 -1
  162. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.cc +2 -2
  163. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.h +5 -5
  164. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.cc +2 -2
  165. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.h +3 -3
  166. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.cc +1 -1
  167. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.h +7 -7
  168. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.cc +1 -1
  169. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.h +3 -3
  170. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots.h +3 -3
  171. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_fallback.cc +1 -1
  172. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.cc +2 -2
  173. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.h +3 -3
  174. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_windows.cc +1 -1
  175. data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.cc +21 -3
  176. data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.h +9 -4
  177. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.cc +4 -4
  178. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.h +5 -5
  179. data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.cc +8 -7
  180. data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.h +6 -6
  181. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.cc +1 -1
  182. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.h +3 -3
  183. data/src/core/{lib/security/credentials/credentials.cc → credentials/transport/transport_credentials.cc} +1 -3
  184. data/src/core/{lib/security/credentials/credentials.h → credentials/transport/transport_credentials.h} +5 -121
  185. data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.cc +5 -5
  186. data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.h +6 -6
  187. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
  188. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +14 -8
  189. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +2 -2
  190. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  191. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +2 -2
  192. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +1 -1
  193. data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
  194. data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
  195. data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -1
  196. data/src/core/ext/filters/http/message_compress/compression_filter.h +35 -5
  197. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -2
  198. data/src/core/ext/filters/http/server/http_server_filter.h +14 -3
  199. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
  200. data/src/core/ext/filters/rbac/rbac_filter.cc +2 -2
  201. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -1
  202. data/src/core/ext/transport/chttp2/chttp2_plugin.cc +40 -0
  203. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +14 -115
  204. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +3 -0
  205. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +39 -965
  206. data/src/core/ext/transport/chttp2/server/chttp2_server.h +10 -2
  207. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
  208. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +1 -3
  209. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +185 -102
  210. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +0 -3
  211. data/src/core/ext/transport/chttp2/transport/flow_control.h +18 -0
  212. data/src/core/ext/transport/chttp2/transport/frame.cc +300 -171
  213. data/src/core/ext/transport/chttp2/transport/frame.h +113 -5
  214. data/src/core/ext/transport/chttp2/transport/frame_data.cc +12 -0
  215. data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -0
  216. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +15 -3
  217. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +5 -3
  218. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -0
  219. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -7
  220. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +3 -1
  221. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +23 -3
  222. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -0
  223. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +7 -0
  224. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -2
  225. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +1 -1
  226. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
  227. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
  228. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
  229. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +10 -8
  230. data/src/core/ext/transport/chttp2/transport/http2_settings.h +28 -2
  231. data/src/core/ext/transport/chttp2/transport/http2_status.h +409 -0
  232. data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +252 -0
  233. data/src/core/ext/transport/chttp2/transport/internal.h +41 -20
  234. data/src/core/ext/transport/chttp2/transport/internal_channel_arg_names.h +24 -0
  235. data/src/core/ext/transport/chttp2/transport/parsing.cc +57 -29
  236. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +10 -9
  237. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -0
  238. data/src/core/ext/transport/chttp2/transport/writing.cc +69 -57
  239. data/src/core/ext/transport/inproc/inproc_transport.cc +8 -3
  240. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +7 -3
  241. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +4 -0
  242. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +65 -65
  243. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +28 -28
  244. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +14 -14
  245. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +6 -6
  246. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +6 -6
  247. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
  248. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +133 -133
  249. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +71 -71
  250. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +38 -26
  251. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +7 -7
  252. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +228 -240
  253. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +66 -66
  254. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +27 -27
  255. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -9
  256. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +338 -350
  257. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +103 -103
  258. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +58 -58
  259. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +14 -14
  260. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +50 -46
  261. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +3 -3
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +41 -29
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +16 -16
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +210 -259
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +54 -54
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +58 -54
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -21
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +4 -0
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +88 -92
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +17 -17
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +112 -100
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +34 -34
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +16 -12
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +5 -5
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +126 -118
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +39 -39
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +23 -19
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +9 -9
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +31 -27
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +10 -10
  281. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +12 -37
  282. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +2 -2
  283. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +49 -41
  284. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +16 -16
  285. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +24 -24
  286. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +9 -9
  287. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +147 -139
  288. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +46 -46
  289. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +73 -61
  290. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +20 -20
  291. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +3 -3
  292. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +1 -1
  293. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +6 -6
  294. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -4
  295. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +53 -33
  296. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +14 -14
  297. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +12 -0
  298. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +20 -36
  299. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +2 -2
  300. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +52 -77
  301. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +10 -10
  302. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +684 -692
  303. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +215 -215
  304. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -13
  305. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +4 -4
  306. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +15 -3
  307. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +2 -2
  308. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +4 -0
  309. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +7 -7
  310. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -3
  311. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +19 -15
  312. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +7 -7
  313. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +7 -7
  314. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +3 -3
  315. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +16 -16
  316. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -10
  317. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +310 -407
  318. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +96 -96
  319. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +8 -0
  320. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +65 -61
  321. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -27
  322. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +19 -19
  323. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +6 -6
  324. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +25 -25
  325. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +9 -9
  326. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +34 -34
  327. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +9 -9
  328. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +7 -3
  329. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +2 -2
  330. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +322 -294
  331. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +105 -105
  332. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +7 -3
  333. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +1 -1
  334. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +23 -23
  335. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +8 -8
  336. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +88 -84
  337. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +28 -28
  338. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +4 -0
  339. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +99 -87
  340. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +31 -31
  341. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +32 -24
  342. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +5 -5
  343. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +138 -168
  344. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +43 -43
  345. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +6 -6
  346. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +2 -2
  347. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +64 -60
  348. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +26 -26
  349. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -7
  350. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -3
  351. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +4 -0
  352. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +4 -0
  353. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +10 -6
  354. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +2 -2
  355. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +4 -0
  356. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +4 -0
  357. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +11 -7
  358. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +3 -3
  359. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +4 -0
  360. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +4 -0
  361. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +8 -0
  362. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +8 -0
  363. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +15 -11
  364. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +4 -4
  365. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +4 -0
  366. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +4 -0
  367. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +93 -133
  368. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +20 -20
  369. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +92 -123
  370. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +27 -27
  371. data/src/core/ext/upb-gen/google/api/http.upb.h +55 -51
  372. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -22
  373. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +516 -317
  374. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +150 -100
  375. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +5 -0
  376. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +13 -33
  377. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +9 -28
  378. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +199 -142
  379. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +37 -31
  380. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +154 -0
  381. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +40 -2
  382. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -0
  383. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +14 -6
  384. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +4 -4
  385. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +21 -40
  386. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +3 -3
  387. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +70 -108
  388. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +17 -17
  389. data/src/core/ext/upb-gen/validate/validate.upb.h +380 -368
  390. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +117 -117
  391. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +4 -0
  392. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +9 -28
  393. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +7 -7
  394. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -3
  395. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +20 -12
  396. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +2 -2
  397. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +27 -84
  398. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +7 -7
  399. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -3
  400. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +3 -3
  401. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +1 -1
  402. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +42 -46
  403. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +3 -3
  404. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +4 -0
  405. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +4 -0
  406. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +4 -0
  407. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +123 -62
  408. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -1
  409. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +200 -101
  410. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -1
  411. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +152 -77
  412. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -1
  413. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +524 -255
  414. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -1
  415. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +44 -23
  416. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -1
  417. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +66 -34
  418. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -1
  419. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +54 -28
  420. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -1
  421. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +46 -25
  422. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -1
  423. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +47 -25
  424. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -1
  425. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +256 -126
  426. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -1
  427. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +50 -28
  428. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -1
  429. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +55 -28
  430. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -1
  431. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +34 -18
  432. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -1
  433. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +414 -206
  434. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -1
  435. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +831 -413
  436. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -1
  437. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +143 -73
  438. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -1
  439. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1132 -557
  440. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +5 -1
  441. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +63 -34
  442. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -1
  443. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +255 -127
  444. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -1
  445. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +363 -178
  446. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -1
  447. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +227 -114
  448. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -1
  449. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +57 -31
  450. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -1
  451. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +596 -295
  452. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +5 -1
  453. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +271 -137
  454. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -1
  455. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +56 -30
  456. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -1
  457. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +45 -25
  458. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -1
  459. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +59 -31
  460. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -1
  461. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +438 -217
  462. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -1
  463. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +441 -221
  464. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -1
  465. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +55 -30
  466. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -1
  467. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +57 -31
  468. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -1
  469. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +619 -303
  470. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -1
  471. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +70 -36
  472. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -1
  473. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +62 -33
  474. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -1
  475. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +47 -25
  476. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +5 -1
  477. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +97 -49
  478. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +5 -1
  479. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +97 -51
  480. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -1
  481. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +51 -27
  482. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -1
  483. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +147 -76
  484. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -1
  485. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +230 -116
  486. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -1
  487. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +277 -138
  488. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +5 -1
  489. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +48 -26
  490. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -1
  491. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +388 -197
  492. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -1
  493. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +304 -153
  494. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -1
  495. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +173 -90
  496. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -1
  497. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +90 -47
  498. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -1
  499. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +98 -51
  500. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -1
  501. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +196 -99
  502. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -1
  503. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +237 -118
  504. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -1
  505. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +418 -210
  506. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +5 -1
  507. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +194 -99
  508. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -1
  509. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +2003 -973
  510. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +5 -1
  511. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +101 -53
  512. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -1
  513. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +352 -176
  514. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -1
  515. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +79 -42
  516. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +5 -1
  517. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +67 -37
  518. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -1
  519. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +63 -34
  520. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -1
  521. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +88 -47
  522. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -1
  523. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +80 -43
  524. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -1
  525. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +53 -29
  526. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -1
  527. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +86 -46
  528. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -1
  529. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +55 -32
  530. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -1
  531. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +91 -49
  532. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -1
  533. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +105 -55
  534. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -1
  535. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +775 -379
  536. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -1
  537. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +52 -28
  538. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -1
  539. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +134 -68
  540. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -1
  541. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +189 -96
  542. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -1
  543. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +116 -61
  544. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +5 -1
  545. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +112 -58
  546. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -1
  547. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +160 -82
  548. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -1
  549. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +75 -39
  550. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -1
  551. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1161 -570
  552. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -1
  553. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +52 -28
  554. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -1
  555. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +55 -29
  556. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +5 -1
  557. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -26
  558. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -1
  559. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +390 -194
  560. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +5 -1
  561. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +126 -65
  562. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -1
  563. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +498 -246
  564. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -1
  565. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +74 -38
  566. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -1
  567. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +221 -110
  568. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -1
  569. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +68 -36
  570. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -1
  571. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +378 -187
  572. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +5 -1
  573. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +100 -52
  574. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -1
  575. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +257 -129
  576. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -1
  577. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +44 -24
  578. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -1
  579. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +68 -35
  580. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -1
  581. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +38 -20
  582. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +5 -1
  583. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +59 -32
  584. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -1
  585. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +65 -34
  586. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -1
  587. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +72 -38
  588. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -1
  589. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +57 -31
  590. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -1
  591. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +52 -29
  592. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -1
  593. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +51 -28
  594. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -1
  595. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +89 -47
  596. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -1
  597. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +37 -20
  598. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -1
  599. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +89 -47
  600. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -1
  601. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +67 -35
  602. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -1
  603. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +112 -58
  604. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -1
  605. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +110 -56
  606. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -1
  607. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +123 -62
  608. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -1
  609. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +59 -31
  610. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -1
  611. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +30 -16
  612. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -1
  613. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +143 -72
  614. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -1
  615. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +61 -32
  616. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -1
  617. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +51 -27
  618. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -1
  619. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +85 -45
  620. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -1
  621. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +35 -19
  622. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -1
  623. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +44 -23
  624. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -1
  625. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +61 -33
  626. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -1
  627. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +35 -19
  628. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -1
  629. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +272 -133
  630. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -1
  631. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +315 -154
  632. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +5 -1
  633. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +64 -33
  634. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -1
  635. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +35 -19
  636. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -1
  637. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +26 -15
  638. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -1
  639. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +1106 -497
  640. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +10 -1
  641. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +28 -16
  642. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -1
  643. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +23 -13
  644. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -1
  645. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +69 -35
  646. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -1
  647. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +29 -16
  648. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -1
  649. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +51 -26
  650. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -1
  651. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +32 -17
  652. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -1
  653. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +161 -79
  654. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -1
  655. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +84 -42
  656. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -1
  657. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +48 -26
  658. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -1
  659. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +26 -14
  660. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -1
  661. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +50 -26
  662. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -1
  663. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +36 -19
  664. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -1
  665. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +538 -261
  666. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -1
  667. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +86 -43
  668. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -1
  669. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +49 -26
  670. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -1
  671. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +27 -15
  672. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -1
  673. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +87 -44
  674. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -1
  675. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +37 -20
  676. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -1
  677. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +30 -17
  678. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -1
  679. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +41 -23
  680. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -1
  681. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +62 -33
  682. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -1
  683. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +36 -19
  684. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -1
  685. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +36 -20
  686. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -1
  687. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +42 -23
  688. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -1
  689. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +76 -39
  690. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -1
  691. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +45 -24
  692. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -1
  693. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +41 -23
  694. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -1
  695. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +53 -29
  696. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -1
  697. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +29 -16
  698. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -1
  699. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +58 -32
  700. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -1
  701. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +207 -103
  702. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -1
  703. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +95 -49
  704. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -1
  705. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +38 -20
  706. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -1
  707. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +60 -31
  708. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -1
  709. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +67 -36
  710. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -1
  711. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +31 -17
  712. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -1
  713. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +31 -17
  714. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -1
  715. data/src/core/{lib/security/transport → filter/auth}/auth_filters.h +8 -7
  716. data/src/core/{lib/security/transport → filter/auth}/client_auth_filter.cc +7 -6
  717. data/src/core/{lib/security/transport → filter/auth}/server_auth_filter.cc +5 -4
  718. data/src/core/handshaker/handshaker.cc +0 -8
  719. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +7 -22
  720. data/src/core/handshaker/security/legacy_secure_endpoint.cc +596 -0
  721. data/src/core/handshaker/security/secure_endpoint.cc +769 -312
  722. data/src/core/handshaker/security/secure_endpoint.h +17 -0
  723. data/src/core/handshaker/security/security_handshaker.cc +4 -4
  724. data/src/core/handshaker/security/security_handshaker.h +1 -1
  725. data/src/core/lib/address_utils/sockaddr_utils.cc +5 -5
  726. data/src/core/lib/channel/channel_args.h +53 -30
  727. data/src/core/lib/channel/channel_stack.cc +29 -0
  728. data/src/core/lib/channel/channel_stack.h +10 -2
  729. data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -1
  730. data/src/core/lib/channel/connected_channel.cc +2 -2
  731. data/src/core/lib/channel/promise_based_filter.h +710 -302
  732. data/src/core/lib/debug/trace_flags.cc +4 -6
  733. data/src/core/lib/debug/trace_flags.h +2 -3
  734. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +6 -2
  735. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +4 -4
  736. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +14 -6
  737. data/src/core/lib/event_engine/default_event_engine_factory.cc +6 -6
  738. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -1
  739. data/src/core/lib/event_engine/extensions/blocking_dns.h +46 -0
  740. data/src/core/lib/event_engine/extensions/channelz.h +62 -0
  741. data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
  742. data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
  743. data/src/core/lib/event_engine/extensions/tcp_trace.h +2 -2
  744. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +4 -7
  745. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +3 -0
  746. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +6 -9
  747. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +28 -22
  748. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +23 -3
  749. data/src/core/lib/event_engine/posix_engine/posix_engine.h +15 -15
  750. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +26 -0
  751. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +4 -0
  752. data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
  753. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +0 -11
  754. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +10 -2
  755. data/src/core/lib/event_engine/query_extensions.h +10 -21
  756. data/src/core/lib/event_engine/shim.cc +9 -16
  757. data/src/core/lib/event_engine/shim.h +11 -0
  758. data/src/core/lib/event_engine/tcp_socket_utils.cc +10 -9
  759. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +15 -7
  760. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +2 -1
  761. data/src/core/lib/event_engine/utils.cc +34 -0
  762. data/src/core/lib/event_engine/utils.h +3 -0
  763. data/src/core/lib/event_engine/windows/win_socket.cc +11 -0
  764. data/src/core/lib/event_engine/windows/win_socket.h +3 -0
  765. data/src/core/lib/event_engine/windows/windows_endpoint.cc +7 -12
  766. data/src/core/lib/event_engine/windows/windows_endpoint.h +9 -2
  767. data/src/core/lib/event_engine/windows/windows_engine.cc +42 -0
  768. data/src/core/lib/event_engine/windows/windows_engine.h +8 -2
  769. data/src/core/lib/event_engine/windows/windows_listener.cc +5 -6
  770. data/src/core/lib/event_engine/windows/windows_listener.h +9 -4
  771. data/src/core/lib/experiments/experiments.cc +369 -69
  772. data/src/core/lib/experiments/experiments.h +148 -48
  773. data/src/core/lib/iomgr/combiner.cc +3 -2
  774. data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
  775. data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
  776. data/src/core/lib/iomgr/error.cc +27 -43
  777. data/src/core/lib/iomgr/ev_epoll1_linux.cc +13 -1
  778. data/src/core/lib/iomgr/ev_poll_posix.cc +17 -0
  779. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +11 -8
  780. data/src/core/lib/iomgr/fork_posix.cc +0 -7
  781. data/src/core/lib/iomgr/iomgr.cc +0 -3
  782. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +3 -0
  783. data/src/core/lib/iomgr/polling_entity.cc +2 -7
  784. data/src/core/lib/iomgr/resolve_address_posix.cc +37 -47
  785. data/src/core/lib/iomgr/resolve_address_posix.h +15 -0
  786. data/src/core/lib/iomgr/resolve_address_windows.cc +22 -45
  787. data/src/core/lib/iomgr/resolve_address_windows.h +15 -2
  788. data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
  789. data/src/core/lib/iomgr/socket_utils_posix.cc +22 -11
  790. data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
  791. data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
  792. data/src/core/lib/iomgr/tcp_client_posix.cc +25 -21
  793. data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
  794. data/src/core/lib/iomgr/tcp_posix.cc +72 -43
  795. data/src/core/lib/iomgr/tcp_posix.h +10 -2
  796. data/src/core/lib/iomgr/tcp_server_posix.cc +9 -1
  797. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
  798. data/src/core/lib/iomgr/tcp_server_windows.cc +41 -18
  799. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +10 -2
  800. data/src/core/lib/promise/all_ok.h +31 -0
  801. data/src/core/lib/promise/detail/promise_like.h +24 -0
  802. data/src/core/lib/promise/detail/seq_state.h +741 -0
  803. data/src/core/lib/promise/loop.h +8 -5
  804. data/src/core/lib/promise/map.h +82 -2
  805. data/src/core/lib/promise/party.h +5 -1
  806. data/src/core/lib/promise/poll.h +22 -20
  807. data/src/core/lib/promise/promise.h +4 -2
  808. data/src/core/lib/promise/seq.h +2 -0
  809. data/src/core/lib/promise/sleep.cc +6 -3
  810. data/src/core/lib/promise/status_flag.h +23 -11
  811. data/src/core/lib/promise/try_seq.h +2 -0
  812. data/src/core/lib/resource_quota/memory_quota.cc +9 -0
  813. data/src/core/lib/resource_quota/memory_quota.h +1 -3
  814. data/src/core/lib/security/authorization/evaluate_args.cc +1 -1
  815. data/src/core/lib/security/authorization/evaluate_args.h +1 -1
  816. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -1
  817. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
  818. data/src/core/lib/slice/slice.h +6 -0
  819. data/src/core/lib/slice/slice_buffer.h +6 -0
  820. data/src/core/lib/surface/call.cc +24 -18
  821. data/src/core/lib/surface/call_utils.cc +3 -3
  822. data/src/core/lib/surface/call_utils.h +3 -3
  823. data/src/core/lib/surface/channel.h +2 -2
  824. data/src/core/lib/surface/channel_create.cc +61 -1
  825. data/src/core/lib/surface/channel_init.h +2 -2
  826. data/src/core/lib/surface/completion_queue.cc +77 -17
  827. data/src/core/lib/surface/filter_stack_call.cc +40 -27
  828. data/src/core/lib/surface/filter_stack_call.h +1 -1
  829. data/src/core/lib/surface/init.cc +4 -5
  830. data/src/core/lib/surface/lame_client.cc +1 -1
  831. data/src/core/lib/surface/legacy_channel.cc +27 -23
  832. data/src/core/lib/surface/legacy_channel.h +1 -1
  833. data/src/core/lib/surface/version.cc +2 -2
  834. data/src/core/lib/transport/error_utils.cc +65 -11
  835. data/src/core/lib/transport/error_utils.h +2 -2
  836. data/src/core/lib/transport/status_conversion.cc +11 -36
  837. data/src/core/lib/transport/status_conversion.h +5 -4
  838. data/src/core/lib/transport/transport.cc +2 -2
  839. data/src/core/lib/transport/transport.h +8 -5
  840. data/src/core/lib/transport/transport_op_string.cc +1 -1
  841. data/src/core/load_balancing/backend_metric_parser.cc +12 -18
  842. data/src/core/load_balancing/delegating_helper.h +1 -1
  843. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -1
  844. data/src/core/load_balancing/grpclb/grpclb.cc +3 -4
  845. data/src/core/load_balancing/health_check_client.cc +2 -4
  846. data/src/core/load_balancing/oob_backend_metric.cc +2 -4
  847. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +4 -3
  848. data/src/core/load_balancing/pick_first/pick_first.cc +3 -958
  849. data/src/core/load_balancing/rls/rls.cc +37 -42
  850. data/src/core/load_balancing/round_robin/round_robin.cc +2 -3
  851. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +4 -4
  852. data/src/core/load_balancing/weighted_target/weighted_target.cc +4 -10
  853. data/src/core/load_balancing/xds/cds.cc +3 -10
  854. data/src/core/load_balancing/xds/xds_cluster_impl.cc +1 -1
  855. data/src/core/load_balancing/xds/xds_override_host.cc +55 -34
  856. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  857. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -2
  858. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +1 -3
  859. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
  860. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +1 -1
  861. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +2 -1
  862. data/src/core/resolver/xds/xds_dependency_manager.cc +8 -3
  863. data/src/core/resolver/xds/xds_resolver.cc +4 -3
  864. data/src/core/server/add_port.cc +87 -0
  865. data/src/core/server/server.cc +55 -57
  866. data/src/core/server/server.h +4 -6
  867. data/src/core/server/server_call_tracer_filter.cc +1 -1
  868. data/src/core/server/server_config_selector.h +1 -1
  869. data/src/core/server/server_config_selector_filter.cc +1 -1
  870. data/src/core/server/xds_server_config_fetcher.cc +5 -5
  871. data/src/core/service_config/service_config_channel_arg_filter.cc +1 -1
  872. data/src/core/telemetry/call_tracer.cc +4 -6
  873. data/src/core/telemetry/call_tracer.h +4 -4
  874. data/src/core/{ext/transport/chttp2/transport → telemetry}/context_list_entry.h +6 -6
  875. data/src/core/telemetry/default_tcp_tracer.cc +26 -0
  876. data/src/core/telemetry/default_tcp_tracer.h +44 -0
  877. data/src/core/telemetry/metrics.cc +30 -12
  878. data/src/core/telemetry/metrics.h +15 -3
  879. data/src/core/telemetry/stats.h +0 -5
  880. data/src/core/telemetry/stats_data.cc +400 -285
  881. data/src/core/telemetry/stats_data.h +279 -143
  882. data/src/core/telemetry/tcp_tracer.cc +38 -0
  883. data/src/core/telemetry/tcp_tracer.h +103 -99
  884. data/src/core/{lib/security/context/security_context.cc → transport/auth_context.cc} +1 -97
  885. data/src/core/{lib/security/context/security_context.h → transport/auth_context.h} +5 -76
  886. data/src/core/transport/endpoint_transport.h +90 -0
  887. data/src/core/transport/endpoint_transport_client_channel_factory.cc +61 -0
  888. data/src/core/transport/endpoint_transport_client_channel_factory.h +57 -0
  889. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +33 -1
  890. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +3 -1
  891. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +76 -22
  892. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -3
  893. data/src/core/tsi/ssl_transport_security.cc +190 -72
  894. data/src/core/tsi/ssl_transport_security.h +6 -1
  895. data/src/core/tsi/transport_security.h +3 -0
  896. data/src/core/tsi/transport_security_grpc.h +7 -3
  897. data/src/core/tsi/transport_security_interface.h +30 -25
  898. data/src/core/util/backoff.cc +7 -14
  899. data/src/core/util/backoff.h +0 -1
  900. data/src/core/util/check_class_size.h +48 -0
  901. data/src/core/util/dual_ref_counted.h +48 -0
  902. data/src/core/util/function_signature.h +66 -0
  903. data/src/core/util/gcp_metadata_query.cc +4 -3
  904. data/src/core/util/http_client/httpcli.cc +3 -3
  905. data/src/core/util/http_client/httpcli_security_connector.cc +5 -4
  906. data/src/core/util/json/json_object_loader.h +3 -3
  907. data/src/core/util/latent_see.cc +28 -2
  908. data/src/core/util/latent_see.h +11 -23
  909. data/src/core/util/linux/env.cc +3 -1
  910. data/src/core/util/load_file.cc +26 -14
  911. data/src/core/util/ref_counted_ptr.h +26 -0
  912. data/src/core/util/shared_bit_gen.cc +21 -0
  913. data/src/core/util/shared_bit_gen.h +44 -0
  914. data/src/core/util/single_set_ptr.h +35 -4
  915. data/src/core/util/status_helper.cc +86 -63
  916. data/src/core/util/status_helper.h +9 -26
  917. data/src/core/util/uri.cc +75 -17
  918. data/src/core/util/uri.h +13 -8
  919. data/src/core/xds/grpc/certificate_provider_store.cc +1 -1
  920. data/src/core/xds/grpc/certificate_provider_store.h +3 -3
  921. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +3 -3
  922. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
  923. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +10 -7
  924. data/src/core/xds/grpc/xds_certificate_provider.cc +1 -1
  925. data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
  926. data/src/core/xds/grpc/xds_client_grpc.cc +7 -6
  927. data/src/core/xds/grpc/xds_client_grpc.h +4 -2
  928. data/src/core/xds/grpc/xds_cluster.h +3 -3
  929. data/src/core/xds/grpc/xds_cluster_parser.cc +3 -2
  930. data/src/core/xds/grpc/xds_common_types_parser.cc +1 -9
  931. data/src/core/xds/grpc/xds_http_fault_filter.cc +1 -1
  932. data/src/core/xds/grpc/xds_http_filter.h +1 -1
  933. data/src/core/xds/grpc/xds_http_filter_registry.cc +1 -3
  934. data/src/core/xds/grpc/xds_http_filter_registry.h +1 -1
  935. data/src/core/xds/grpc/xds_http_rbac_filter.cc +10 -17
  936. data/src/core/xds/grpc/xds_metadata_parser.cc +40 -64
  937. data/src/core/xds/grpc/xds_metadata_parser.h +0 -2
  938. data/src/core/xds/grpc/xds_route_config.h +1 -1
  939. data/src/core/xds/grpc/xds_route_config_parser.cc +56 -78
  940. data/src/core/xds/grpc/xds_route_config_parser.h +1 -1
  941. data/src/core/xds/grpc/xds_routing.h +1 -1
  942. data/src/core/xds/grpc/xds_server_grpc.cc +60 -48
  943. data/src/core/xds/grpc/xds_server_grpc.h +23 -13
  944. data/src/core/xds/grpc/xds_server_grpc_interface.h +2 -2
  945. data/src/core/xds/grpc/xds_transport_grpc.cc +5 -5
  946. data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
  947. data/src/core/xds/xds_client/lrs_client.cc +6 -5
  948. data/src/core/xds/xds_client/lrs_client.h +7 -7
  949. data/src/core/xds/xds_client/xds_bootstrap.h +16 -1
  950. data/src/core/xds/xds_client/xds_client.cc +26 -24
  951. data/src/core/xds/xds_client/xds_client.h +3 -1
  952. data/src/core/xds/xds_client/xds_resource_type.h +1 -2
  953. data/src/core/xds/xds_client/xds_transport.h +1 -1
  954. data/src/ruby/ext/grpc/extconf.rb +2 -2
  955. data/src/ruby/lib/grpc/version.rb +1 -1
  956. data/src/ruby/spec/generic/client_stub_spec.rb +2 -6
  957. data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
  958. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +2 -2
  959. data/third_party/abseil-cpp/absl/algorithm/container.h +79 -48
  960. data/third_party/abseil-cpp/absl/base/attributes.h +66 -16
  961. data/third_party/abseil-cpp/absl/base/call_once.h +8 -5
  962. data/third_party/abseil-cpp/absl/base/config.h +4 -4
  963. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +17 -56
  964. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +1 -1
  965. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -0
  966. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +5 -1
  967. data/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
  968. data/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
  969. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -10
  970. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +12 -0
  971. data/third_party/abseil-cpp/absl/base/macros.h +35 -4
  972. data/third_party/abseil-cpp/absl/base/nullability.h +72 -16
  973. data/third_party/abseil-cpp/absl/base/optimization.h +8 -12
  974. data/third_party/abseil-cpp/absl/base/options.h +5 -2
  975. data/third_party/abseil-cpp/absl/base/policy_checks.h +2 -0
  976. data/third_party/abseil-cpp/absl/container/btree_map.h +889 -0
  977. data/third_party/abseil-cpp/absl/container/btree_set.h +824 -0
  978. data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -1
  979. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +17 -3
  980. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +17 -3
  981. data/third_party/abseil-cpp/absl/container/inlined_vector.h +2 -1
  982. data/third_party/abseil-cpp/absl/container/internal/btree.h +3046 -0
  983. data/third_party/abseil-cpp/absl/container/internal/btree_container.h +763 -0
  984. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +9 -0
  985. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -0
  986. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +4 -2
  987. data/third_party/abseil-cpp/absl/container/internal/layout.h +1 -1
  988. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +142 -114
  989. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +397 -231
  990. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +56 -0
  991. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +21 -7
  992. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +4 -2
  993. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +1 -1
  994. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +17 -1
  995. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +7 -0
  996. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +9 -6
  997. data/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
  998. data/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
  999. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +3 -2
  1000. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +48 -9
  1001. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +1 -0
  1002. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +7 -0
  1003. data/third_party/abseil-cpp/absl/flags/flag.h +14 -12
  1004. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +12 -4
  1005. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -5
  1006. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +4 -0
  1007. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +3 -0
  1008. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +13 -12
  1009. data/third_party/abseil-cpp/absl/flags/usage_config.cc +9 -4
  1010. data/third_party/abseil-cpp/absl/hash/hash.h +26 -2
  1011. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +17 -17
  1012. data/third_party/abseil-cpp/absl/hash/internal/hash.h +196 -91
  1013. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +2 -4
  1014. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +2 -0
  1015. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +27 -22
  1016. data/third_party/abseil-cpp/absl/log/internal/check_op.h +102 -80
  1017. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +90 -38
  1018. data/third_party/abseil-cpp/absl/log/internal/log_message.h +80 -48
  1019. data/third_party/abseil-cpp/absl/log/internal/proto.cc +0 -3
  1020. data/third_party/abseil-cpp/absl/log/internal/proto.h +25 -15
  1021. data/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
  1022. data/third_party/abseil-cpp/absl/log/internal/structured_proto.h +107 -0
  1023. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +8 -1
  1024. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +5 -2
  1025. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +2 -0
  1026. data/third_party/abseil-cpp/absl/meta/type_traits.h +16 -6
  1027. data/third_party/abseil-cpp/absl/numeric/int128.h +15 -3
  1028. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +6 -4
  1029. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +6 -3
  1030. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +3 -1
  1031. data/third_party/abseil-cpp/absl/random/beta_distribution.h +3 -1
  1032. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +2 -1
  1033. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +10 -0
  1034. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +4 -2
  1035. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +1 -0
  1036. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +2 -1
  1037. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +3 -1
  1038. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +5 -2
  1039. data/third_party/abseil-cpp/absl/random/internal/platform.h +12 -12
  1040. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +56 -5
  1041. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +2 -1
  1042. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +2 -2
  1043. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +0 -1
  1044. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +1 -4
  1045. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +4 -3
  1046. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +2 -3
  1047. data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -2
  1048. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -1
  1049. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +2 -0
  1050. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +5 -4
  1051. data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +8 -4
  1052. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +1 -1
  1053. data/third_party/abseil-cpp/absl/status/status.h +1 -1
  1054. data/third_party/abseil-cpp/absl/strings/ascii.cc +41 -26
  1055. data/third_party/abseil-cpp/absl/strings/ascii.h +48 -8
  1056. data/third_party/abseil-cpp/absl/strings/charconv.cc +4 -7
  1057. data/third_party/abseil-cpp/absl/strings/charset.h +3 -4
  1058. data/third_party/abseil-cpp/absl/strings/cord.h +5 -19
  1059. data/third_party/abseil-cpp/absl/strings/escaping.cc +56 -48
  1060. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +1 -1
  1061. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +48 -15
  1062. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +3 -2
  1063. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -0
  1064. data/third_party/abseil-cpp/absl/strings/match.h +21 -11
  1065. data/third_party/abseil-cpp/absl/strings/numbers.cc +2 -1
  1066. data/third_party/abseil-cpp/absl/strings/str_cat.h +11 -0
  1067. data/third_party/abseil-cpp/absl/strings/str_split.h +18 -1
  1068. data/third_party/abseil-cpp/absl/strings/string_view.h +20 -19
  1069. data/third_party/abseil-cpp/absl/strings/strip.h +11 -8
  1070. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +16 -10
  1071. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +6 -0
  1072. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -1
  1073. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +38 -12
  1074. data/third_party/abseil-cpp/absl/synchronization/notification.cc +10 -2
  1075. data/third_party/abseil-cpp/absl/synchronization/notification.h +11 -1
  1076. data/third_party/abseil-cpp/absl/time/duration.cc +6 -51
  1077. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1078. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
  1079. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +3 -3
  1080. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +2 -2
  1081. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +2 -2
  1082. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +3 -3
  1083. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +2 -2
  1084. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  1085. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +1 -1
  1086. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +3 -2
  1087. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +1 -1
  1088. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -4
  1089. data/third_party/abseil-cpp/absl/time/time.h +84 -23
  1090. data/third_party/abseil-cpp/absl/types/internal/span.h +3 -2
  1091. data/third_party/abseil-cpp/absl/types/optional.h +4 -2
  1092. data/third_party/abseil-cpp/absl/types/span.h +85 -43
  1093. data/third_party/boringssl-with-bazel/src/crypto/aes/aes.cc +41 -0
  1094. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +16 -0
  1095. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +15 -0
  1096. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +19 -3
  1097. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +79 -48
  1098. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +11 -19
  1099. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +3 -7
  1100. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +0 -35
  1101. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +0 -2
  1102. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +3 -5
  1103. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +0 -3
  1104. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +0 -2
  1105. data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +31 -47
  1106. data/third_party/boringssl-with-bazel/src/crypto/bn/div.cc +100 -0
  1107. data/third_party/boringssl-with-bazel/src/crypto/bn/exponentiation.cc +166 -0
  1108. data/third_party/boringssl-with-bazel/src/crypto/bn/sqrt.cc +93 -0
  1109. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +14 -8
  1110. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +1 -1
  1111. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +3 -3
  1112. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +4 -4
  1113. data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +13 -15
  1114. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aeseax.cc +289 -0
  1115. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +179 -102
  1116. data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +3 -3
  1117. data/third_party/boringssl-with-bazel/src/crypto/cms/cms.cc +172 -0
  1118. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +0 -2
  1119. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +0 -2
  1120. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +0 -2
  1121. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +0 -2
  1122. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +0 -2
  1123. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +0 -2
  1124. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +0 -1
  1125. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +28 -6
  1126. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +11 -9
  1127. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +0 -6
  1128. data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +1 -3
  1129. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +3 -3
  1130. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +3 -3
  1131. data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +13 -14
  1132. data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +27 -61
  1133. data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +16 -8
  1134. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +112 -122
  1135. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +23 -35
  1136. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +3 -3
  1137. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +47 -63
  1138. data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +60 -68
  1139. data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +3 -3
  1140. data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +11 -17
  1141. data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +0 -2
  1142. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +10 -11
  1143. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +10 -11
  1144. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +3 -3
  1145. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +6 -6
  1146. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +6 -6
  1147. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +6 -6
  1148. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +6 -6
  1149. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +6 -6
  1150. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +23 -42
  1151. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +29 -18
  1152. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +10 -10
  1153. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +16 -45
  1154. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +5 -4
  1155. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +15 -6
  1156. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +3 -3
  1157. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +101 -5
  1158. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +96 -187
  1159. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +24 -512
  1160. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +58 -80
  1161. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +29 -45
  1162. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +27 -25
  1163. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +7 -16
  1164. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +27 -48
  1165. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +34 -34
  1166. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +102 -154
  1167. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +3 -3
  1168. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +3 -8
  1169. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +1 -78
  1170. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +10 -17
  1171. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +3 -3
  1172. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +15 -8
  1173. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +40 -53
  1174. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +57 -76
  1175. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +4 -10
  1176. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +3 -3
  1177. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +3 -3
  1178. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +37 -52
  1179. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +13 -20
  1180. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +3 -3
  1181. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +28 -39
  1182. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +3 -3
  1183. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +6 -11
  1184. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +3 -3
  1185. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/fips_known_values.inc +1345 -0
  1186. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +335 -28
  1187. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/fips_known_values.inc +411 -0
  1188. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +265 -33
  1189. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +3 -3
  1190. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +1 -1
  1191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +3 -3
  1192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +19 -26
  1193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +7 -7
  1194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +121 -138
  1195. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +96 -83
  1196. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +3 -3
  1197. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +8 -20
  1198. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fips_known_values.inc +674 -0
  1199. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +235 -60
  1200. data/third_party/boringssl-with-bazel/src/crypto/fuzzer_mode.cc +30 -0
  1201. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +3 -3
  1202. data/third_party/boringssl-with-bazel/src/crypto/internal.h +59 -33
  1203. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +3 -3
  1204. data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +3 -3
  1205. data/third_party/boringssl-with-bazel/src/crypto/mem.cc +0 -2
  1206. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +2 -8
  1207. data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +3 -3
  1208. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +8 -13
  1209. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +22 -8
  1210. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +19 -17
  1211. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +134 -136
  1212. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +14 -8
  1213. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +25 -21
  1214. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +36 -52
  1215. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +97 -79
  1216. data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +3 -3
  1217. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +3 -3
  1218. data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +1 -1
  1219. data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +2 -2
  1220. data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +1 -1
  1221. data/third_party/boringssl-with-bazel/src/crypto/rand/{sysrand_internal.h → internal.h} +22 -4
  1222. data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +1 -1
  1223. data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +1 -1
  1224. data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +1 -1
  1225. data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +1 -5
  1226. data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +3 -3
  1227. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +14 -22
  1228. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +3 -3
  1229. data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +0 -2
  1230. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +3 -3
  1231. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +3 -5
  1232. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +8 -12
  1233. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +15 -3
  1234. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +16 -24
  1235. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +18 -21
  1236. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +10 -3
  1237. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +9 -0
  1238. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +10 -1
  1239. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +64 -85
  1240. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +16 -32
  1241. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +576 -567
  1242. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +16 -8
  1243. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +1 -1
  1244. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +3 -25
  1245. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +6 -54
  1246. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +1 -1
  1247. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +8 -4
  1248. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +1 -1
  1249. data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +1 -1
  1250. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +1 -1
  1251. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -1
  1252. data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +1 -1
  1253. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1 -1
  1254. data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +1 -1
  1255. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +7 -1
  1256. data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +1 -1
  1257. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
  1258. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +1 -1
  1259. data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +1 -1
  1260. data/third_party/boringssl-with-bazel/src/include/openssl/cms.h +146 -0
  1261. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +1 -1
  1262. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +23 -3
  1263. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +1 -1
  1264. data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +1 -1
  1265. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +1 -1
  1266. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +1 -1
  1267. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -7
  1268. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +1 -1
  1269. data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +1 -1
  1270. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +1 -1
  1271. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +1 -1
  1272. data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +1 -1
  1273. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -1
  1274. data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +1 -1
  1275. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -1
  1276. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
  1277. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  1278. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +1 -1
  1279. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +1 -1
  1280. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +1 -1
  1281. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +4 -4
  1282. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +1 -1
  1283. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +1 -1
  1284. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +1 -1
  1285. data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +1 -1
  1286. data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +1 -1
  1287. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +1 -1
  1288. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +1 -1
  1289. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +1 -1
  1290. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +1 -1
  1291. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +1 -1
  1292. data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +1 -1
  1293. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +10 -4
  1294. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +1 -1
  1295. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +19 -6
  1296. data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +1 -1
  1297. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +1 -1
  1298. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +1 -1
  1299. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +2 -2
  1300. data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +1 -1
  1301. data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +1 -1
  1302. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +2 -2
  1303. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +1 -1
  1304. data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +1 -1
  1305. data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +1 -1
  1306. data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +1 -1
  1307. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +1 -1
  1308. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +291 -40
  1309. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +1 -1
  1310. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +0 -5
  1311. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -1
  1312. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +9 -1
  1313. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +1 -1
  1314. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +1 -1
  1315. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +7 -4
  1316. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +2 -0
  1317. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +32 -26
  1318. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +49 -49
  1319. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +256 -57
  1320. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +12 -12
  1321. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +7 -5
  1322. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +3 -2
  1323. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +25 -33
  1324. data/third_party/boringssl-with-bazel/src/ssl/internal.h +106 -10
  1325. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +6 -12
  1326. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +18 -4
  1327. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +85 -8
  1328. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +1 -1
  1329. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +173 -19
  1330. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +5 -18
  1331. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +28 -15
  1332. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +1 -1
  1333. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +31 -7
  1334. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +14 -2
  1335. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +7 -11
  1336. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +14 -12
  1337. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +2 -5
  1338. data/third_party/upb/upb/base/internal/log2.h +3 -1
  1339. data/third_party/upb/upb/base/string_view.h +10 -0
  1340. data/third_party/upb/upb/hash/common.c +312 -187
  1341. data/third_party/upb/upb/hash/common.h +44 -43
  1342. data/third_party/upb/upb/hash/int_table.h +29 -5
  1343. data/third_party/upb/upb/hash/str_table.h +6 -0
  1344. data/third_party/upb/upb/json/decode.c +2 -2
  1345. data/third_party/upb/upb/json/decode.h +0 -1
  1346. data/third_party/upb/upb/mem/alloc.h +5 -0
  1347. data/third_party/upb/upb/mem/arena.c +437 -160
  1348. data/third_party/upb/upb/mem/arena.h +57 -11
  1349. data/third_party/upb/upb/mem/arena.hpp +4 -20
  1350. data/third_party/upb/upb/mem/internal/arena.h +65 -29
  1351. data/third_party/upb/upb/message/accessors.c +1 -5
  1352. data/third_party/upb/upb/message/accessors.h +41 -0
  1353. data/third_party/upb/upb/message/array.c +7 -6
  1354. data/third_party/upb/upb/message/array.h +4 -4
  1355. data/third_party/upb/upb/message/compat.c +11 -14
  1356. data/third_party/upb/upb/message/compat.h +4 -3
  1357. data/third_party/upb/upb/message/copy.c +35 -30
  1358. data/third_party/upb/upb/message/internal/accessors.h +142 -13
  1359. data/third_party/upb/upb/message/internal/extension.c +16 -25
  1360. data/third_party/upb/upb/message/internal/extension.h +17 -5
  1361. data/third_party/upb/upb/message/internal/iterator.c +58 -0
  1362. data/third_party/upb/upb/message/internal/iterator.h +29 -0
  1363. data/third_party/upb/upb/message/internal/map.h +76 -22
  1364. data/third_party/upb/upb/message/internal/map_sorter.h +13 -4
  1365. data/third_party/upb/upb/message/internal/message.c +48 -29
  1366. data/third_party/upb/upb/message/internal/message.h +203 -25
  1367. data/third_party/upb/upb/message/map.c +68 -20
  1368. data/third_party/upb/upb/message/map.h +8 -1
  1369. data/third_party/upb/upb/message/map_gencode_util.h +3 -45
  1370. data/third_party/upb/upb/message/map_sorter.c +52 -16
  1371. data/third_party/upb/upb/message/merge.h +3 -3
  1372. data/third_party/upb/upb/message/message.c +200 -42
  1373. data/third_party/upb/upb/message/message.h +69 -4
  1374. data/third_party/upb/upb/message/value.h +9 -0
  1375. data/third_party/upb/upb/mini_descriptor/build_enum.c +16 -6
  1376. data/third_party/upb/upb/mini_descriptor/decode.c +115 -138
  1377. data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
  1378. data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
  1379. data/third_party/upb/upb/mini_descriptor/link.c +4 -0
  1380. data/third_party/upb/upb/mini_table/extension.h +8 -1
  1381. data/third_party/upb/upb/mini_table/extension_registry.c +25 -13
  1382. data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
  1383. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  1384. data/third_party/upb/upb/mini_table/internal/extension.h +24 -1
  1385. data/third_party/upb/upb/mini_table/internal/field.h +4 -4
  1386. data/third_party/upb/upb/mini_table/internal/message.h +1 -1
  1387. data/third_party/upb/upb/mini_table/message.c +21 -13
  1388. data/third_party/upb/upb/port/atomic.h +134 -7
  1389. data/third_party/upb/upb/port/def.inc +163 -45
  1390. data/third_party/upb/upb/port/undef.inc +12 -1
  1391. data/third_party/upb/upb/reflection/def.hpp +5 -1
  1392. data/third_party/upb/upb/reflection/def_pool.c +10 -3
  1393. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  1394. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +4 -4
  1395. data/third_party/upb/upb/reflection/enum_def.c +4 -4
  1396. data/third_party/upb/upb/reflection/enum_reserved_range.c +1 -1
  1397. data/third_party/upb/upb/reflection/enum_value_def.c +9 -8
  1398. data/third_party/upb/upb/reflection/extension_range.c +1 -2
  1399. data/third_party/upb/upb/reflection/field_def.c +3 -5
  1400. data/third_party/upb/upb/reflection/field_def.h +1 -1
  1401. data/third_party/upb/upb/reflection/file_def.c +16 -10
  1402. data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
  1403. data/third_party/upb/upb/reflection/internal/def_builder.h +35 -10
  1404. data/third_party/upb/upb/reflection/internal/enum_value_def.h +1 -1
  1405. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  1406. data/third_party/upb/upb/reflection/message.c +19 -16
  1407. data/third_party/upb/upb/reflection/message.h +3 -1
  1408. data/third_party/upb/upb/reflection/message_def.c +4 -7
  1409. data/third_party/upb/upb/reflection/message_reserved_range.c +1 -1
  1410. data/third_party/upb/upb/reflection/method_def.c +1 -1
  1411. data/third_party/upb/upb/reflection/oneof_def.c +3 -3
  1412. data/third_party/upb/upb/reflection/service_def.c +2 -5
  1413. data/third_party/upb/upb/text/encode.c +17 -13
  1414. data/third_party/upb/upb/text/internal/encode.c +25 -6
  1415. data/third_party/upb/upb/text/internal/encode.h +6 -1
  1416. data/third_party/upb/upb/wire/decode.c +154 -107
  1417. data/third_party/upb/upb/wire/decode.h +4 -2
  1418. data/third_party/upb/upb/wire/encode.c +114 -55
  1419. data/third_party/upb/upb/wire/encode.h +2 -0
  1420. data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
  1421. data/third_party/upb/upb/wire/internal/decode_fast.c +2 -2
  1422. data/third_party/upb/upb/wire/internal/decode_fast.h +4 -0
  1423. data/third_party/upb/upb/wire/internal/decoder.h +4 -11
  1424. data/third_party/utf8_range/utf8_range.c +15 -275
  1425. data/third_party/utf8_range/utf8_range_neon.inc +117 -0
  1426. data/third_party/utf8_range/utf8_range_sse.inc +272 -0
  1427. data/third_party/zlib/deflate.c +40 -15
  1428. data/third_party/zlib/deflate.h +33 -2
  1429. data/third_party/zlib/gzguts.h +2 -6
  1430. data/third_party/zlib/inflate.c +1 -1
  1431. data/third_party/zlib/inftrees.c +3 -3
  1432. data/third_party/zlib/inftrees.h +2 -2
  1433. data/third_party/zlib/trees.c +18 -4
  1434. data/third_party/zlib/zconf.h +1 -9
  1435. data/third_party/zlib/zlib.h +12 -12
  1436. data/third_party/zlib/zutil.h +4 -25
  1437. metadata +196 -150
  1438. data/include/grpc/grpc_cronet.h +0 -37
  1439. data/src/core/lib/iomgr/executor.cc +0 -441
  1440. data/src/core/lib/iomgr/executor.h +0 -119
  1441. data/src/core/lib/transport/http2_errors.h +0 -43
  1442. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/polyval.cc.inc +0 -89
  1443. data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
  1444. data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -48,6 +48,7 @@ typedef struct google_protobuf_MethodOptions { upb_Message UPB_PRIVATE(base); }
48
48
  typedef struct google_protobuf_UninterpretedOption { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption;
49
49
  typedef struct google_protobuf_UninterpretedOption_NamePart { upb_Message UPB_PRIVATE(base); } google_protobuf_UninterpretedOption_NamePart;
50
50
  typedef struct google_protobuf_FeatureSet { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSet;
51
+ typedef struct google_protobuf_FeatureSet_VisibilityFeature { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSet_VisibilityFeature;
51
52
  typedef struct google_protobuf_FeatureSetDefaults { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults;
52
53
  typedef struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault;
53
54
  typedef struct google_protobuf_SourceCodeInfo { upb_Message UPB_PRIVATE(base); } google_protobuf_SourceCodeInfo;
@@ -75,6 +76,12 @@ typedef enum {
75
76
  google_protobuf_ExtensionRangeOptions_UNVERIFIED = 1
76
77
  } google_protobuf_ExtensionRangeOptions_VerificationState;
77
78
 
79
+ typedef enum {
80
+ google_protobuf_FeatureSet_ENFORCE_NAMING_STYLE_UNKNOWN = 0,
81
+ google_protobuf_FeatureSet_STYLE2024 = 1,
82
+ google_protobuf_FeatureSet_STYLE_LEGACY = 2
83
+ } google_protobuf_FeatureSet_EnforceNamingStyle;
84
+
78
85
  typedef enum {
79
86
  google_protobuf_FeatureSet_ENUM_TYPE_UNKNOWN = 0,
80
87
  google_protobuf_FeatureSet_OPEN = 1,
@@ -112,6 +119,14 @@ typedef enum {
112
119
  google_protobuf_FeatureSet_NONE = 3
113
120
  } google_protobuf_FeatureSet_Utf8Validation;
114
121
 
122
+ typedef enum {
123
+ google_protobuf_FeatureSet_VisibilityFeature_DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
124
+ google_protobuf_FeatureSet_VisibilityFeature_EXPORT_ALL = 1,
125
+ google_protobuf_FeatureSet_VisibilityFeature_EXPORT_TOP_LEVEL = 2,
126
+ google_protobuf_FeatureSet_VisibilityFeature_LOCAL_ALL = 3,
127
+ google_protobuf_FeatureSet_VisibilityFeature_STRICT = 4
128
+ } google_protobuf_FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
129
+
115
130
  typedef enum {
116
131
  google_protobuf_FieldDescriptorProto_LABEL_OPTIONAL = 1,
117
132
  google_protobuf_FieldDescriptorProto_LABEL_REQUIRED = 2,
@@ -188,6 +203,12 @@ typedef enum {
188
203
  google_protobuf_MethodOptions_IDEMPOTENT = 2
189
204
  } google_protobuf_MethodOptions_IdempotencyLevel;
190
205
 
206
+ typedef enum {
207
+ google_protobuf_VISIBILITY_UNSET = 0,
208
+ google_protobuf_VISIBILITY_LOCAL = 1,
209
+ google_protobuf_VISIBILITY_EXPORT = 2
210
+ } google_protobuf_SymbolVisibility;
211
+
191
212
 
192
213
 
193
214
  /* google.protobuf.FileDescriptorSet */
@@ -332,43 +353,43 @@ UPB_INLINE char* google_protobuf_FileDescriptorProto_serialize_ex(const google_p
332
353
  return ptr;
333
354
  }
334
355
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_name(google_protobuf_FileDescriptorProto* msg) {
335
- const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
356
+ const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
336
357
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
337
358
  }
338
359
  UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto* msg) {
339
360
  upb_StringView default_val = upb_StringView_FromString("");
340
361
  upb_StringView ret;
341
- const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
362
+ const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
342
363
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
343
364
  &default_val, &ret);
344
365
  return ret;
345
366
  }
346
367
  UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto* msg) {
347
- const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
368
+ const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
348
369
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
349
370
  }
350
371
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_package(google_protobuf_FileDescriptorProto* msg) {
351
- const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
372
+ const upb_MiniTableField field = {2, UPB_SIZE(64, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
352
373
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
353
374
  }
354
375
  UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto* msg) {
355
376
  upb_StringView default_val = upb_StringView_FromString("");
356
377
  upb_StringView ret;
357
- const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
378
+ const upb_MiniTableField field = {2, UPB_SIZE(64, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
358
379
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
359
380
  &default_val, &ret);
360
381
  return ret;
361
382
  }
362
383
  UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto* msg) {
363
- const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
384
+ const upb_MiniTableField field = {2, UPB_SIZE(64, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
364
385
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
365
386
  }
366
387
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_dependency(google_protobuf_FileDescriptorProto* msg) {
367
- const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
388
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
368
389
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
369
390
  }
370
391
  UPB_INLINE upb_StringView const* google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
371
- const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
392
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
372
393
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
373
394
  if (arr) {
374
395
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -379,7 +400,7 @@ UPB_INLINE upb_StringView const* google_protobuf_FileDescriptorProto_dependency(
379
400
  }
380
401
  }
381
402
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
382
- const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
403
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
383
404
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
384
405
  if (size) {
385
406
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -387,7 +408,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_dependency_upb_
387
408
  return arr;
388
409
  }
389
410
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
390
- const upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
411
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
391
412
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
392
413
  &field, arena);
393
414
  if (size) {
@@ -396,11 +417,11 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_dependency_mutable_up
396
417
  return arr;
397
418
  }
398
419
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_protobuf_FileDescriptorProto* msg) {
399
- const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
420
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
400
421
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
401
422
  }
402
423
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
403
- const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
424
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
404
425
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
405
426
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
406
427
  if (arr) {
@@ -412,7 +433,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDes
412
433
  }
413
434
  }
414
435
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
415
- const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
436
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
416
437
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
417
438
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
418
439
  if (size) {
@@ -421,7 +442,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_up
421
442
  return arr;
422
443
  }
423
444
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
424
- const upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
445
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
425
446
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
426
447
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
427
448
  &field, arena);
@@ -431,11 +452,11 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_
431
452
  return arr;
432
453
  }
433
454
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_protobuf_FileDescriptorProto* msg) {
434
- const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
455
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
435
456
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
436
457
  }
437
458
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
438
- const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
459
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
439
460
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
440
461
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
441
462
  if (arr) {
@@ -447,7 +468,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Fil
447
468
  }
448
469
  }
449
470
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
450
- const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
471
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
451
472
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
452
473
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
453
474
  if (size) {
@@ -456,7 +477,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_a
456
477
  return arr;
457
478
  }
458
479
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
459
- const upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
480
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
460
481
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
461
482
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
462
483
  &field, arena);
@@ -466,11 +487,11 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb
466
487
  return arr;
467
488
  }
468
489
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobuf_FileDescriptorProto* msg) {
469
- const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
490
+ const upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
470
491
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
471
492
  }
472
493
  UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
473
- const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
494
+ const upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
474
495
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
475
496
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
476
497
  if (arr) {
@@ -482,7 +503,7 @@ UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_
482
503
  }
483
504
  }
484
505
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
485
- const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
506
+ const upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
486
507
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
487
508
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
488
509
  if (size) {
@@ -491,7 +512,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_arr
491
512
  return arr;
492
513
  }
493
514
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
494
- const upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
515
+ const upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
495
516
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
496
517
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
497
518
  &field, arena);
@@ -501,11 +522,11 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_a
501
522
  return arr;
502
523
  }
503
524
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_protobuf_FileDescriptorProto* msg) {
504
- const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
525
+ const upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
505
526
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
506
527
  }
507
528
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
508
- const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
529
+ const upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
509
530
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
510
531
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
511
532
  if (arr) {
@@ -517,7 +538,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_Fi
517
538
  }
518
539
  }
519
540
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
520
- const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
541
+ const upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
521
542
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
522
543
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
523
544
  if (size) {
@@ -526,7 +547,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_a
526
547
  return arr;
527
548
  }
528
549
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
529
- const upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
550
+ const upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
530
551
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
531
552
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
532
553
  &field, arena);
@@ -536,45 +557,45 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb
536
557
  return arr;
537
558
  }
538
559
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_options(google_protobuf_FileDescriptorProto* msg) {
539
- const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
560
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
540
561
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
541
562
  }
542
563
  UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto* msg) {
543
564
  const google_protobuf_FileOptions* default_val = NULL;
544
565
  const google_protobuf_FileOptions* ret;
545
- const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
566
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
546
567
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
547
568
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
548
569
  &default_val, &ret);
549
570
  return ret;
550
571
  }
551
572
  UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto* msg) {
552
- const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
573
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
553
574
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
554
575
  }
555
576
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_source_code_info(google_protobuf_FileDescriptorProto* msg) {
556
- const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
577
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
557
578
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
558
579
  }
559
580
  UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto* msg) {
560
581
  const google_protobuf_SourceCodeInfo* default_val = NULL;
561
582
  const google_protobuf_SourceCodeInfo* ret;
562
- const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
583
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
563
584
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
564
585
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
565
586
  &default_val, &ret);
566
587
  return ret;
567
588
  }
568
589
  UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto* msg) {
569
- const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
590
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
570
591
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
571
592
  }
572
593
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_public_dependency(google_protobuf_FileDescriptorProto* msg) {
573
- const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
594
+ const upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
574
595
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
575
596
  }
576
597
  UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
577
- const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
598
+ const upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
578
599
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
579
600
  if (arr) {
580
601
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -585,7 +606,7 @@ UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(
585
606
  }
586
607
  }
587
608
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
588
- const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
609
+ const upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
589
610
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
590
611
  if (size) {
591
612
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -593,7 +614,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_public_dependen
593
614
  return arr;
594
615
  }
595
616
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
596
- const upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
617
+ const upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
597
618
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
598
619
  &field, arena);
599
620
  if (size) {
@@ -602,11 +623,11 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_public_dependency_mut
602
623
  return arr;
603
624
  }
604
625
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_weak_dependency(google_protobuf_FileDescriptorProto* msg) {
605
- const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
626
+ const upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
606
627
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
607
628
  }
608
629
  UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
609
- const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
630
+ const upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
610
631
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
611
632
  if (arr) {
612
633
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -617,7 +638,7 @@ UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(co
617
638
  }
618
639
  }
619
640
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
620
- const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
641
+ const upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
621
642
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
622
643
  if (size) {
623
644
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -625,7 +646,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency
625
646
  return arr;
626
647
  }
627
648
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
628
- const upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
649
+ const upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
629
650
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
630
651
  &field, arena);
631
652
  if (size) {
@@ -634,19 +655,19 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_weak_dependency_mutab
634
655
  return arr;
635
656
  }
636
657
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_syntax(google_protobuf_FileDescriptorProto* msg) {
637
- const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
658
+ const upb_MiniTableField field = {12, UPB_SIZE(72, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
638
659
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
639
660
  }
640
661
  UPB_INLINE upb_StringView google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto* msg) {
641
662
  upb_StringView default_val = upb_StringView_FromString("");
642
663
  upb_StringView ret;
643
- const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
664
+ const upb_MiniTableField field = {12, UPB_SIZE(72, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
644
665
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
645
666
  &default_val, &ret);
646
667
  return ret;
647
668
  }
648
669
  UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto* msg) {
649
- const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
670
+ const upb_MiniTableField field = {12, UPB_SIZE(72, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
650
671
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
651
672
  }
652
673
  UPB_INLINE void google_protobuf_FileDescriptorProto_clear_edition(google_protobuf_FileDescriptorProto* msg) {
@@ -665,17 +686,49 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_edition(const google_pro
665
686
  const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
666
687
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
667
688
  }
689
+ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_option_dependency(google_protobuf_FileDescriptorProto* msg) {
690
+ const upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
691
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
692
+ }
693
+ UPB_INLINE upb_StringView const* google_protobuf_FileDescriptorProto_option_dependency(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
694
+ const upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
695
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
696
+ if (arr) {
697
+ if (size) *size = arr->UPB_PRIVATE(size);
698
+ return (upb_StringView const*)upb_Array_DataPtr(arr);
699
+ } else {
700
+ if (size) *size = 0;
701
+ return NULL;
702
+ }
703
+ }
704
+ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_option_dependency_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
705
+ const upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
706
+ const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
707
+ if (size) {
708
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
709
+ }
710
+ return arr;
711
+ }
712
+ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_option_dependency_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
713
+ const upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
714
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
715
+ &field, arena);
716
+ if (size) {
717
+ *size = arr ? arr->UPB_PRIVATE(size) : 0;
718
+ }
719
+ return arr;
720
+ }
668
721
 
669
722
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
670
- const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
723
+ const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
671
724
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
672
725
  }
673
726
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
674
- const upb_MiniTableField field = {2, UPB_SIZE(60, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
727
+ const upb_MiniTableField field = {2, UPB_SIZE(64, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
675
728
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
676
729
  }
677
730
  UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
678
- upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
731
+ upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
679
732
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
680
733
  if (arr) {
681
734
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -686,12 +739,12 @@ UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependenc
686
739
  }
687
740
  }
688
741
  UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
689
- upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
742
+ upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
690
743
  return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
691
744
  &field, size, arena);
692
745
  }
693
746
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto* msg, upb_StringView val, upb_Arena* arena) {
694
- upb_MiniTableField field = {3, UPB_SIZE(12, 48), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
747
+ upb_MiniTableField field = {3, UPB_SIZE(12, 64), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
695
748
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
696
749
  UPB_UPCAST(msg), &field, arena);
697
750
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -703,7 +756,7 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protob
703
756
  return true;
704
757
  }
705
758
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
706
- upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
759
+ upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
707
760
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
708
761
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
709
762
  if (arr) {
@@ -715,12 +768,12 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto
715
768
  }
716
769
  }
717
770
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
718
- upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
771
+ upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
719
772
  return (google_protobuf_DescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
720
773
  &field, size, arena);
721
774
  }
722
775
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
723
- upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
776
+ upb_MiniTableField field = {4, UPB_SIZE(16, 72), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
724
777
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
725
778
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
726
779
  UPB_UPCAST(msg), &field, arena);
@@ -735,7 +788,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescripto
735
788
  return sub;
736
789
  }
737
790
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
738
- upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
791
+ upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
739
792
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
740
793
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
741
794
  if (arr) {
@@ -747,12 +800,12 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorP
747
800
  }
748
801
  }
749
802
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
750
- upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
803
+ upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
751
804
  return (google_protobuf_EnumDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
752
805
  &field, size, arena);
753
806
  }
754
807
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
755
- upb_MiniTableField field = {5, UPB_SIZE(20, 64), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
808
+ upb_MiniTableField field = {5, UPB_SIZE(20, 80), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
756
809
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
757
810
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
758
811
  UPB_UPCAST(msg), &field, arena);
@@ -767,7 +820,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescr
767
820
  return sub;
768
821
  }
769
822
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) {
770
- upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
823
+ upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
771
824
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
772
825
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
773
826
  if (arr) {
@@ -779,12 +832,12 @@ UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescript
779
832
  }
780
833
  }
781
834
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
782
- upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
835
+ upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
783
836
  return (google_protobuf_ServiceDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
784
837
  &field, size, arena);
785
838
  }
786
839
  UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
787
- upb_MiniTableField field = {6, UPB_SIZE(24, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
840
+ upb_MiniTableField field = {6, UPB_SIZE(24, 88), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
788
841
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
789
842
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
790
843
  UPB_UPCAST(msg), &field, arena);
@@ -799,7 +852,7 @@ UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDe
799
852
  return sub;
800
853
  }
801
854
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) {
802
- upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
855
+ upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
803
856
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
804
857
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
805
858
  if (arr) {
@@ -811,12 +864,12 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptor
811
864
  }
812
865
  }
813
866
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
814
- upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
867
+ upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
815
868
  return (google_protobuf_FieldDescriptorProto**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
816
869
  &field, size, arena);
817
870
  }
818
871
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
819
- upb_MiniTableField field = {7, UPB_SIZE(28, 80), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
872
+ upb_MiniTableField field = {7, UPB_SIZE(28, 96), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
820
873
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
821
874
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
822
875
  UPB_UPCAST(msg), &field, arena);
@@ -831,7 +884,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDesc
831
884
  return sub;
832
885
  }
833
886
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
834
- const upb_MiniTableField field = {8, UPB_SIZE(32, 88), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
887
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
835
888
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
836
889
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
837
890
  }
@@ -844,7 +897,7 @@ UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorPro
844
897
  return sub;
845
898
  }
846
899
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
847
- const upb_MiniTableField field = {9, UPB_SIZE(36, 96), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
900
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
848
901
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
849
902
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
850
903
  }
@@ -857,7 +910,7 @@ UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptor
857
910
  return sub;
858
911
  }
859
912
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
860
- upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
913
+ upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
861
914
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
862
915
  if (arr) {
863
916
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -868,12 +921,12 @@ UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependenc
868
921
  }
869
922
  }
870
923
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
871
- upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
924
+ upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
872
925
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
873
926
  &field, size, arena);
874
927
  }
875
928
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) {
876
- upb_MiniTableField field = {10, UPB_SIZE(40, 104), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
929
+ upb_MiniTableField field = {10, UPB_SIZE(40, 120), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
877
930
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
878
931
  UPB_UPCAST(msg), &field, arena);
879
932
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -885,7 +938,7 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google
885
938
  return true;
886
939
  }
887
940
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
888
- upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
941
+ upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
889
942
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
890
943
  if (arr) {
891
944
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -896,12 +949,12 @@ UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(
896
949
  }
897
950
  }
898
951
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
899
- upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
952
+ upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
900
953
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
901
954
  &field, size, arena);
902
955
  }
903
956
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto* msg, int32_t val, upb_Arena* arena) {
904
- upb_MiniTableField field = {11, UPB_SIZE(44, 112), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
957
+ upb_MiniTableField field = {11, UPB_SIZE(44, 128), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
905
958
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
906
959
  UPB_UPCAST(msg), &field, arena);
907
960
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -913,13 +966,41 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_p
913
966
  return true;
914
967
  }
915
968
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
916
- const upb_MiniTableField field = {12, UPB_SIZE(68, 120), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
969
+ const upb_MiniTableField field = {12, UPB_SIZE(72, 48), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
917
970
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
918
971
  }
919
972
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_edition(google_protobuf_FileDescriptorProto *msg, int32_t value) {
920
973
  const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
921
974
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
922
975
  }
976
+ UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_option_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
977
+ upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
978
+ upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
979
+ if (arr) {
980
+ if (size) *size = arr->UPB_PRIVATE(size);
981
+ return (upb_StringView*)upb_Array_MutableDataPtr(arr);
982
+ } else {
983
+ if (size) *size = 0;
984
+ return NULL;
985
+ }
986
+ }
987
+ UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_resize_option_dependency(google_protobuf_FileDescriptorProto* msg, size_t size, upb_Arena* arena) {
988
+ upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
989
+ return (upb_StringView*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
990
+ &field, size, arena);
991
+ }
992
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_option_dependency(google_protobuf_FileDescriptorProto* msg, upb_StringView val, upb_Arena* arena) {
993
+ upb_MiniTableField field = {15, UPB_SIZE(52, 136), 0, kUpb_NoSub, 12, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsAlternate | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
994
+ upb_Array* arr = upb_Message_GetOrCreateMutableArray(
995
+ UPB_UPCAST(msg), &field, arena);
996
+ if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
997
+ arr, arr->UPB_PRIVATE(size) + 1, arena)) {
998
+ return false;
999
+ }
1000
+ UPB_PRIVATE(_upb_Array_Set)
1001
+ (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
1002
+ return true;
1003
+ }
923
1004
 
924
1005
  /* google.protobuf.DescriptorProto */
925
1006
 
@@ -958,19 +1039,19 @@ UPB_INLINE char* google_protobuf_DescriptorProto_serialize_ex(const google_proto
958
1039
  return ptr;
959
1040
  }
960
1041
  UPB_INLINE void google_protobuf_DescriptorProto_clear_name(google_protobuf_DescriptorProto* msg) {
961
- const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1042
+ const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
962
1043
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
963
1044
  }
964
1045
  UPB_INLINE upb_StringView google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto* msg) {
965
1046
  upb_StringView default_val = upb_StringView_FromString("");
966
1047
  upb_StringView ret;
967
- const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1048
+ const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
968
1049
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
969
1050
  &default_val, &ret);
970
1051
  return ret;
971
1052
  }
972
1053
  UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto* msg) {
973
- const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1054
+ const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
974
1055
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
975
1056
  }
976
1057
  UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_DescriptorProto* msg) {
@@ -1267,9 +1348,25 @@ UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_name_mutable_upb
1267
1348
  }
1268
1349
  return arr;
1269
1350
  }
1351
+ UPB_INLINE void google_protobuf_DescriptorProto_clear_visibility(google_protobuf_DescriptorProto* msg) {
1352
+ const upb_MiniTableField field = {11, UPB_SIZE(48, 12), 66, 8, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1353
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1354
+ }
1355
+ UPB_INLINE int32_t google_protobuf_DescriptorProto_visibility(const google_protobuf_DescriptorProto* msg) {
1356
+ int32_t default_val = 0;
1357
+ int32_t ret;
1358
+ const upb_MiniTableField field = {11, UPB_SIZE(48, 12), 66, 8, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1359
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1360
+ &default_val, &ret);
1361
+ return ret;
1362
+ }
1363
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_visibility(const google_protobuf_DescriptorProto* msg) {
1364
+ const upb_MiniTableField field = {11, UPB_SIZE(48, 12), 66, 8, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1365
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1366
+ }
1270
1367
 
1271
1368
  UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_StringView value) {
1272
- const upb_MiniTableField field = {1, UPB_SIZE(48, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1369
+ const upb_MiniTableField field = {1, UPB_SIZE(52, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1273
1370
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1274
1371
  }
1275
1372
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) {
@@ -1537,6 +1634,10 @@ UPB_INLINE bool google_protobuf_DescriptorProto_add_reserved_name(google_protobu
1537
1634
  (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
1538
1635
  return true;
1539
1636
  }
1637
+ UPB_INLINE void google_protobuf_DescriptorProto_set_visibility(google_protobuf_DescriptorProto *msg, int32_t value) {
1638
+ const upb_MiniTableField field = {11, UPB_SIZE(48, 12), 66, 8, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1639
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1640
+ }
1540
1641
 
1541
1642
  /* google.protobuf.DescriptorProto.ExtensionRange */
1542
1643
 
@@ -1999,67 +2100,67 @@ UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_number(con
1999
2100
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2000
2101
  }
2001
2102
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_full_name(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2002
- const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2103
+ const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2003
2104
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2004
2105
  }
2005
2106
  UPB_INLINE upb_StringView google_protobuf_ExtensionRangeOptions_Declaration_full_name(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2006
2107
  upb_StringView default_val = upb_StringView_FromString("");
2007
2108
  upb_StringView ret;
2008
- const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2109
+ const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2009
2110
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2010
2111
  &default_val, &ret);
2011
2112
  return ret;
2012
2113
  }
2013
2114
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_full_name(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2014
- const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2115
+ const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2015
2116
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2016
2117
  }
2017
2118
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_type(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2018
- const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2119
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2019
2120
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2020
2121
  }
2021
2122
  UPB_INLINE upb_StringView google_protobuf_ExtensionRangeOptions_Declaration_type(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2022
2123
  upb_StringView default_val = upb_StringView_FromString("");
2023
2124
  upb_StringView ret;
2024
- const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2125
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2025
2126
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2026
2127
  &default_val, &ret);
2027
2128
  return ret;
2028
2129
  }
2029
2130
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_type(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2030
- const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2131
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2031
2132
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2032
2133
  }
2033
2134
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_reserved(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2034
- const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2135
+ const upb_MiniTableField field = {5, 9, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2035
2136
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2036
2137
  }
2037
2138
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2038
2139
  bool default_val = false;
2039
2140
  bool ret;
2040
- const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2141
+ const upb_MiniTableField field = {5, 9, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2041
2142
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2042
2143
  &default_val, &ret);
2043
2144
  return ret;
2044
2145
  }
2045
2146
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_reserved(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2046
- const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2147
+ const upb_MiniTableField field = {5, 9, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2047
2148
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2048
2149
  }
2049
2150
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_clear_repeated(google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2050
- const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2151
+ const upb_MiniTableField field = {6, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2051
2152
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2052
2153
  }
2053
2154
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2054
2155
  bool default_val = false;
2055
2156
  bool ret;
2056
- const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2157
+ const upb_MiniTableField field = {6, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2057
2158
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2058
2159
  &default_val, &ret);
2059
2160
  return ret;
2060
2161
  }
2061
2162
  UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_repeated(const google_protobuf_ExtensionRangeOptions_Declaration* msg) {
2062
- const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2163
+ const upb_MiniTableField field = {6, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2063
2164
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2064
2165
  }
2065
2166
 
@@ -2068,19 +2169,19 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_number(goo
2068
2169
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2069
2170
  }
2070
2171
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_full_name(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
2071
- const upb_MiniTableField field = {2, UPB_SIZE(20, 24), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2172
+ const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2072
2173
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2073
2174
  }
2074
2175
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_type(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
2075
- const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2176
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2076
2177
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2077
2178
  }
2078
2179
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_reserved(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
2079
- const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2180
+ const upb_MiniTableField field = {5, 9, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2080
2181
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2081
2182
  }
2082
2183
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_repeated(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
2083
- const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2184
+ const upb_MiniTableField field = {6, 10, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2084
2185
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2085
2186
  }
2086
2187
 
@@ -2121,35 +2222,35 @@ UPB_INLINE char* google_protobuf_FieldDescriptorProto_serialize_ex(const google_
2121
2222
  return ptr;
2122
2223
  }
2123
2224
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_name(google_protobuf_FieldDescriptorProto* msg) {
2124
- const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2225
+ const upb_MiniTableField field = {1, 32, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2125
2226
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2126
2227
  }
2127
2228
  UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto* msg) {
2128
2229
  upb_StringView default_val = upb_StringView_FromString("");
2129
2230
  upb_StringView ret;
2130
- const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2231
+ const upb_MiniTableField field = {1, 32, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2131
2232
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2132
2233
  &default_val, &ret);
2133
2234
  return ret;
2134
2235
  }
2135
2236
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto* msg) {
2136
- const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2237
+ const upb_MiniTableField field = {1, 32, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2137
2238
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2138
2239
  }
2139
2240
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_extendee(google_protobuf_FieldDescriptorProto* msg) {
2140
- const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2241
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2141
2242
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2142
2243
  }
2143
2244
  UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto* msg) {
2144
2245
  upb_StringView default_val = upb_StringView_FromString("");
2145
2246
  upb_StringView ret;
2146
- const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2247
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2147
2248
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2148
2249
  &default_val, &ret);
2149
2250
  return ret;
2150
2251
  }
2151
2252
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto* msg) {
2152
- const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2253
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2153
2254
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2154
2255
  }
2155
2256
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_number(google_protobuf_FieldDescriptorProto* msg) {
@@ -2201,52 +2302,52 @@ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_proto
2201
2302
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2202
2303
  }
2203
2304
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_type_name(google_protobuf_FieldDescriptorProto* msg) {
2204
- const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2305
+ const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2205
2306
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2206
2307
  }
2207
2308
  UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto* msg) {
2208
2309
  upb_StringView default_val = upb_StringView_FromString("");
2209
2310
  upb_StringView ret;
2210
- const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2311
+ const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2211
2312
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2212
2313
  &default_val, &ret);
2213
2314
  return ret;
2214
2315
  }
2215
2316
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto* msg) {
2216
- const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2317
+ const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2217
2318
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2218
2319
  }
2219
2320
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_default_value(google_protobuf_FieldDescriptorProto* msg) {
2220
- const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2321
+ const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2221
2322
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2222
2323
  }
2223
2324
  UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto* msg) {
2224
2325
  upb_StringView default_val = upb_StringView_FromString("");
2225
2326
  upb_StringView ret;
2226
- const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2327
+ const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2227
2328
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2228
2329
  &default_val, &ret);
2229
2330
  return ret;
2230
2331
  }
2231
2332
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto* msg) {
2232
- const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2333
+ const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2233
2334
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2234
2335
  }
2235
2336
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_options(google_protobuf_FieldDescriptorProto* msg) {
2236
- const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2337
+ const upb_MiniTableField field = {8, UPB_SIZE(24, 112), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2237
2338
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2238
2339
  }
2239
2340
  UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto* msg) {
2240
2341
  const google_protobuf_FieldOptions* default_val = NULL;
2241
2342
  const google_protobuf_FieldOptions* ret;
2242
- const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2343
+ const upb_MiniTableField field = {8, UPB_SIZE(24, 112), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2243
2344
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2244
2345
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2245
2346
  &default_val, &ret);
2246
2347
  return ret;
2247
2348
  }
2248
2349
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto* msg) {
2249
- const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2350
+ const upb_MiniTableField field = {8, UPB_SIZE(24, 112), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2250
2351
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2251
2352
  }
2252
2353
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_oneof_index(google_protobuf_FieldDescriptorProto* msg) {
@@ -2266,44 +2367,44 @@ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const googl
2266
2367
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2267
2368
  }
2268
2369
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_json_name(google_protobuf_FieldDescriptorProto* msg) {
2269
- const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2370
+ const upb_MiniTableField field = {10, UPB_SIZE(64, 96), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2270
2371
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2271
2372
  }
2272
2373
  UPB_INLINE upb_StringView google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto* msg) {
2273
2374
  upb_StringView default_val = upb_StringView_FromString("");
2274
2375
  upb_StringView ret;
2275
- const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2376
+ const upb_MiniTableField field = {10, UPB_SIZE(64, 96), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2276
2377
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2277
2378
  &default_val, &ret);
2278
2379
  return ret;
2279
2380
  }
2280
2381
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto* msg) {
2281
- const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2382
+ const upb_MiniTableField field = {10, UPB_SIZE(64, 96), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2282
2383
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2283
2384
  }
2284
2385
  UPB_INLINE void google_protobuf_FieldDescriptorProto_clear_proto3_optional(google_protobuf_FieldDescriptorProto* msg) {
2285
- const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2386
+ const upb_MiniTableField field = {17, 10, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2286
2387
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2287
2388
  }
2288
2389
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) {
2289
2390
  bool default_val = false;
2290
2391
  bool ret;
2291
- const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2392
+ const upb_MiniTableField field = {17, 10, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2292
2393
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2293
2394
  &default_val, &ret);
2294
2395
  return ret;
2295
2396
  }
2296
2397
  UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto* msg) {
2297
- const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2398
+ const upb_MiniTableField field = {17, 10, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2298
2399
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2299
2400
  }
2300
2401
 
2301
2402
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2302
- const upb_MiniTableField field = {1, UPB_SIZE(36, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2403
+ const upb_MiniTableField field = {1, 32, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2303
2404
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2304
2405
  }
2305
2406
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2306
- const upb_MiniTableField field = {2, UPB_SIZE(44, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2407
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2307
2408
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2308
2409
  }
2309
2410
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
@@ -2319,15 +2420,15 @@ UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_Fi
2319
2420
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2320
2421
  }
2321
2422
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2322
- const upb_MiniTableField field = {6, UPB_SIZE(52, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2423
+ const upb_MiniTableField field = {6, UPB_SIZE(48, 64), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2323
2424
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2324
2425
  }
2325
2426
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2326
- const upb_MiniTableField field = {7, UPB_SIZE(60, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2427
+ const upb_MiniTableField field = {7, UPB_SIZE(56, 80), 70, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2327
2428
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2328
2429
  }
2329
2430
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
2330
- const upb_MiniTableField field = {8, UPB_SIZE(24, 96), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2431
+ const upb_MiniTableField field = {8, UPB_SIZE(24, 112), 71, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2331
2432
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2332
2433
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2333
2434
  }
@@ -2344,11 +2445,11 @@ UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_prot
2344
2445
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2345
2446
  }
2346
2447
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2347
- const upb_MiniTableField field = {10, UPB_SIZE(68, 104), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2448
+ const upb_MiniTableField field = {10, UPB_SIZE(64, 96), 73, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2348
2449
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2349
2450
  }
2350
2451
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) {
2351
- const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2452
+ const upb_MiniTableField field = {17, 10, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2352
2453
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2353
2454
  }
2354
2455
 
@@ -2477,19 +2578,19 @@ UPB_INLINE char* google_protobuf_EnumDescriptorProto_serialize_ex(const google_p
2477
2578
  return ptr;
2478
2579
  }
2479
2580
  UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_name(google_protobuf_EnumDescriptorProto* msg) {
2480
- const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2581
+ const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2481
2582
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2482
2583
  }
2483
2584
  UPB_INLINE upb_StringView google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto* msg) {
2484
2585
  upb_StringView default_val = upb_StringView_FromString("");
2485
2586
  upb_StringView ret;
2486
- const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2587
+ const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2487
2588
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2488
2589
  &default_val, &ret);
2489
2590
  return ret;
2490
2591
  }
2491
2592
  UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto* msg) {
2492
- const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2593
+ const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2493
2594
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2494
2595
  }
2495
2596
  UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_EnumDescriptorProto* msg) {
@@ -2611,9 +2712,25 @@ UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_mutable
2611
2712
  }
2612
2713
  return arr;
2613
2714
  }
2715
+ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_visibility(google_protobuf_EnumDescriptorProto* msg) {
2716
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 66, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2717
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2718
+ }
2719
+ UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_visibility(const google_protobuf_EnumDescriptorProto* msg) {
2720
+ int32_t default_val = 0;
2721
+ int32_t ret;
2722
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 66, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2723
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2724
+ &default_val, &ret);
2725
+ return ret;
2726
+ }
2727
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_visibility(const google_protobuf_EnumDescriptorProto* msg) {
2728
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 66, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2729
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2730
+ }
2614
2731
 
2615
2732
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_StringView value) {
2616
- const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2733
+ const upb_MiniTableField field = {1, UPB_SIZE(32, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2617
2734
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2618
2735
  }
2619
2736
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
@@ -2721,6 +2838,10 @@ UPB_INLINE bool google_protobuf_EnumDescriptorProto_add_reserved_name(google_pro
2721
2838
  (arr, arr->UPB_PRIVATE(size) - 1, &val, sizeof(val));
2722
2839
  return true;
2723
2840
  }
2841
+ UPB_INLINE void google_protobuf_EnumDescriptorProto_set_visibility(google_protobuf_EnumDescriptorProto *msg, int32_t value) {
2842
+ const upb_MiniTableField field = {6, UPB_SIZE(28, 12), 66, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2843
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2844
+ }
2724
2845
 
2725
2846
  /* google.protobuf.EnumDescriptorProto.EnumReservedRange */
2726
2847
 
@@ -3100,51 +3221,51 @@ UPB_INLINE char* google_protobuf_MethodDescriptorProto_serialize_ex(const google
3100
3221
  return ptr;
3101
3222
  }
3102
3223
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_name(google_protobuf_MethodDescriptorProto* msg) {
3103
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3224
+ const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3104
3225
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3105
3226
  }
3106
3227
  UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto* msg) {
3107
3228
  upb_StringView default_val = upb_StringView_FromString("");
3108
3229
  upb_StringView ret;
3109
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3230
+ const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3110
3231
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3111
3232
  &default_val, &ret);
3112
3233
  return ret;
3113
3234
  }
3114
3235
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto* msg) {
3115
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3236
+ const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3116
3237
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3117
3238
  }
3118
3239
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_input_type(google_protobuf_MethodDescriptorProto* msg) {
3119
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3240
+ const upb_MiniTableField field = {2, UPB_SIZE(24, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3120
3241
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3121
3242
  }
3122
3243
  UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto* msg) {
3123
3244
  upb_StringView default_val = upb_StringView_FromString("");
3124
3245
  upb_StringView ret;
3125
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3246
+ const upb_MiniTableField field = {2, UPB_SIZE(24, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3126
3247
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3127
3248
  &default_val, &ret);
3128
3249
  return ret;
3129
3250
  }
3130
3251
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto* msg) {
3131
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3252
+ const upb_MiniTableField field = {2, UPB_SIZE(24, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3132
3253
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3133
3254
  }
3134
3255
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_output_type(google_protobuf_MethodDescriptorProto* msg) {
3135
- const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3256
+ const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3136
3257
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3137
3258
  }
3138
3259
  UPB_INLINE upb_StringView google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto* msg) {
3139
3260
  upb_StringView default_val = upb_StringView_FromString("");
3140
3261
  upb_StringView ret;
3141
- const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3262
+ const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3142
3263
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3143
3264
  &default_val, &ret);
3144
3265
  return ret;
3145
3266
  }
3146
3267
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto* msg) {
3147
- const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3268
+ const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3148
3269
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3149
3270
  }
3150
3271
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_options(google_protobuf_MethodDescriptorProto* msg) {
@@ -3165,48 +3286,48 @@ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_p
3165
3286
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3166
3287
  }
3167
3288
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_client_streaming(google_protobuf_MethodDescriptorProto* msg) {
3168
- const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3289
+ const upb_MiniTableField field = {5, 9, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3169
3290
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3170
3291
  }
3171
3292
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto* msg) {
3172
3293
  bool default_val = false;
3173
3294
  bool ret;
3174
- const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3295
+ const upb_MiniTableField field = {5, 9, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3175
3296
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3176
3297
  &default_val, &ret);
3177
3298
  return ret;
3178
3299
  }
3179
3300
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto* msg) {
3180
- const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3301
+ const upb_MiniTableField field = {5, 9, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3181
3302
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3182
3303
  }
3183
3304
  UPB_INLINE void google_protobuf_MethodDescriptorProto_clear_server_streaming(google_protobuf_MethodDescriptorProto* msg) {
3184
- const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3305
+ const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3185
3306
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3186
3307
  }
3187
3308
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto* msg) {
3188
3309
  bool default_val = false;
3189
3310
  bool ret;
3190
- const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3311
+ const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3191
3312
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3192
3313
  &default_val, &ret);
3193
3314
  return ret;
3194
3315
  }
3195
3316
  UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto* msg) {
3196
- const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3317
+ const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3197
3318
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3198
3319
  }
3199
3320
 
3200
3321
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3201
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3322
+ const upb_MiniTableField field = {1, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3202
3323
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3203
3324
  }
3204
3325
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3205
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3326
+ const upb_MiniTableField field = {2, UPB_SIZE(24, 32), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3206
3327
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3207
3328
  }
3208
3329
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3209
- const upb_MiniTableField field = {3, UPB_SIZE(36, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3330
+ const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3210
3331
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3211
3332
  }
3212
3333
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
@@ -3223,11 +3344,11 @@ UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescripto
3223
3344
  return sub;
3224
3345
  }
3225
3346
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3226
- const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3347
+ const upb_MiniTableField field = {5, 9, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3227
3348
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3228
3349
  }
3229
3350
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3230
- const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3351
+ const upb_MiniTableField field = {6, 10, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3231
3352
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3232
3353
  }
3233
3354
 
@@ -3300,35 +3421,35 @@ UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const googl
3300
3421
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3301
3422
  }
3302
3423
  UPB_INLINE void google_protobuf_FileOptions_clear_optimize_for(google_protobuf_FileOptions* msg) {
3303
- const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3424
+ const upb_MiniTableField field = {9, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3304
3425
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3305
3426
  }
3306
3427
  UPB_INLINE int32_t google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions* msg) {
3307
3428
  int32_t default_val = 1;
3308
3429
  int32_t ret;
3309
- const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3430
+ const upb_MiniTableField field = {9, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3310
3431
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3311
3432
  &default_val, &ret);
3312
3433
  return ret;
3313
3434
  }
3314
3435
  UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions* msg) {
3315
- const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3436
+ const upb_MiniTableField field = {9, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3316
3437
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3317
3438
  }
3318
3439
  UPB_INLINE void google_protobuf_FileOptions_clear_java_multiple_files(google_protobuf_FileOptions* msg) {
3319
- const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3440
+ const upb_MiniTableField field = {10, 11, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3320
3441
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3321
3442
  }
3322
3443
  UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions* msg) {
3323
3444
  bool default_val = false;
3324
3445
  bool ret;
3325
- const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3446
+ const upb_MiniTableField field = {10, 11, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3326
3447
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3327
3448
  &default_val, &ret);
3328
3449
  return ret;
3329
3450
  }
3330
3451
  UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions* msg) {
3331
- const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3452
+ const upb_MiniTableField field = {10, 11, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3332
3453
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3333
3454
  }
3334
3455
  UPB_INLINE void google_protobuf_FileOptions_clear_go_package(google_protobuf_FileOptions* msg) {
@@ -3348,115 +3469,115 @@ UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf
3348
3469
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3349
3470
  }
3350
3471
  UPB_INLINE void google_protobuf_FileOptions_clear_cc_generic_services(google_protobuf_FileOptions* msg) {
3351
- const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3472
+ const upb_MiniTableField field = {16, 12, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3352
3473
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3353
3474
  }
3354
3475
  UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions* msg) {
3355
3476
  bool default_val = false;
3356
3477
  bool ret;
3357
- const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3478
+ const upb_MiniTableField field = {16, 12, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3358
3479
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3359
3480
  &default_val, &ret);
3360
3481
  return ret;
3361
3482
  }
3362
3483
  UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions* msg) {
3363
- const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3484
+ const upb_MiniTableField field = {16, 12, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3364
3485
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3365
3486
  }
3366
3487
  UPB_INLINE void google_protobuf_FileOptions_clear_java_generic_services(google_protobuf_FileOptions* msg) {
3367
- const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3488
+ const upb_MiniTableField field = {17, 13, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3368
3489
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3369
3490
  }
3370
3491
  UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions* msg) {
3371
3492
  bool default_val = false;
3372
3493
  bool ret;
3373
- const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3494
+ const upb_MiniTableField field = {17, 13, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3374
3495
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3375
3496
  &default_val, &ret);
3376
3497
  return ret;
3377
3498
  }
3378
3499
  UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions* msg) {
3379
- const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3500
+ const upb_MiniTableField field = {17, 13, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3380
3501
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3381
3502
  }
3382
3503
  UPB_INLINE void google_protobuf_FileOptions_clear_py_generic_services(google_protobuf_FileOptions* msg) {
3383
- const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3504
+ const upb_MiniTableField field = {18, 14, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3384
3505
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3385
3506
  }
3386
3507
  UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions* msg) {
3387
3508
  bool default_val = false;
3388
3509
  bool ret;
3389
- const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3510
+ const upb_MiniTableField field = {18, 14, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3390
3511
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3391
3512
  &default_val, &ret);
3392
3513
  return ret;
3393
3514
  }
3394
3515
  UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions* msg) {
3395
- const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3516
+ const upb_MiniTableField field = {18, 14, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3396
3517
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3397
3518
  }
3398
3519
  UPB_INLINE void google_protobuf_FileOptions_clear_java_generate_equals_and_hash(google_protobuf_FileOptions* msg) {
3399
- const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3520
+ const upb_MiniTableField field = {20, 15, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3400
3521
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3401
3522
  }
3402
3523
  UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) {
3403
3524
  bool default_val = false;
3404
3525
  bool ret;
3405
- const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3526
+ const upb_MiniTableField field = {20, 15, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3406
3527
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3407
3528
  &default_val, &ret);
3408
3529
  return ret;
3409
3530
  }
3410
3531
  UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions* msg) {
3411
- const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3532
+ const upb_MiniTableField field = {20, 15, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3412
3533
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3413
3534
  }
3414
3535
  UPB_INLINE void google_protobuf_FileOptions_clear_deprecated(google_protobuf_FileOptions* msg) {
3415
- const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3536
+ const upb_MiniTableField field = {23, 16, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3416
3537
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3417
3538
  }
3418
3539
  UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions* msg) {
3419
3540
  bool default_val = false;
3420
3541
  bool ret;
3421
- const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3542
+ const upb_MiniTableField field = {23, 16, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3422
3543
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3423
3544
  &default_val, &ret);
3424
3545
  return ret;
3425
3546
  }
3426
3547
  UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions* msg) {
3427
- const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3548
+ const upb_MiniTableField field = {23, 16, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3428
3549
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3429
3550
  }
3430
3551
  UPB_INLINE void google_protobuf_FileOptions_clear_java_string_check_utf8(google_protobuf_FileOptions* msg) {
3431
- const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3552
+ const upb_MiniTableField field = {27, 17, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3432
3553
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3433
3554
  }
3434
3555
  UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions* msg) {
3435
3556
  bool default_val = false;
3436
3557
  bool ret;
3437
- const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3558
+ const upb_MiniTableField field = {27, 17, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3438
3559
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3439
3560
  &default_val, &ret);
3440
3561
  return ret;
3441
3562
  }
3442
3563
  UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions* msg) {
3443
- const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3564
+ const upb_MiniTableField field = {27, 17, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3444
3565
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3445
3566
  }
3446
3567
  UPB_INLINE void google_protobuf_FileOptions_clear_cc_enable_arenas(google_protobuf_FileOptions* msg) {
3447
- const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3568
+ const upb_MiniTableField field = {31, 18, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3448
3569
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3449
3570
  }
3450
3571
  UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions* msg) {
3451
3572
  bool default_val = true;
3452
3573
  bool ret;
3453
- const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3574
+ const upb_MiniTableField field = {31, 18, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3454
3575
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3455
3576
  &default_val, &ret);
3456
3577
  return ret;
3457
3578
  }
3458
3579
  UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions* msg) {
3459
- const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3580
+ const upb_MiniTableField field = {31, 18, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3460
3581
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3461
3582
  }
3462
3583
  UPB_INLINE void google_protobuf_FileOptions_clear_objc_class_prefix(google_protobuf_FileOptions* msg) {
@@ -3633,11 +3754,11 @@ UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_prot
3633
3754
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3634
3755
  }
3635
3756
  UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) {
3636
- const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3757
+ const upb_MiniTableField field = {9, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3637
3758
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3638
3759
  }
3639
3760
  UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
3640
- const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3761
+ const upb_MiniTableField field = {10, 11, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3641
3762
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3642
3763
  }
3643
3764
  UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_StringView value) {
@@ -3645,31 +3766,31 @@ UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileO
3645
3766
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3646
3767
  }
3647
3768
  UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
3648
- const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3769
+ const upb_MiniTableField field = {16, 12, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3649
3770
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3650
3771
  }
3651
3772
  UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
3652
- const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3773
+ const upb_MiniTableField field = {17, 13, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3653
3774
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3654
3775
  }
3655
3776
  UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
3656
- const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3777
+ const upb_MiniTableField field = {18, 14, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3657
3778
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3658
3779
  }
3659
3780
  UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
3660
- const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3781
+ const upb_MiniTableField field = {20, 15, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3661
3782
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3662
3783
  }
3663
3784
  UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
3664
- const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3785
+ const upb_MiniTableField field = {23, 16, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3665
3786
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3666
3787
  }
3667
3788
  UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
3668
- const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3789
+ const upb_MiniTableField field = {27, 17, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3669
3790
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3670
3791
  }
3671
3792
  UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
3672
- const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3793
+ const upb_MiniTableField field = {31, 18, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3673
3794
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3674
3795
  }
3675
3796
  UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
@@ -4018,67 +4139,67 @@ UPB_INLINE char* google_protobuf_FieldOptions_serialize_ex(const google_protobuf
4018
4139
  return ptr;
4019
4140
  }
4020
4141
  UPB_INLINE void google_protobuf_FieldOptions_clear_ctype(google_protobuf_FieldOptions* msg) {
4021
- const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4142
+ const upb_MiniTableField field = {1, 16, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4022
4143
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4023
4144
  }
4024
4145
  UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions* msg) {
4025
4146
  int32_t default_val = 0;
4026
4147
  int32_t ret;
4027
- const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4148
+ const upb_MiniTableField field = {1, 16, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4028
4149
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4029
4150
  &default_val, &ret);
4030
4151
  return ret;
4031
4152
  }
4032
4153
  UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions* msg) {
4033
- const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4154
+ const upb_MiniTableField field = {1, 16, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4034
4155
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4035
4156
  }
4036
4157
  UPB_INLINE void google_protobuf_FieldOptions_clear_packed(google_protobuf_FieldOptions* msg) {
4037
- const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4158
+ const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4038
4159
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4039
4160
  }
4040
4161
  UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions* msg) {
4041
4162
  bool default_val = false;
4042
4163
  bool ret;
4043
- const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4164
+ const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4044
4165
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4045
4166
  &default_val, &ret);
4046
4167
  return ret;
4047
4168
  }
4048
4169
  UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions* msg) {
4049
- const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4170
+ const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4050
4171
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4051
4172
  }
4052
4173
  UPB_INLINE void google_protobuf_FieldOptions_clear_deprecated(google_protobuf_FieldOptions* msg) {
4053
- const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4174
+ const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4054
4175
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4055
4176
  }
4056
4177
  UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions* msg) {
4057
4178
  bool default_val = false;
4058
4179
  bool ret;
4059
- const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4180
+ const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4060
4181
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4061
4182
  &default_val, &ret);
4062
4183
  return ret;
4063
4184
  }
4064
4185
  UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions* msg) {
4065
- const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4186
+ const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4066
4187
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4067
4188
  }
4068
4189
  UPB_INLINE void google_protobuf_FieldOptions_clear_lazy(google_protobuf_FieldOptions* msg) {
4069
- const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4190
+ const upb_MiniTableField field = {5, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4070
4191
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4071
4192
  }
4072
4193
  UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions* msg) {
4073
4194
  bool default_val = false;
4074
4195
  bool ret;
4075
- const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4196
+ const upb_MiniTableField field = {5, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4076
4197
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4077
4198
  &default_val, &ret);
4078
4199
  return ret;
4079
4200
  }
4080
4201
  UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions* msg) {
4081
- const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4202
+ const upb_MiniTableField field = {5, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4082
4203
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4083
4204
  }
4084
4205
  UPB_INLINE void google_protobuf_FieldOptions_clear_jstype(google_protobuf_FieldOptions* msg) {
@@ -4098,75 +4219,75 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_Fi
4098
4219
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4099
4220
  }
4100
4221
  UPB_INLINE void google_protobuf_FieldOptions_clear_weak(google_protobuf_FieldOptions* msg) {
4101
- const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4222
+ const upb_MiniTableField field = {10, 13, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4102
4223
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4103
4224
  }
4104
4225
  UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions* msg) {
4105
4226
  bool default_val = false;
4106
4227
  bool ret;
4107
- const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4228
+ const upb_MiniTableField field = {10, 13, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4108
4229
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4109
4230
  &default_val, &ret);
4110
4231
  return ret;
4111
4232
  }
4112
4233
  UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions* msg) {
4113
- const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4234
+ const upb_MiniTableField field = {10, 13, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4114
4235
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4115
4236
  }
4116
4237
  UPB_INLINE void google_protobuf_FieldOptions_clear_unverified_lazy(google_protobuf_FieldOptions* msg) {
4117
- const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4238
+ const upb_MiniTableField field = {15, 14, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4118
4239
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4119
4240
  }
4120
4241
  UPB_INLINE bool google_protobuf_FieldOptions_unverified_lazy(const google_protobuf_FieldOptions* msg) {
4121
4242
  bool default_val = false;
4122
4243
  bool ret;
4123
- const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4244
+ const upb_MiniTableField field = {15, 14, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4124
4245
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4125
4246
  &default_val, &ret);
4126
4247
  return ret;
4127
4248
  }
4128
4249
  UPB_INLINE bool google_protobuf_FieldOptions_has_unverified_lazy(const google_protobuf_FieldOptions* msg) {
4129
- const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4250
+ const upb_MiniTableField field = {15, 14, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4130
4251
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4131
4252
  }
4132
4253
  UPB_INLINE void google_protobuf_FieldOptions_clear_debug_redact(google_protobuf_FieldOptions* msg) {
4133
- const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4254
+ const upb_MiniTableField field = {16, 15, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4134
4255
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4135
4256
  }
4136
4257
  UPB_INLINE bool google_protobuf_FieldOptions_debug_redact(const google_protobuf_FieldOptions* msg) {
4137
4258
  bool default_val = false;
4138
4259
  bool ret;
4139
- const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4260
+ const upb_MiniTableField field = {16, 15, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4140
4261
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4141
4262
  &default_val, &ret);
4142
4263
  return ret;
4143
4264
  }
4144
4265
  UPB_INLINE bool google_protobuf_FieldOptions_has_debug_redact(const google_protobuf_FieldOptions* msg) {
4145
- const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4266
+ const upb_MiniTableField field = {16, 15, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4146
4267
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4147
4268
  }
4148
4269
  UPB_INLINE void google_protobuf_FieldOptions_clear_retention(google_protobuf_FieldOptions* msg) {
4149
- const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4270
+ const upb_MiniTableField field = {17, 24, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4150
4271
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4151
4272
  }
4152
4273
  UPB_INLINE int32_t google_protobuf_FieldOptions_retention(const google_protobuf_FieldOptions* msg) {
4153
4274
  int32_t default_val = 0;
4154
4275
  int32_t ret;
4155
- const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4276
+ const upb_MiniTableField field = {17, 24, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4156
4277
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4157
4278
  &default_val, &ret);
4158
4279
  return ret;
4159
4280
  }
4160
4281
  UPB_INLINE bool google_protobuf_FieldOptions_has_retention(const google_protobuf_FieldOptions* msg) {
4161
- const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4282
+ const upb_MiniTableField field = {17, 24, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4162
4283
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4163
4284
  }
4164
4285
  UPB_INLINE void google_protobuf_FieldOptions_clear_targets(google_protobuf_FieldOptions* msg) {
4165
- const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4286
+ const upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4166
4287
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4167
4288
  }
4168
4289
  UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_protobuf_FieldOptions* msg, size_t* size) {
4169
- const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4290
+ const upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4170
4291
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4171
4292
  if (arr) {
4172
4293
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4177,7 +4298,7 @@ UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_prot
4177
4298
  }
4178
4299
  }
4179
4300
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4180
- const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4301
+ const upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4181
4302
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4182
4303
  if (size) {
4183
4304
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4185,7 +4306,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(cons
4185
4306
  return arr;
4186
4307
  }
4187
4308
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4188
- const upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4309
+ const upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4189
4310
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4190
4311
  &field, arena);
4191
4312
  if (size) {
@@ -4194,11 +4315,11 @@ UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(go
4194
4315
  return arr;
4195
4316
  }
4196
4317
  UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_protobuf_FieldOptions* msg) {
4197
- const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4318
+ const upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4198
4319
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4199
4320
  }
4200
4321
  UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) {
4201
- const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4322
+ const upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4202
4323
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4203
4324
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4204
4325
  if (arr) {
@@ -4210,7 +4331,7 @@ UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_prot
4210
4331
  }
4211
4332
  }
4212
4333
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4213
- const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4334
+ const upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4214
4335
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4215
4336
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4216
4337
  if (size) {
@@ -4219,7 +4340,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_a
4219
4340
  return arr;
4220
4341
  }
4221
4342
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4222
- const upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4343
+ const upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4223
4344
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4224
4345
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4225
4346
  &field, arena);
@@ -4229,45 +4350,45 @@ UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb
4229
4350
  return arr;
4230
4351
  }
4231
4352
  UPB_INLINE void google_protobuf_FieldOptions_clear_features(google_protobuf_FieldOptions* msg) {
4232
- const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4353
+ const upb_MiniTableField field = {21, UPB_SIZE(36, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4233
4354
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4234
4355
  }
4235
4356
  UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FieldOptions_features(const google_protobuf_FieldOptions* msg) {
4236
4357
  const google_protobuf_FeatureSet* default_val = NULL;
4237
4358
  const google_protobuf_FeatureSet* ret;
4238
- const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4359
+ const upb_MiniTableField field = {21, UPB_SIZE(36, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4239
4360
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4240
4361
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4241
4362
  &default_val, &ret);
4242
4363
  return ret;
4243
4364
  }
4244
4365
  UPB_INLINE bool google_protobuf_FieldOptions_has_features(const google_protobuf_FieldOptions* msg) {
4245
- const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4366
+ const upb_MiniTableField field = {21, UPB_SIZE(36, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4246
4367
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4247
4368
  }
4248
4369
  UPB_INLINE void google_protobuf_FieldOptions_clear_feature_support(google_protobuf_FieldOptions* msg) {
4249
- const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4370
+ const upb_MiniTableField field = {22, UPB_SIZE(40, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4250
4371
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4251
4372
  }
4252
4373
  UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_feature_support(const google_protobuf_FieldOptions* msg) {
4253
4374
  const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
4254
4375
  const google_protobuf_FieldOptions_FeatureSupport* ret;
4255
- const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4376
+ const upb_MiniTableField field = {22, UPB_SIZE(40, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4256
4377
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4257
4378
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4258
4379
  &default_val, &ret);
4259
4380
  return ret;
4260
4381
  }
4261
4382
  UPB_INLINE bool google_protobuf_FieldOptions_has_feature_support(const google_protobuf_FieldOptions* msg) {
4262
- const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4383
+ const upb_MiniTableField field = {22, UPB_SIZE(40, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4263
4384
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4264
4385
  }
4265
4386
  UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_protobuf_FieldOptions* msg) {
4266
- const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4387
+ const upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4267
4388
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4268
4389
  }
4269
4390
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) {
4270
- const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4391
+ const upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4271
4392
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4272
4393
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4273
4394
  if (arr) {
@@ -4279,7 +4400,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fie
4279
4400
  }
4280
4401
  }
4281
4402
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4282
- const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4403
+ const upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4283
4404
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4284
4405
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4285
4406
  if (size) {
@@ -4288,7 +4409,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_u
4288
4409
  return arr;
4289
4410
  }
4290
4411
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4291
- const upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4412
+ const upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4292
4413
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4293
4414
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4294
4415
  &field, arena);
@@ -4299,19 +4420,19 @@ UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable
4299
4420
  }
4300
4421
 
4301
4422
  UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) {
4302
- const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4423
+ const upb_MiniTableField field = {1, 16, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4303
4424
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4304
4425
  }
4305
4426
  UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
4306
- const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4427
+ const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4307
4428
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4308
4429
  }
4309
4430
  UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
4310
- const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4431
+ const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4311
4432
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4312
4433
  }
4313
4434
  UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
4314
- const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4435
+ const upb_MiniTableField field = {5, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4315
4436
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4316
4437
  }
4317
4438
  UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) {
@@ -4319,23 +4440,23 @@ UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOpt
4319
4440
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4320
4441
  }
4321
4442
  UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
4322
- const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4443
+ const upb_MiniTableField field = {10, 13, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4323
4444
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4324
4445
  }
4325
4446
  UPB_INLINE void google_protobuf_FieldOptions_set_unverified_lazy(google_protobuf_FieldOptions *msg, bool value) {
4326
- const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4447
+ const upb_MiniTableField field = {15, 14, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4327
4448
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4328
4449
  }
4329
4450
  UPB_INLINE void google_protobuf_FieldOptions_set_debug_redact(google_protobuf_FieldOptions *msg, bool value) {
4330
- const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4451
+ const upb_MiniTableField field = {16, 15, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4331
4452
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4332
4453
  }
4333
4454
  UPB_INLINE void google_protobuf_FieldOptions_set_retention(google_protobuf_FieldOptions *msg, int32_t value) {
4334
- const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4455
+ const upb_MiniTableField field = {17, 24, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4335
4456
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4336
4457
  }
4337
4458
  UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf_FieldOptions* msg, size_t* size) {
4338
- upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4459
+ upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4339
4460
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4340
4461
  if (arr) {
4341
4462
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4346,12 +4467,12 @@ UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf
4346
4467
  }
4347
4468
  }
4348
4469
  UPB_INLINE int32_t* google_protobuf_FieldOptions_resize_targets(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4349
- upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4470
+ upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4350
4471
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4351
4472
  &field, size, arena);
4352
4473
  }
4353
4474
  UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOptions* msg, int32_t val, upb_Arena* arena) {
4354
- upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4475
+ upb_MiniTableField field = {19, UPB_SIZE(28, 32), 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4355
4476
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4356
4477
  UPB_UPCAST(msg), &field, arena);
4357
4478
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4363,7 +4484,7 @@ UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOp
4363
4484
  return true;
4364
4485
  }
4365
4486
  UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) {
4366
- upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4487
+ upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4367
4488
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4368
4489
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4369
4490
  if (arr) {
@@ -4375,12 +4496,12 @@ UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOp
4375
4496
  }
4376
4497
  }
4377
4498
  UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_resize_edition_defaults(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4378
- upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4499
+ upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4379
4500
  return (google_protobuf_FieldOptions_EditionDefault**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4380
4501
  &field, size, arena);
4381
4502
  }
4382
4503
  UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4383
- upb_MiniTableField field = {20, UPB_SIZE(36, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4504
+ upb_MiniTableField field = {20, UPB_SIZE(32, 40), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4384
4505
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4385
4506
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4386
4507
  UPB_UPCAST(msg), &field, arena);
@@ -4395,7 +4516,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_F
4395
4516
  return sub;
4396
4517
  }
4397
4518
  UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) {
4398
- const upb_MiniTableField field = {21, UPB_SIZE(40, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4519
+ const upb_MiniTableField field = {21, UPB_SIZE(36, 48), 73, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4399
4520
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4400
4521
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4401
4522
  }
@@ -4408,7 +4529,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutab
4408
4529
  return sub;
4409
4530
  }
4410
4531
  UPB_INLINE void google_protobuf_FieldOptions_set_feature_support(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
4411
- const upb_MiniTableField field = {22, UPB_SIZE(44, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4532
+ const upb_MiniTableField field = {22, UPB_SIZE(40, 56), 74, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4412
4533
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4413
4534
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4414
4535
  }
@@ -4421,7 +4542,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_F
4421
4542
  return sub;
4422
4543
  }
4423
4544
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) {
4424
- upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4545
+ upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4425
4546
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4426
4547
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4427
4548
  if (arr) {
@@ -4433,12 +4554,12 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mu
4433
4554
  }
4434
4555
  }
4435
4556
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4436
- upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4557
+ upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4437
4558
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4438
4559
  &field, size, arena);
4439
4560
  }
4440
4561
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4441
- upb_MiniTableField field = {999, UPB_SIZE(48, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4562
+ upb_MiniTableField field = {999, UPB_SIZE(44, 64), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4442
4563
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4443
4564
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4444
4565
  UPB_UPCAST(msg), &field, arena);
@@ -5049,44 +5170,44 @@ UPB_INLINE bool google_protobuf_EnumValueOptions_has_features(const google_proto
5049
5170
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5050
5171
  }
5051
5172
  UPB_INLINE void google_protobuf_EnumValueOptions_clear_debug_redact(google_protobuf_EnumValueOptions* msg) {
5052
- const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5173
+ const upb_MiniTableField field = {3, 10, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5053
5174
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5054
5175
  }
5055
5176
  UPB_INLINE bool google_protobuf_EnumValueOptions_debug_redact(const google_protobuf_EnumValueOptions* msg) {
5056
5177
  bool default_val = false;
5057
5178
  bool ret;
5058
- const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5179
+ const upb_MiniTableField field = {3, 10, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5059
5180
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5060
5181
  &default_val, &ret);
5061
5182
  return ret;
5062
5183
  }
5063
5184
  UPB_INLINE bool google_protobuf_EnumValueOptions_has_debug_redact(const google_protobuf_EnumValueOptions* msg) {
5064
- const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5185
+ const upb_MiniTableField field = {3, 10, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5065
5186
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5066
5187
  }
5067
5188
  UPB_INLINE void google_protobuf_EnumValueOptions_clear_feature_support(google_protobuf_EnumValueOptions* msg) {
5068
- const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5189
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5069
5190
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5070
5191
  }
5071
5192
  UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_feature_support(const google_protobuf_EnumValueOptions* msg) {
5072
5193
  const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
5073
5194
  const google_protobuf_FieldOptions_FeatureSupport* ret;
5074
- const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5195
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5075
5196
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5076
5197
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5077
5198
  &default_val, &ret);
5078
5199
  return ret;
5079
5200
  }
5080
5201
  UPB_INLINE bool google_protobuf_EnumValueOptions_has_feature_support(const google_protobuf_EnumValueOptions* msg) {
5081
- const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5202
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5082
5203
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5083
5204
  }
5084
5205
  UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(google_protobuf_EnumValueOptions* msg) {
5085
- const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5206
+ const upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5086
5207
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5087
5208
  }
5088
5209
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) {
5089
- const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5210
+ const upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5090
5211
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5091
5212
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5092
5213
  if (arr) {
@@ -5098,7 +5219,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
5098
5219
  }
5099
5220
  }
5100
5221
  UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) {
5101
- const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5222
+ const upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5102
5223
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5103
5224
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5104
5225
  if (size) {
@@ -5107,7 +5228,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_opti
5107
5228
  return arr;
5108
5229
  }
5109
5230
  UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) {
5110
- const upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5231
+ const upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5111
5232
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5112
5233
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5113
5234
  &field, arena);
@@ -5135,11 +5256,11 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_m
5135
5256
  return sub;
5136
5257
  }
5137
5258
  UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobuf_EnumValueOptions *msg, bool value) {
5138
- const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5259
+ const upb_MiniTableField field = {3, 10, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5139
5260
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5140
5261
  }
5141
5262
  UPB_INLINE void google_protobuf_EnumValueOptions_set_feature_support(google_protobuf_EnumValueOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
5142
- const upb_MiniTableField field = {4, UPB_SIZE(20, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5263
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 67, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5143
5264
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5144
5265
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5145
5266
  }
@@ -5152,7 +5273,7 @@ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_E
5152
5273
  return sub;
5153
5274
  }
5154
5275
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) {
5155
- upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5276
+ upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5156
5277
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5157
5278
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5158
5279
  if (arr) {
@@ -5164,12 +5285,12 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOption
5164
5285
  }
5165
5286
  }
5166
5287
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t size, upb_Arena* arena) {
5167
- upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5288
+ upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5168
5289
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
5169
5290
  &field, size, arena);
5170
5291
  }
5171
5292
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
5172
- upb_MiniTableField field = {999, UPB_SIZE(24, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5293
+ upb_MiniTableField field = {999, UPB_SIZE(20, 32), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5173
5294
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5174
5295
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5175
5296
  UPB_UPCAST(msg), &field, arena);
@@ -5551,11 +5672,11 @@ UPB_INLINE char* google_protobuf_UninterpretedOption_serialize_ex(const google_p
5551
5672
  return ptr;
5552
5673
  }
5553
5674
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_UninterpretedOption* msg) {
5554
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5675
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5555
5676
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5556
5677
  }
5557
5678
  UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5558
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5679
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5559
5680
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5560
5681
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5561
5682
  if (arr) {
@@ -5567,7 +5688,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_pro
5567
5688
  }
5568
5689
  }
5569
5690
  UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5570
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5691
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5571
5692
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5572
5693
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5573
5694
  if (size) {
@@ -5576,7 +5697,7 @@ UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(
5576
5697
  return arr;
5577
5698
  }
5578
5699
  UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) {
5579
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5700
+ const upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5580
5701
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5581
5702
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5582
5703
  &field, arena);
@@ -5586,104 +5707,104 @@ UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_arra
5586
5707
  return arr;
5587
5708
  }
5588
5709
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_identifier_value(google_protobuf_UninterpretedOption* msg) {
5589
- const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5710
+ const upb_MiniTableField field = {3, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5590
5711
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5591
5712
  }
5592
5713
  UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption* msg) {
5593
5714
  upb_StringView default_val = upb_StringView_FromString("");
5594
5715
  upb_StringView ret;
5595
- const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5716
+ const upb_MiniTableField field = {3, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5596
5717
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5597
5718
  &default_val, &ret);
5598
5719
  return ret;
5599
5720
  }
5600
5721
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption* msg) {
5601
- const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5722
+ const upb_MiniTableField field = {3, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5602
5723
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5603
5724
  }
5604
5725
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_positive_int_value(google_protobuf_UninterpretedOption* msg) {
5605
- const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5726
+ const upb_MiniTableField field = {4, UPB_SIZE(40, 72), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5606
5727
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5607
5728
  }
5608
5729
  UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption* msg) {
5609
5730
  uint64_t default_val = (uint64_t)0ull;
5610
5731
  uint64_t ret;
5611
- const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5732
+ const upb_MiniTableField field = {4, UPB_SIZE(40, 72), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5612
5733
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5613
5734
  &default_val, &ret);
5614
5735
  return ret;
5615
5736
  }
5616
5737
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption* msg) {
5617
- const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5738
+ const upb_MiniTableField field = {4, UPB_SIZE(40, 72), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5618
5739
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5619
5740
  }
5620
5741
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_negative_int_value(google_protobuf_UninterpretedOption* msg) {
5621
- const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5742
+ const upb_MiniTableField field = {5, UPB_SIZE(48, 80), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5622
5743
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5623
5744
  }
5624
5745
  UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption* msg) {
5625
5746
  int64_t default_val = (int64_t)0ll;
5626
5747
  int64_t ret;
5627
- const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5748
+ const upb_MiniTableField field = {5, UPB_SIZE(48, 80), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5628
5749
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5629
5750
  &default_val, &ret);
5630
5751
  return ret;
5631
5752
  }
5632
5753
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption* msg) {
5633
- const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5754
+ const upb_MiniTableField field = {5, UPB_SIZE(48, 80), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5634
5755
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5635
5756
  }
5636
5757
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_double_value(google_protobuf_UninterpretedOption* msg) {
5637
- const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5758
+ const upb_MiniTableField field = {6, UPB_SIZE(56, 88), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5638
5759
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5639
5760
  }
5640
5761
  UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption* msg) {
5641
5762
  double default_val = 0;
5642
5763
  double ret;
5643
- const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5764
+ const upb_MiniTableField field = {6, UPB_SIZE(56, 88), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5644
5765
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5645
5766
  &default_val, &ret);
5646
5767
  return ret;
5647
5768
  }
5648
5769
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption* msg) {
5649
- const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5770
+ const upb_MiniTableField field = {6, UPB_SIZE(56, 88), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5650
5771
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5651
5772
  }
5652
5773
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_string_value(google_protobuf_UninterpretedOption* msg) {
5653
- const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5774
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 32), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5654
5775
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5655
5776
  }
5656
5777
  UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption* msg) {
5657
5778
  upb_StringView default_val = upb_StringView_FromString("");
5658
5779
  upb_StringView ret;
5659
- const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5780
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 32), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5660
5781
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5661
5782
  &default_val, &ret);
5662
5783
  return ret;
5663
5784
  }
5664
5785
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption* msg) {
5665
- const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5786
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 32), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5666
5787
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5667
5788
  }
5668
5789
  UPB_INLINE void google_protobuf_UninterpretedOption_clear_aggregate_value(google_protobuf_UninterpretedOption* msg) {
5669
- const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5790
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5670
5791
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5671
5792
  }
5672
5793
  UPB_INLINE upb_StringView google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption* msg) {
5673
5794
  upb_StringView default_val = upb_StringView_FromString("");
5674
5795
  upb_StringView ret;
5675
- const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5796
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5676
5797
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5677
5798
  &default_val, &ret);
5678
5799
  return ret;
5679
5800
  }
5680
5801
  UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption* msg) {
5681
- const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5802
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5682
5803
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5683
5804
  }
5684
5805
 
5685
5806
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) {
5686
- upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5807
+ upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5687
5808
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5688
5809
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5689
5810
  if (arr) {
@@ -5695,12 +5816,12 @@ UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_Uninte
5695
5816
  }
5696
5817
  }
5697
5818
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption* msg, size_t size, upb_Arena* arena) {
5698
- upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5819
+ upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5699
5820
  return (google_protobuf_UninterpretedOption_NamePart**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
5700
5821
  &field, size, arena);
5701
5822
  }
5702
5823
  UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) {
5703
- upb_MiniTableField field = {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5824
+ upb_MiniTableField field = {2, UPB_SIZE(12, 64), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5704
5825
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5705
5826
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5706
5827
  UPB_UPCAST(msg), &field, arena);
@@ -5715,27 +5836,27 @@ UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_
5715
5836
  return sub;
5716
5837
  }
5717
5838
  UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5718
- const upb_MiniTableField field = {3, UPB_SIZE(16, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5839
+ const upb_MiniTableField field = {3, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5719
5840
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5720
5841
  }
5721
5842
  UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
5722
- const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5843
+ const upb_MiniTableField field = {4, UPB_SIZE(40, 72), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5723
5844
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5724
5845
  }
5725
5846
  UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
5726
- const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5847
+ const upb_MiniTableField field = {5, UPB_SIZE(48, 80), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5727
5848
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5728
5849
  }
5729
5850
  UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
5730
- const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5851
+ const upb_MiniTableField field = {6, UPB_SIZE(56, 88), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5731
5852
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5732
5853
  }
5733
5854
  UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5734
- const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5855
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 32), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5735
5856
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5736
5857
  }
5737
5858
  UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5738
- const upb_MiniTableField field = {8, UPB_SIZE(56, 80), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5859
+ const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 69, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5739
5860
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5740
5861
  }
5741
5862
 
@@ -5949,6 +6070,38 @@ UPB_INLINE bool google_protobuf_FeatureSet_has_json_format(const google_protobuf
5949
6070
  const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5950
6071
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5951
6072
  }
6073
+ UPB_INLINE void google_protobuf_FeatureSet_clear_enforce_naming_style(google_protobuf_FeatureSet* msg) {
6074
+ const upb_MiniTableField field = {7, 36, 70, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6075
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6076
+ }
6077
+ UPB_INLINE int32_t google_protobuf_FeatureSet_enforce_naming_style(const google_protobuf_FeatureSet* msg) {
6078
+ int32_t default_val = 0;
6079
+ int32_t ret;
6080
+ const upb_MiniTableField field = {7, 36, 70, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6081
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6082
+ &default_val, &ret);
6083
+ return ret;
6084
+ }
6085
+ UPB_INLINE bool google_protobuf_FeatureSet_has_enforce_naming_style(const google_protobuf_FeatureSet* msg) {
6086
+ const upb_MiniTableField field = {7, 36, 70, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6087
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6088
+ }
6089
+ UPB_INLINE void google_protobuf_FeatureSet_clear_default_symbol_visibility(google_protobuf_FeatureSet* msg) {
6090
+ const upb_MiniTableField field = {8, 40, 71, 7, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6091
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6092
+ }
6093
+ UPB_INLINE int32_t google_protobuf_FeatureSet_default_symbol_visibility(const google_protobuf_FeatureSet* msg) {
6094
+ int32_t default_val = 0;
6095
+ int32_t ret;
6096
+ const upb_MiniTableField field = {8, 40, 71, 7, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6097
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6098
+ &default_val, &ret);
6099
+ return ret;
6100
+ }
6101
+ UPB_INLINE bool google_protobuf_FeatureSet_has_default_symbol_visibility(const google_protobuf_FeatureSet* msg) {
6102
+ const upb_MiniTableField field = {8, 40, 71, 7, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6103
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6104
+ }
5952
6105
 
5953
6106
  UPB_INLINE void google_protobuf_FeatureSet_set_field_presence(google_protobuf_FeatureSet *msg, int32_t value) {
5954
6107
  const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
@@ -5974,6 +6127,52 @@ UPB_INLINE void google_protobuf_FeatureSet_set_json_format(google_protobuf_Featu
5974
6127
  const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5975
6128
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5976
6129
  }
6130
+ UPB_INLINE void google_protobuf_FeatureSet_set_enforce_naming_style(google_protobuf_FeatureSet *msg, int32_t value) {
6131
+ const upb_MiniTableField field = {7, 36, 70, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6132
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6133
+ }
6134
+ UPB_INLINE void google_protobuf_FeatureSet_set_default_symbol_visibility(google_protobuf_FeatureSet *msg, int32_t value) {
6135
+ const upb_MiniTableField field = {8, 40, 71, 7, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6136
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6137
+ }
6138
+
6139
+ /* google.protobuf.FeatureSet.VisibilityFeature */
6140
+
6141
+ UPB_INLINE google_protobuf_FeatureSet_VisibilityFeature* google_protobuf_FeatureSet_VisibilityFeature_new(upb_Arena* arena) {
6142
+ return (google_protobuf_FeatureSet_VisibilityFeature*)_upb_Message_New(&google__protobuf__FeatureSet__VisibilityFeature_msg_init, arena);
6143
+ }
6144
+ UPB_INLINE google_protobuf_FeatureSet_VisibilityFeature* google_protobuf_FeatureSet_VisibilityFeature_parse(const char* buf, size_t size, upb_Arena* arena) {
6145
+ google_protobuf_FeatureSet_VisibilityFeature* ret = google_protobuf_FeatureSet_VisibilityFeature_new(arena);
6146
+ if (!ret) return NULL;
6147
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet__VisibilityFeature_msg_init, NULL, 0, arena) !=
6148
+ kUpb_DecodeStatus_Ok) {
6149
+ return NULL;
6150
+ }
6151
+ return ret;
6152
+ }
6153
+ UPB_INLINE google_protobuf_FeatureSet_VisibilityFeature* google_protobuf_FeatureSet_VisibilityFeature_parse_ex(const char* buf, size_t size,
6154
+ const upb_ExtensionRegistry* extreg,
6155
+ int options, upb_Arena* arena) {
6156
+ google_protobuf_FeatureSet_VisibilityFeature* ret = google_protobuf_FeatureSet_VisibilityFeature_new(arena);
6157
+ if (!ret) return NULL;
6158
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FeatureSet__VisibilityFeature_msg_init, extreg, options,
6159
+ arena) != kUpb_DecodeStatus_Ok) {
6160
+ return NULL;
6161
+ }
6162
+ return ret;
6163
+ }
6164
+ UPB_INLINE char* google_protobuf_FeatureSet_VisibilityFeature_serialize(const google_protobuf_FeatureSet_VisibilityFeature* msg, upb_Arena* arena, size_t* len) {
6165
+ char* ptr;
6166
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet__VisibilityFeature_msg_init, 0, arena, &ptr, len);
6167
+ return ptr;
6168
+ }
6169
+ UPB_INLINE char* google_protobuf_FeatureSet_VisibilityFeature_serialize_ex(const google_protobuf_FeatureSet_VisibilityFeature* msg, int options,
6170
+ upb_Arena* arena, size_t* len) {
6171
+ char* ptr;
6172
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSet__VisibilityFeature_msg_init, options, arena, &ptr, len);
6173
+ return ptr;
6174
+ }
6175
+
5977
6176
 
5978
6177
  /* google.protobuf.FeatureSetDefaults */
5979
6178
 
@@ -6380,11 +6579,11 @@ UPB_INLINE char* google_protobuf_SourceCodeInfo_Location_serialize_ex(const goog
6380
6579
  return ptr;
6381
6580
  }
6382
6581
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_path(google_protobuf_SourceCodeInfo_Location* msg) {
6383
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6582
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6384
6583
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6385
6584
  }
6386
6585
  UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6387
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6586
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6388
6587
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6389
6588
  if (arr) {
6390
6589
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6395,7 +6594,7 @@ UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const goo
6395
6594
  }
6396
6595
  }
6397
6596
  UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_path_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6398
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6597
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6399
6598
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6400
6599
  if (size) {
6401
6600
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6403,7 +6602,7 @@ UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_path_upb_ar
6403
6602
  return arr;
6404
6603
  }
6405
6604
  UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_path_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) {
6406
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6605
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6407
6606
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6408
6607
  &field, arena);
6409
6608
  if (size) {
@@ -6412,11 +6611,11 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_path_mutable_upb_
6412
6611
  return arr;
6413
6612
  }
6414
6613
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_span(google_protobuf_SourceCodeInfo_Location* msg) {
6415
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6614
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6416
6615
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6417
6616
  }
6418
6617
  UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6419
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6618
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6420
6619
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6421
6620
  if (arr) {
6422
6621
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6427,7 +6626,7 @@ UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const goo
6427
6626
  }
6428
6627
  }
6429
6628
  UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_span_upb_array(const google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6430
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6629
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6431
6630
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6432
6631
  if (size) {
6433
6632
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6435,7 +6634,7 @@ UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_Location_span_upb_ar
6435
6634
  return arr;
6436
6635
  }
6437
6636
  UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_span_mutable_upb_array(google_protobuf_SourceCodeInfo_Location* msg, size_t* size, upb_Arena* arena) {
6438
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6637
+ const upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6439
6638
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6440
6639
  &field, arena);
6441
6640
  if (size) {
@@ -6444,35 +6643,35 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_span_mutable_upb_
6444
6643
  return arr;
6445
6644
  }
6446
6645
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_comments(google_protobuf_SourceCodeInfo_Location* msg) {
6447
- const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6646
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6448
6647
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6449
6648
  }
6450
6649
  UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
6451
6650
  upb_StringView default_val = upb_StringView_FromString("");
6452
6651
  upb_StringView ret;
6453
- const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6652
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6454
6653
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6455
6654
  &default_val, &ret);
6456
6655
  return ret;
6457
6656
  }
6458
6657
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
6459
- const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6658
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6460
6659
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6461
6660
  }
6462
6661
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_trailing_comments(google_protobuf_SourceCodeInfo_Location* msg) {
6463
- const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6662
+ const upb_MiniTableField field = {4, 32, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6464
6663
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6465
6664
  }
6466
6665
  UPB_INLINE upb_StringView google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
6467
6666
  upb_StringView default_val = upb_StringView_FromString("");
6468
6667
  upb_StringView ret;
6469
- const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6668
+ const upb_MiniTableField field = {4, 32, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6470
6669
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6471
6670
  &default_val, &ret);
6472
6671
  return ret;
6473
6672
  }
6474
6673
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location* msg) {
6475
- const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6674
+ const upb_MiniTableField field = {4, 32, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6476
6675
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6477
6676
  }
6478
6677
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_clear_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg) {
@@ -6509,7 +6708,7 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_Location_leading_detached_
6509
6708
  }
6510
6709
 
6511
6710
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6512
- upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6711
+ upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6513
6712
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6514
6713
  if (arr) {
6515
6714
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6520,12 +6719,12 @@ UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_
6520
6719
  }
6521
6720
  }
6522
6721
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) {
6523
- upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6722
+ upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6524
6723
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6525
6724
  &field, size, arena);
6526
6725
  }
6527
6726
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) {
6528
- upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6727
+ upb_MiniTableField field = {1, UPB_SIZE(12, 48), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6529
6728
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6530
6729
  UPB_UPCAST(msg), &field, arena);
6531
6730
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6537,7 +6736,7 @@ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf
6537
6736
  return true;
6538
6737
  }
6539
6738
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6540
- upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6739
+ upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6541
6740
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6542
6741
  if (arr) {
6543
6742
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6548,12 +6747,12 @@ UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_
6548
6747
  }
6549
6748
  }
6550
6749
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location* msg, size_t size, upb_Arena* arena) {
6551
- upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6750
+ upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6552
6751
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6553
6752
  &field, size, arena);
6554
6753
  }
6555
6754
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location* msg, int32_t val, upb_Arena* arena) {
6556
- upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6755
+ upb_MiniTableField field = {2, UPB_SIZE(16, 56), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6557
6756
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6558
6757
  UPB_UPCAST(msg), &field, arena);
6559
6758
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6565,11 +6764,11 @@ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf
6565
6764
  return true;
6566
6765
  }
6567
6766
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6568
- const upb_MiniTableField field = {3, UPB_SIZE(24, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6767
+ const upb_MiniTableField field = {3, UPB_SIZE(24, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6569
6768
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6570
6769
  }
6571
6770
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6572
- const upb_MiniTableField field = {4, UPB_SIZE(32, 48), 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6771
+ const upb_MiniTableField field = {4, 32, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6573
6772
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6574
6773
  }
6575
6774
  UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
@@ -6743,11 +6942,11 @@ UPB_INLINE char* google_protobuf_GeneratedCodeInfo_Annotation_serialize_ex(const
6743
6942
  return ptr;
6744
6943
  }
6745
6944
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_path(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
6746
- const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6945
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6747
6946
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6748
6947
  }
6749
6948
  UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
6750
- const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6949
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6751
6950
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6752
6951
  if (arr) {
6753
6952
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6758,7 +6957,7 @@ UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(cons
6758
6957
  }
6759
6958
  }
6760
6959
  UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_upb_array(const google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
6761
- const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6960
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6762
6961
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6763
6962
  if (size) {
6764
6963
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6766,7 +6965,7 @@ UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_u
6766
6965
  return arr;
6767
6966
  }
6768
6967
  UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_mutable_upb_array(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size, upb_Arena* arena) {
6769
- const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6968
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6770
6969
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6771
6970
  &field, arena);
6772
6971
  if (size) {
@@ -6775,19 +6974,19 @@ UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_Annotation_path_mutable
6775
6974
  return arr;
6776
6975
  }
6777
6976
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_source_file(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
6778
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6977
+ const upb_MiniTableField field = {2, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6779
6978
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6780
6979
  }
6781
6980
  UPB_INLINE upb_StringView google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
6782
6981
  upb_StringView default_val = upb_StringView_FromString("");
6783
6982
  upb_StringView ret;
6784
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6983
+ const upb_MiniTableField field = {2, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6785
6984
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6786
6985
  &default_val, &ret);
6787
6986
  return ret;
6788
6987
  }
6789
6988
  UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation* msg) {
6790
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6989
+ const upb_MiniTableField field = {2, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6791
6990
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6792
6991
  }
6793
6992
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_clear_begin(google_protobuf_GeneratedCodeInfo_Annotation* msg) {
@@ -6840,7 +7039,7 @@ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_semantic(const
6840
7039
  }
6841
7040
 
6842
7041
  UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t* size) {
6843
- upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7042
+ upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6844
7043
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6845
7044
  if (arr) {
6846
7045
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6851,12 +7050,12 @@ UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(go
6851
7050
  }
6852
7051
  }
6853
7052
  UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, size_t size, upb_Arena* arena) {
6854
- upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7053
+ upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6855
7054
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
6856
7055
  &field, size, arena);
6857
7056
  }
6858
7057
  UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation* msg, int32_t val, upb_Arena* arena) {
6859
- upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7058
+ upb_MiniTableField field = {1, UPB_SIZE(12, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6860
7059
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6861
7060
  UPB_UPCAST(msg), &field, arena);
6862
7061
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6868,7 +7067,7 @@ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_pro
6868
7067
  return true;
6869
7068
  }
6870
7069
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_StringView value) {
6871
- const upb_MiniTableField field = {2, UPB_SIZE(28, 32), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7070
+ const upb_MiniTableField field = {2, UPB_SIZE(28, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6872
7071
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6873
7072
  }
6874
7073
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {