grpc 1.64.0 → 1.68.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2325) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +127 -99
  3. data/include/grpc/compression.h +1 -2
  4. data/include/grpc/credentials.h +2 -3
  5. data/include/grpc/event_engine/README.md +1 -1
  6. data/include/grpc/event_engine/endpoint_config.h +2 -2
  7. data/include/grpc/event_engine/event_engine.h +33 -12
  8. data/include/grpc/event_engine/extensible.h +5 -2
  9. data/include/grpc/event_engine/internal/memory_allocator_impl.h +4 -4
  10. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  11. data/include/grpc/event_engine/memory_allocator.h +3 -4
  12. data/include/grpc/event_engine/memory_request.h +19 -2
  13. data/include/grpc/event_engine/slice.h +3 -5
  14. data/include/grpc/event_engine/slice_buffer.h +6 -8
  15. data/include/grpc/grpc.h +1 -2
  16. data/include/grpc/grpc_audit_logging.h +3 -3
  17. data/include/grpc/grpc_crl_provider.h +5 -5
  18. data/include/grpc/grpc_posix.h +1 -2
  19. data/include/grpc/grpc_security.h +1 -2
  20. data/include/grpc/impl/call.h +2 -2
  21. data/include/grpc/impl/channel_arg_names.h +8 -4
  22. data/include/grpc/impl/grpc_types.h +1 -2
  23. data/include/grpc/impl/slice_type.h +1 -2
  24. data/include/grpc/module.modulemap +1 -0
  25. data/include/grpc/passive_listener.h +62 -0
  26. data/include/grpc/support/alloc.h +1 -2
  27. data/include/grpc/support/json.h +1 -2
  28. data/include/grpc/support/log.h +37 -64
  29. data/include/grpc/support/metrics.h +21 -6
  30. data/include/grpc/support/port_platform.h +31 -1
  31. data/include/grpc/support/sync_generic.h +2 -4
  32. data/include/grpc/support/sync_posix.h +1 -2
  33. data/include/grpc/support/time.h +1 -2
  34. data/src/core/channelz/channel_trace.cc +6 -7
  35. data/src/core/channelz/channel_trace.h +6 -8
  36. data/src/core/channelz/channelz.cc +8 -10
  37. data/src/core/channelz/channelz.h +15 -17
  38. data/src/core/channelz/channelz_registry.cc +10 -11
  39. data/src/core/channelz/channelz_registry.h +4 -5
  40. data/src/core/client_channel/backup_poller.cc +24 -15
  41. data/src/core/client_channel/client_channel.cc +1426 -0
  42. data/src/core/client_channel/client_channel.h +245 -0
  43. data/src/core/client_channel/client_channel_factory.cc +2 -2
  44. data/src/core/client_channel/client_channel_factory.h +1 -2
  45. data/src/core/client_channel/client_channel_filter.cc +348 -861
  46. data/src/core/client_channel/client_channel_filter.h +23 -76
  47. data/src/core/client_channel/client_channel_internal.h +23 -9
  48. data/src/core/client_channel/client_channel_plugin.cc +2 -17
  49. data/src/core/client_channel/client_channel_service_config.cc +2 -3
  50. data/src/core/client_channel/client_channel_service_config.h +6 -8
  51. data/src/core/client_channel/config_selector.h +21 -22
  52. data/src/core/client_channel/connector.h +3 -3
  53. data/src/core/client_channel/direct_channel.cc +83 -0
  54. data/src/core/client_channel/direct_channel.h +101 -0
  55. data/src/core/client_channel/dynamic_filters.cc +16 -14
  56. data/src/core/client_channel/dynamic_filters.h +9 -10
  57. data/src/core/client_channel/global_subchannel_pool.cc +2 -2
  58. data/src/core/client_channel/global_subchannel_pool.h +2 -3
  59. data/src/core/client_channel/lb_metadata.cc +120 -0
  60. data/src/core/client_channel/lb_metadata.h +55 -0
  61. data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
  62. data/src/core/client_channel/load_balanced_call_destination.h +48 -0
  63. data/src/core/client_channel/local_subchannel_pool.cc +2 -5
  64. data/src/core/client_channel/local_subchannel_pool.h +1 -1
  65. data/src/core/client_channel/retry_filter.cc +8 -17
  66. data/src/core/client_channel/retry_filter.h +6 -15
  67. data/src/core/client_channel/retry_filter_legacy_call_data.cc +206 -318
  68. data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -14
  69. data/src/core/client_channel/retry_service_config.cc +9 -12
  70. data/src/core/client_channel/retry_service_config.h +5 -7
  71. data/src/core/client_channel/retry_throttle.cc +3 -4
  72. data/src/core/client_channel/retry_throttle.h +4 -7
  73. data/src/core/client_channel/subchannel.cc +282 -164
  74. data/src/core/client_channel/subchannel.h +48 -40
  75. data/src/core/client_channel/subchannel_interface_internal.h +1 -1
  76. data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
  77. data/src/core/client_channel/subchannel_pool_interface.h +4 -7
  78. data/src/core/client_channel/subchannel_stream_client.cc +43 -59
  79. data/src/core/client_channel/subchannel_stream_client.h +10 -14
  80. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +22 -27
  81. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +3 -1
  82. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  83. data/src/core/ext/filters/census/grpc_context.cc +7 -10
  84. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
  85. data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
  86. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +34 -45
  87. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +12 -8
  88. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +16 -19
  89. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +4 -3
  90. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
  91. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +6 -9
  92. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
  93. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
  94. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
  95. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
  96. data/src/core/ext/filters/http/client/http_client_filter.cc +14 -8
  97. data/src/core/ext/filters/http/client/http_client_filter.h +3 -1
  98. data/src/core/ext/filters/http/client_authority_filter.cc +8 -7
  99. data/src/core/ext/filters/http/client_authority_filter.h +3 -1
  100. data/src/core/ext/filters/http/http_filters_plugin.cc +0 -1
  101. data/src/core/ext/filters/http/message_compress/compression_filter.cc +48 -44
  102. data/src/core/ext/filters/http/message_compress/compression_filter.h +8 -4
  103. data/src/core/ext/filters/http/server/http_server_filter.cc +16 -13
  104. data/src/core/ext/filters/http/server/http_server_filter.h +3 -1
  105. data/src/core/ext/filters/message_size/message_size_filter.cc +32 -32
  106. data/src/core/ext/filters/message_size/message_size_filter.h +11 -9
  107. data/src/core/ext/filters/rbac/rbac_filter.cc +8 -11
  108. data/src/core/ext/filters/rbac/rbac_filter.h +3 -2
  109. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +16 -10
  110. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
  111. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +13 -15
  112. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +5 -4
  113. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
  114. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +5 -7
  115. data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -4
  116. data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -2
  117. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +71 -101
  118. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -11
  119. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +426 -314
  120. data/src/core/ext/transport/chttp2/server/chttp2_server.h +35 -2
  121. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +19 -32
  122. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -3
  123. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -4
  124. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
  125. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
  126. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
  127. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +562 -516
  128. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +15 -16
  129. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +2 -3
  130. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
  131. data/src/core/ext/transport/chttp2/transport/flow_control.cc +6 -11
  132. data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -7
  133. data/src/core/ext/transport/chttp2/transport/frame.cc +2 -5
  134. data/src/core/ext/transport/chttp2/transport/frame.h +2 -3
  135. data/src/core/ext/transport/chttp2/transport/frame_data.cc +7 -13
  136. data/src/core/ext/transport/chttp2/transport/frame_data.h +4 -5
  137. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +3 -6
  138. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
  139. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -19
  140. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
  141. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -18
  142. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
  143. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -20
  144. data/src/core/ext/transport/chttp2/transport/frame_settings.h +3 -4
  145. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +10 -7
  146. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
  147. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
  148. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +14 -16
  149. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +16 -12
  150. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -3
  151. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +1 -2
  152. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +2 -4
  153. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -7
  154. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +56 -51
  155. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +6 -6
  156. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +41 -16
  157. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +29 -10
  158. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +2 -3
  159. data/src/core/ext/transport/chttp2/transport/http2_settings.h +2 -4
  160. data/src/core/ext/transport/chttp2/transport/internal.h +46 -79
  161. data/src/core/ext/transport/chttp2/transport/parsing.cc +101 -109
  162. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -3
  163. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +3 -3
  164. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +2 -5
  165. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +3 -7
  166. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -18
  167. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -8
  168. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +13 -16
  169. data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
  170. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  171. data/src/core/ext/transport/chttp2/transport/varint.h +1 -3
  172. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +2 -3
  173. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -3
  174. data/src/core/ext/transport/chttp2/transport/writing.cc +145 -120
  175. data/src/core/ext/transport/inproc/inproc_transport.cc +149 -67
  176. data/src/core/ext/transport/inproc/inproc_transport.h +1 -3
  177. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +120 -121
  178. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +0 -2
  179. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +43 -12
  180. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +36 -14
  181. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
  182. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +56 -24
  183. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +33 -15
  184. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
  185. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +47 -12
  186. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +39 -17
  187. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
  188. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +184 -51
  189. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +143 -65
  190. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
  191. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +8 -2
  192. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +13 -3
  193. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
  194. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +16 -3
  195. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +16 -6
  196. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
  197. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +8 -7
  198. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +7 -1
  199. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
  200. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +5 -4
  201. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -1
  202. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
  203. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +5 -4
  204. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -1
  205. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
  206. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +126 -79
  207. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +37 -25
  208. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
  209. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +6 -3
  210. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +9 -3
  211. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
  212. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +6 -5
  213. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +7 -1
  214. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
  215. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +13 -3
  216. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +12 -5
  217. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
  218. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +88 -31
  219. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +103 -37
  220. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
  221. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +541 -251
  222. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +247 -131
  223. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
  224. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +38 -11
  225. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +28 -14
  226. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
  227. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +496 -138
  228. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +247 -122
  229. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
  230. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +9 -4
  231. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +10 -4
  232. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
  233. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +168 -24
  234. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -26
  235. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
  236. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +124 -32
  237. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +111 -49
  238. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
  239. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +64 -24
  240. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +55 -21
  241. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
  242. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +8 -3
  243. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +10 -4
  244. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
  245. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +752 -69
  246. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +304 -59
  247. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
  248. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +64 -22
  249. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +52 -22
  250. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
  251. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +5 -2
  252. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +9 -3
  253. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
  254. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +6 -3
  255. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +9 -3
  256. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
  257. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +8 -2
  258. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +13 -3
  259. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
  260. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +198 -59
  261. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +111 -44
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +193 -59
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +90 -48
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +10 -2
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +10 -4
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +7 -4
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +9 -3
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +228 -73
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +139 -67
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +7 -4
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +13 -3
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +12 -4
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +14 -4
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
  281. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +13 -7
  282. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +13 -3
  283. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
  284. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +20 -8
  285. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +16 -6
  286. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
  287. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +8 -3
  288. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +10 -4
  289. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
  290. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +39 -8
  291. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +31 -13
  292. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
  293. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +103 -31
  294. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +62 -30
  295. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
  296. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +278 -34
  297. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +78 -24
  298. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
  299. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +5 -2
  300. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +9 -3
  301. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
  302. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +139 -44
  303. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +85 -42
  304. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
  305. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +88 -26
  306. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +61 -31
  307. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
  308. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +90 -10
  309. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +23 -13
  310. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
  311. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +11 -4
  312. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +15 -5
  313. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
  314. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +11 -6
  315. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +10 -4
  316. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
  317. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +48 -19
  318. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +52 -18
  319. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
  320. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +65 -18
  321. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +64 -22
  322. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
  323. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +156 -35
  324. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +95 -47
  325. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
  326. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +58 -10
  327. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +30 -16
  328. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
  329. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +705 -230
  330. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +454 -217
  331. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
  332. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -7
  333. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -6
  334. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
  335. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +97 -32
  336. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +86 -36
  337. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
  338. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +115 -13
  339. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
  340. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +5 -1
  341. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +6 -3
  342. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +9 -3
  343. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
  344. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +9 -4
  345. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +15 -5
  346. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
  347. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +7 -4
  348. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -3
  349. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
  350. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +19 -12
  351. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +11 -5
  352. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
  353. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +17 -5
  354. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +12 -6
  355. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
  356. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +5 -2
  357. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +9 -3
  358. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
  359. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +14 -7
  360. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +16 -6
  361. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
  362. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
  363. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
  364. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +2 -1
  365. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +16 -7
  366. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +17 -7
  367. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
  368. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +11 -8
  369. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +9 -3
  370. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
  371. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +213 -99
  372. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +115 -48
  373. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
  374. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -1
  375. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +7 -1
  376. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
  377. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +21 -8
  378. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +31 -9
  379. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
  380. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +39 -19
  381. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +25 -11
  382. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
  383. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
  384. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
  385. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
  386. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +53 -10
  387. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +27 -11
  388. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
  389. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +26 -9
  390. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +18 -8
  391. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
  392. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +10 -5
  393. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +15 -5
  394. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
  395. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +324 -131
  396. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +189 -102
  397. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
  398. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +5 -2
  399. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +9 -3
  400. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
  401. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +20 -7
  402. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +14 -8
  403. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -1
  404. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +28 -11
  405. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +35 -13
  406. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
  407. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +3 -2
  408. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +7 -1
  409. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
  410. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +19 -8
  411. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +13 -7
  412. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
  413. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +5 -2
  414. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +9 -3
  415. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
  416. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
  417. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
  418. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
  419. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +2 -1
  420. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
  421. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +2 -1
  422. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +167 -28
  423. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +78 -32
  424. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
  425. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +22 -9
  426. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +24 -10
  427. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
  428. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +109 -36
  429. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +67 -37
  430. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
  431. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +11 -3
  432. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +15 -5
  433. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
  434. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +55 -17
  435. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +40 -22
  436. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
  437. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +2 -1
  438. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +7 -1
  439. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
  440. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +119 -37
  441. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +95 -37
  442. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
  443. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +15 -5
  444. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +16 -6
  445. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
  446. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +62 -21
  447. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +42 -20
  448. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
  449. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -4
  450. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +9 -3
  451. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
  452. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +13 -3
  453. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +24 -6
  454. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
  455. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +6 -3
  456. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +9 -3
  457. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
  458. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +7 -6
  459. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +23 -1
  460. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
  461. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +13 -5
  462. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -4
  463. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
  464. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +10 -2
  465. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +10 -4
  466. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
  467. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +6 -3
  468. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +9 -3
  469. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
  470. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +5 -2
  471. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +9 -3
  472. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
  473. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +13 -6
  474. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +21 -7
  475. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
  476. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +2 -1
  477. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +11 -1
  478. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
  479. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +48 -7
  480. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +28 -7
  481. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
  482. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +11 -3
  483. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +14 -4
  484. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
  485. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +27 -9
  486. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -11
  487. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
  488. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +21 -7
  489. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +38 -8
  490. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
  491. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +27 -14
  492. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +31 -9
  493. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
  494. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +9 -4
  495. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +18 -4
  496. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
  497. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
  498. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
  499. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +2 -1
  500. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +3 -2
  501. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +7 -1
  502. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
  503. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +5 -4
  504. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +11 -1
  505. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
  506. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +8 -7
  507. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -1
  508. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
  509. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +11 -6
  510. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -4
  511. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
  512. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
  513. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
  514. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +2 -1
  515. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +5 -4
  516. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -1
  517. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
  518. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +9 -4
  519. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +10 -4
  520. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
  521. data/src/core/ext/upb-gen/google/api/annotations.upb.h +12 -2
  522. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +4 -1
  523. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
  524. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +132 -33
  525. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +108 -43
  526. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
  527. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +522 -66
  528. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +191 -57
  529. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
  530. data/src/core/ext/upb-gen/google/api/http.upb.h +26 -13
  531. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +20 -6
  532. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
  533. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +9 -3
  534. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +9 -3
  535. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
  536. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +4 -3
  537. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +7 -1
  538. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
  539. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +579 -178
  540. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +292 -131
  541. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
  542. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +4 -3
  543. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +7 -1
  544. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
  545. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +2 -1
  546. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +7 -1
  547. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
  548. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +29 -7
  549. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +28 -10
  550. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
  551. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +4 -3
  552. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +7 -1
  553. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
  554. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +11 -10
  555. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +39 -1
  556. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
  557. data/src/core/ext/upb-gen/google/rpc/status.upb.h +9 -3
  558. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +9 -3
  559. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
  560. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +18 -11
  561. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +23 -5
  562. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
  563. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +16 -7
  564. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +14 -4
  565. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
  566. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +95 -36
  567. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +79 -29
  568. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
  569. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +10 -5
  570. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +14 -4
  571. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
  572. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +4 -3
  573. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +11 -1
  574. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
  575. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +44 -19
  576. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +53 -15
  577. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
  578. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +12 -5
  579. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +17 -3
  580. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
  581. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +69 -16
  582. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +56 -18
  583. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
  584. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +56 -10
  585. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +26 -7
  586. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
  587. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +14 -4
  588. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +12 -5
  589. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
  590. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +3 -2
  591. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +4 -1
  592. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
  593. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +14 -4
  594. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +12 -5
  595. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
  596. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +13 -3
  597. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +12 -5
  598. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
  599. data/src/core/ext/upb-gen/validate/validate.upb.h +259 -167
  600. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +178 -80
  601. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
  602. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +56 -10
  603. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +26 -7
  604. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
  605. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +14 -4
  606. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +12 -5
  607. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
  608. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +3 -2
  609. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +4 -1
  610. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
  611. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +37 -9
  612. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +29 -8
  613. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
  614. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +13 -3
  615. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +12 -5
  616. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
  617. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +3 -2
  618. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +7 -1
  619. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
  620. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +6 -3
  621. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +9 -3
  622. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
  623. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +13 -6
  624. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +16 -6
  625. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
  626. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +8 -1
  627. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +13 -3
  628. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
  629. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +6 -3
  630. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +9 -3
  631. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
  632. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +9 -4
  633. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +10 -4
  634. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
  635. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +18 -8
  636. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +16 -6
  637. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
  638. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +8 -5
  639. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -3
  640. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
  641. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +26 -7
  642. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +23 -5
  643. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
  644. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +5 -2
  645. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +9 -3
  646. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
  647. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +6 -3
  648. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +9 -3
  649. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
  650. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +10 -2
  651. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +15 -5
  652. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
  653. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +2 -1
  654. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +7 -1
  655. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
  656. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +16 -3
  657. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +16 -6
  658. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
  659. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +78 -19
  660. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +75 -33
  661. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
  662. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +41 -4
  663. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +42 -16
  664. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
  665. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +6 -3
  666. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +13 -3
  667. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
  668. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +15 -7
  669. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +15 -5
  670. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
  671. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +14 -5
  672. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +17 -7
  673. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
  674. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +8 -7
  675. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -1
  676. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
  677. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +6 -3
  678. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +9 -3
  679. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
  680. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
  681. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -1
  682. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
  683. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -1
  684. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
  685. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -1
  686. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
  687. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -1
  688. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
  689. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -1
  690. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
  691. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -1
  692. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
  693. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -1
  694. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
  695. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -1
  696. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
  697. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -1
  698. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
  699. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -1
  700. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
  701. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -1
  702. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
  703. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -1
  704. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
  705. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -1
  706. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
  707. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -1
  708. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
  709. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +7 -1
  710. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
  711. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -1
  712. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
  713. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +7 -1
  714. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
  715. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -1
  716. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
  717. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -1
  718. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
  719. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -1
  720. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
  721. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -1
  722. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
  723. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -1
  724. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
  725. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +27 -1
  726. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
  727. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -1
  728. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
  729. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -1
  730. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
  731. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -1
  732. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
  733. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -1
  734. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
  735. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -1
  736. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
  737. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -1
  738. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
  739. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -1
  740. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
  741. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -1
  742. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
  743. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -1
  744. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
  745. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -1
  746. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
  747. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -1
  748. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
  749. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -1
  750. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
  751. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -1
  752. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
  753. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -1
  754. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
  755. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -1
  756. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
  757. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -1
  758. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
  759. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +7 -1
  760. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
  761. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -1
  762. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
  763. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -1
  764. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
  765. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -1
  766. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
  767. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -1
  768. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
  769. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -1
  770. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
  771. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -1
  772. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
  773. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -1
  774. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
  775. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -1
  776. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
  777. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -1
  778. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
  779. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -1
  780. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
  781. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -1
  782. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
  783. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -1
  784. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
  785. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -1
  786. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
  787. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +7 -1
  788. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
  789. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -1
  790. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
  791. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -1
  792. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
  793. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -1
  794. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
  795. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -1
  796. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
  797. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -1
  798. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
  799. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -1
  800. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
  801. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -1
  802. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
  803. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -1
  804. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
  805. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -1
  806. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
  807. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -1
  808. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
  809. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -1
  810. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
  811. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -1
  812. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
  813. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -1
  814. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
  815. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -1
  816. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
  817. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
  818. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
  819. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -1
  820. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
  821. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -1
  822. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
  823. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -1
  824. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
  825. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -1
  826. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
  827. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -1
  828. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
  829. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
  830. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
  831. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -1
  832. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
  833. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +7 -1
  834. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
  835. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -1
  836. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
  837. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -1
  838. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
  839. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -1
  840. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
  841. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -1
  842. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
  843. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -1
  844. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
  845. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -1
  846. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
  847. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -1
  848. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
  849. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -1
  850. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
  851. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -1
  852. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
  853. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -1
  854. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
  855. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -1
  856. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  857. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -1
  858. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
  859. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -1
  860. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
  861. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -1
  862. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
  863. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -1
  864. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
  865. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -1
  866. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
  867. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -1
  868. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
  869. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -1
  870. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
  871. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -1
  872. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
  873. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -1
  874. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
  875. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -1
  876. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
  877. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -1
  878. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
  879. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -1
  880. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
  881. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -1
  882. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
  883. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -1
  884. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
  885. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -1
  886. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
  887. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -1
  888. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
  889. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -1
  890. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
  891. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -1
  892. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
  893. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -1
  894. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
  895. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -1
  896. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
  897. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -1
  898. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
  899. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -1
  900. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
  901. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -1
  902. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
  903. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +12 -1
  904. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
  905. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -1
  906. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
  907. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -1
  908. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
  909. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -1
  910. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +283 -257
  911. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +7 -1
  912. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
  913. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -1
  914. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
  915. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -1
  916. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
  917. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -1
  918. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
  919. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -1
  920. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
  921. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -1
  922. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
  923. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -1
  924. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
  925. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -1
  926. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
  927. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -1
  928. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
  929. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -1
  930. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
  931. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -1
  932. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
  933. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -1
  934. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
  935. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -1
  936. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
  937. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -1
  938. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
  939. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -1
  940. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
  941. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -1
  942. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
  943. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -1
  944. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
  945. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -1
  946. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
  947. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -1
  948. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
  949. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -1
  950. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
  951. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -1
  952. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
  953. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -1
  954. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
  955. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -1
  956. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
  957. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -1
  958. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
  959. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -1
  960. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
  961. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -1
  962. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
  963. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -1
  964. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
  965. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -1
  966. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
  967. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -1
  968. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
  969. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -1
  970. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  971. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -1
  972. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
  973. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -1
  974. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
  975. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -1
  976. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
  977. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -1
  978. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
  979. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -1
  980. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
  981. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -1
  982. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
  983. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -1
  984. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
  985. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -1
  986. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
  987. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -1
  988. data/src/core/filter/blackboard.cc +33 -0
  989. data/src/core/filter/blackboard.h +70 -0
  990. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +13 -12
  991. data/src/core/handshaker/handshaker.cc +127 -159
  992. data/src/core/handshaker/handshaker.h +58 -52
  993. data/src/core/handshaker/handshaker_registry.cc +1 -2
  994. data/src/core/handshaker/handshaker_registry.h +2 -2
  995. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +113 -159
  996. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +30 -37
  997. data/src/core/handshaker/http_connect/http_proxy_mapper.h +2 -3
  998. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
  999. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
  1000. data/src/core/handshaker/proxy_mapper.h +2 -3
  1001. data/src/core/handshaker/proxy_mapper_registry.cc +2 -2
  1002. data/src/core/handshaker/proxy_mapper_registry.h +2 -3
  1003. data/src/core/handshaker/security/secure_endpoint.cc +95 -82
  1004. data/src/core/handshaker/security/secure_endpoint.h +6 -7
  1005. data/src/core/handshaker/security/security_handshaker.cc +166 -220
  1006. data/src/core/handshaker/security/security_handshaker.h +2 -3
  1007. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +47 -61
  1008. data/src/core/lib/address_utils/parse_address.cc +30 -43
  1009. data/src/core/lib/address_utils/parse_address.h +2 -4
  1010. data/src/core/lib/address_utils/sockaddr_utils.cc +9 -12
  1011. data/src/core/lib/address_utils/sockaddr_utils.h +1 -3
  1012. data/src/core/lib/channel/call_finalization.h +2 -2
  1013. data/src/core/lib/channel/channel_args.cc +17 -23
  1014. data/src/core/lib/channel/channel_args.h +34 -20
  1015. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  1016. data/src/core/lib/channel/channel_args_preconditioning.h +3 -3
  1017. data/src/core/lib/channel/channel_stack.cc +13 -76
  1018. data/src/core/lib/channel/channel_stack.h +26 -61
  1019. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  1020. data/src/core/lib/channel/channel_stack_builder.h +3 -9
  1021. data/src/core/lib/channel/channel_stack_builder_impl.cc +5 -150
  1022. data/src/core/lib/channel/channel_stack_builder_impl.h +14 -4
  1023. data/src/core/lib/channel/connected_channel.cc +46 -688
  1024. data/src/core/lib/channel/promise_based_filter.cc +180 -250
  1025. data/src/core/lib/channel/promise_based_filter.h +173 -509
  1026. data/src/core/lib/channel/status_util.cc +2 -4
  1027. data/src/core/lib/channel/status_util.h +3 -3
  1028. data/src/core/lib/compression/compression.cc +7 -9
  1029. data/src/core/lib/compression/compression_internal.cc +5 -8
  1030. data/src/core/lib/compression/compression_internal.h +3 -5
  1031. data/src/core/lib/compression/message_compress.cc +9 -12
  1032. data/src/core/lib/config/config_vars.cc +15 -18
  1033. data/src/core/lib/config/config_vars.h +10 -13
  1034. data/src/core/lib/config/config_vars_non_generated.cc +2 -2
  1035. data/src/core/lib/config/core_configuration.cc +2 -3
  1036. data/src/core/lib/config/core_configuration.h +2 -4
  1037. data/src/core/lib/config/load_config.cc +2 -4
  1038. data/src/core/lib/config/load_config.h +1 -2
  1039. data/src/core/lib/debug/trace.cc +47 -65
  1040. data/src/core/lib/debug/trace.h +2 -97
  1041. data/src/core/lib/debug/trace_flags.cc +242 -0
  1042. data/src/core/lib/debug/trace_flags.h +131 -0
  1043. data/src/core/lib/debug/trace_impl.h +125 -0
  1044. data/src/core/lib/event_engine/ares_resolver.cc +151 -75
  1045. data/src/core/lib/event_engine/ares_resolver.h +13 -20
  1046. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -16
  1047. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  1048. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +44 -31
  1049. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
  1050. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
  1051. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +19 -26
  1052. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +3 -5
  1053. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -4
  1054. data/src/core/lib/event_engine/channel_args_endpoint_config.h +2 -3
  1055. data/src/core/lib/event_engine/common_closures.h +3 -3
  1056. data/src/core/lib/event_engine/default_event_engine.cc +12 -14
  1057. data/src/core/lib/event_engine/default_event_engine.h +3 -3
  1058. data/src/core/lib/event_engine/default_event_engine_factory.cc +2 -2
  1059. data/src/core/lib/event_engine/default_event_engine_factory.h +2 -2
  1060. data/src/core/lib/event_engine/event_engine.cc +35 -4
  1061. data/src/core/lib/event_engine/event_engine_context.h +4 -2
  1062. data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
  1063. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +1 -2
  1064. data/src/core/lib/event_engine/extensions/supports_fd.h +27 -3
  1065. data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
  1066. data/src/core/lib/event_engine/forkable.cc +6 -8
  1067. data/src/core/lib/event_engine/forkable.h +2 -14
  1068. data/src/core/lib/event_engine/grpc_polled_fd.h +3 -4
  1069. data/src/core/lib/event_engine/handle_containers.h +2 -3
  1070. data/src/core/lib/event_engine/memory_allocator_factory.h +3 -4
  1071. data/src/core/lib/event_engine/poller.h +2 -2
  1072. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +21 -23
  1073. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +8 -9
  1074. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +13 -17
  1075. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +4 -5
  1076. data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -4
  1077. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -4
  1078. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
  1079. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +4 -6
  1080. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +4 -4
  1081. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +1 -2
  1082. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +5 -7
  1083. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -3
  1084. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
  1085. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -3
  1086. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +73 -79
  1087. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +11 -12
  1088. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +74 -55
  1089. data/src/core/lib/event_engine/posix_engine/posix_engine.h +18 -14
  1090. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +3 -3
  1091. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +23 -27
  1092. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +14 -13
  1093. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +22 -28
  1094. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
  1095. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +44 -38
  1096. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
  1097. data/src/core/lib/event_engine/posix_engine/timer.cc +5 -5
  1098. data/src/core/lib/event_engine/posix_engine/timer.h +5 -7
  1099. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
  1100. data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
  1101. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +12 -21
  1102. data/src/core/lib/event_engine/posix_engine/timer_manager.h +5 -7
  1103. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -8
  1104. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +3 -5
  1105. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +5 -6
  1106. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -3
  1107. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +4 -5
  1108. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -3
  1109. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
  1110. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -3
  1111. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
  1112. data/src/core/lib/event_engine/query_extensions.h +2 -2
  1113. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +3 -5
  1114. data/src/core/lib/event_engine/resolved_address.cc +5 -5
  1115. data/src/core/lib/event_engine/shim.cc +1 -1
  1116. data/src/core/lib/event_engine/slice.cc +3 -6
  1117. data/src/core/lib/event_engine/slice_buffer.cc +1 -2
  1118. data/src/core/lib/event_engine/tcp_socket_utils.cc +9 -12
  1119. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -3
  1120. data/src/core/lib/event_engine/thread_local.h +1 -1
  1121. data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -7
  1122. data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -7
  1123. data/src/core/lib/event_engine/thread_pool/thread_pool.h +2 -4
  1124. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -3
  1125. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +39 -46
  1126. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +10 -15
  1127. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
  1128. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +9 -8
  1129. data/src/core/lib/event_engine/time_util.cc +2 -2
  1130. data/src/core/lib/event_engine/time_util.h +1 -2
  1131. data/src/core/lib/event_engine/utils.cc +19 -5
  1132. data/src/core/lib/event_engine/utils.h +10 -4
  1133. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +125 -100
  1134. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
  1135. data/src/core/lib/event_engine/windows/iocp.cc +14 -14
  1136. data/src/core/lib/event_engine/windows/iocp.h +2 -3
  1137. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
  1138. data/src/core/lib/event_engine/windows/win_socket.cc +42 -33
  1139. data/src/core/lib/event_engine/windows/win_socket.h +8 -10
  1140. data/src/core/lib/event_engine/windows/windows_endpoint.cc +26 -27
  1141. data/src/core/lib/event_engine/windows/windows_engine.cc +242 -134
  1142. data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
  1143. data/src/core/lib/event_engine/windows/windows_listener.cc +22 -37
  1144. data/src/core/lib/event_engine/windows/windows_listener.h +4 -5
  1145. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
  1146. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +3 -5
  1147. data/src/core/lib/event_engine/work_queue/work_queue.h +2 -3
  1148. data/src/core/lib/experiments/config.cc +54 -27
  1149. data/src/core/lib/experiments/config.h +56 -3
  1150. data/src/core/lib/experiments/experiments.cc +159 -293
  1151. data/src/core/lib/experiments/experiments.h +84 -124
  1152. data/src/core/lib/iomgr/buffer_list.cc +5 -5
  1153. data/src/core/lib/iomgr/buffer_list.h +2 -3
  1154. data/src/core/lib/iomgr/call_combiner.cc +39 -66
  1155. data/src/core/lib/iomgr/call_combiner.h +12 -16
  1156. data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
  1157. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  1158. data/src/core/lib/iomgr/closure.cc +2 -2
  1159. data/src/core/lib/iomgr/closure.h +12 -19
  1160. data/src/core/lib/iomgr/combiner.cc +33 -48
  1161. data/src/core/lib/iomgr/combiner.h +1 -4
  1162. data/src/core/lib/iomgr/endpoint.cc +0 -6
  1163. data/src/core/lib/iomgr/endpoint.h +3 -4
  1164. data/src/core/lib/iomgr/endpoint_cfstream.cc +40 -73
  1165. data/src/core/lib/iomgr/endpoint_pair_posix.cc +3 -6
  1166. data/src/core/lib/iomgr/endpoint_pair_windows.cc +6 -8
  1167. data/src/core/lib/iomgr/error.cc +22 -32
  1168. data/src/core/lib/iomgr/error.h +7 -10
  1169. data/src/core/lib/iomgr/error_cfstream.cc +1 -3
  1170. data/src/core/lib/iomgr/ev_apple.cc +15 -23
  1171. data/src/core/lib/iomgr/ev_epoll1_linux.cc +67 -113
  1172. data/src/core/lib/iomgr/ev_poll_posix.cc +53 -53
  1173. data/src/core/lib/iomgr/ev_posix.cc +66 -57
  1174. data/src/core/lib/iomgr/ev_posix.h +9 -12
  1175. data/src/core/lib/iomgr/event_engine_shims/closure.cc +10 -13
  1176. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
  1177. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +33 -51
  1178. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +2 -2
  1179. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +9 -13
  1180. data/src/core/lib/iomgr/exec_ctx.cc +10 -14
  1181. data/src/core/lib/iomgr/exec_ctx.h +33 -25
  1182. data/src/core/lib/iomgr/executor.cc +55 -53
  1183. data/src/core/lib/iomgr/executor.h +2 -2
  1184. data/src/core/lib/iomgr/fork_posix.cc +11 -15
  1185. data/src/core/lib/iomgr/fork_windows.cc +3 -2
  1186. data/src/core/lib/iomgr/internal_errqueue.cc +4 -4
  1187. data/src/core/lib/iomgr/iocp_windows.cc +8 -10
  1188. data/src/core/lib/iomgr/iomgr.cc +17 -23
  1189. data/src/core/lib/iomgr/iomgr.h +1 -2
  1190. data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
  1191. data/src/core/lib/iomgr/iomgr_internal.h +1 -2
  1192. data/src/core/lib/iomgr/iomgr_windows.cc +1 -4
  1193. data/src/core/lib/iomgr/lockfree_event.cc +10 -20
  1194. data/src/core/lib/iomgr/polling_entity.cc +13 -7
  1195. data/src/core/lib/iomgr/pollset.h +0 -2
  1196. data/src/core/lib/iomgr/pollset_set_windows.cc +1 -2
  1197. data/src/core/lib/iomgr/pollset_windows.cc +2 -6
  1198. data/src/core/lib/iomgr/port.h +2 -2
  1199. data/src/core/lib/iomgr/resolve_address.cc +3 -5
  1200. data/src/core/lib/iomgr/resolve_address.h +4 -6
  1201. data/src/core/lib/iomgr/resolve_address_impl.h +1 -2
  1202. data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
  1203. data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
  1204. data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
  1205. data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
  1206. data/src/core/lib/iomgr/resolved_address.h +1 -2
  1207. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -6
  1208. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  1209. data/src/core/lib/iomgr/socket_mutator.cc +2 -3
  1210. data/src/core/lib/iomgr/socket_mutator.h +1 -2
  1211. data/src/core/lib/iomgr/socket_utils.h +1 -2
  1212. data/src/core/lib/iomgr/socket_utils_common_posix.cc +43 -52
  1213. data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
  1214. data/src/core/lib/iomgr/socket_utils_posix.cc +4 -7
  1215. data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
  1216. data/src/core/lib/iomgr/socket_windows.cc +7 -11
  1217. data/src/core/lib/iomgr/socket_windows.h +1 -2
  1218. data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
  1219. data/src/core/lib/iomgr/tcp_client_posix.cc +17 -30
  1220. data/src/core/lib/iomgr/tcp_client_windows.cc +5 -10
  1221. data/src/core/lib/iomgr/tcp_posix.cc +85 -155
  1222. data/src/core/lib/iomgr/tcp_posix.h +0 -2
  1223. data/src/core/lib/iomgr/tcp_server.h +2 -2
  1224. data/src/core/lib/iomgr/tcp_server_posix.cc +40 -58
  1225. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -3
  1226. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -11
  1227. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -11
  1228. data/src/core/lib/iomgr/tcp_server_windows.cc +17 -25
  1229. data/src/core/lib/iomgr/tcp_windows.cc +32 -62
  1230. data/src/core/lib/iomgr/timer.h +2 -2
  1231. data/src/core/lib/iomgr/timer_generic.cc +71 -104
  1232. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  1233. data/src/core/lib/iomgr/timer_manager.cc +25 -43
  1234. data/src/core/lib/iomgr/timer_manager.h +1 -2
  1235. data/src/core/lib/iomgr/unix_sockets_posix.cc +4 -6
  1236. data/src/core/lib/iomgr/unix_sockets_posix.h +3 -4
  1237. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +0 -4
  1238. data/src/core/lib/iomgr/vsock.cc +3 -6
  1239. data/src/core/lib/iomgr/vsock.h +3 -4
  1240. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
  1241. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
  1242. data/src/core/lib/promise/activity.cc +2 -4
  1243. data/src/core/lib/promise/activity.h +48 -17
  1244. data/src/core/lib/promise/all_ok.h +17 -11
  1245. data/src/core/lib/promise/arena_promise.h +2 -4
  1246. data/src/core/lib/promise/cancel_callback.h +34 -6
  1247. data/src/core/lib/promise/context.h +19 -10
  1248. data/src/core/lib/promise/detail/basic_seq.h +2 -3
  1249. data/src/core/lib/promise/detail/join_state.h +556 -762
  1250. data/src/core/lib/promise/detail/promise_factory.h +46 -30
  1251. data/src/core/lib/promise/detail/promise_like.h +29 -14
  1252. data/src/core/lib/promise/detail/seq_state.h +1314 -1977
  1253. data/src/core/lib/promise/detail/status.h +36 -15
  1254. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -3
  1255. data/src/core/lib/promise/for_each.h +34 -37
  1256. data/src/core/lib/promise/if.h +23 -19
  1257. data/src/core/lib/promise/interceptor_list.h +21 -35
  1258. data/src/core/lib/promise/latch.h +19 -34
  1259. data/src/core/lib/promise/loop.h +16 -12
  1260. data/src/core/lib/promise/map.h +26 -9
  1261. data/src/core/lib/promise/observable.h +181 -0
  1262. data/src/core/lib/promise/party.cc +297 -147
  1263. data/src/core/lib/promise/party.h +139 -361
  1264. data/src/core/lib/promise/pipe.h +21 -44
  1265. data/src/core/lib/promise/poll.h +102 -38
  1266. data/src/core/lib/promise/prioritized_race.h +2 -2
  1267. data/src/core/lib/promise/promise.h +14 -8
  1268. data/src/core/lib/promise/race.h +12 -7
  1269. data/src/core/lib/promise/seq.h +55 -39
  1270. data/src/core/lib/promise/sleep.cc +3 -3
  1271. data/src/core/lib/promise/sleep.h +4 -5
  1272. data/src/core/lib/promise/status_flag.h +148 -49
  1273. data/src/core/lib/promise/try_join.h +37 -21
  1274. data/src/core/lib/promise/try_seq.h +86 -49
  1275. data/src/core/lib/resource_quota/api.cc +4 -6
  1276. data/src/core/lib/resource_quota/api.h +1 -2
  1277. data/src/core/lib/resource_quota/arena.cc +64 -86
  1278. data/src/core/lib/resource_quota/arena.h +143 -215
  1279. data/src/core/lib/resource_quota/connection_quota.cc +2 -3
  1280. data/src/core/lib/resource_quota/connection_quota.h +5 -6
  1281. data/src/core/lib/resource_quota/memory_quota.cc +28 -40
  1282. data/src/core/lib/resource_quota/memory_quota.h +20 -18
  1283. data/src/core/lib/resource_quota/periodic_update.cc +4 -4
  1284. data/src/core/lib/resource_quota/periodic_update.h +2 -4
  1285. data/src/core/lib/resource_quota/resource_quota.h +8 -9
  1286. data/src/core/lib/resource_quota/thread_quota.cc +2 -3
  1287. data/src/core/lib/resource_quota/thread_quota.h +5 -6
  1288. data/src/core/lib/security/authorization/audit_logging.cc +5 -7
  1289. data/src/core/lib/security/authorization/audit_logging.h +5 -6
  1290. data/src/core/lib/security/authorization/authorization_engine.h +3 -3
  1291. data/src/core/lib/security/authorization/authorization_policy_provider.h +4 -5
  1292. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -2
  1293. data/src/core/lib/security/authorization/evaluate_args.cc +10 -14
  1294. data/src/core/lib/security/authorization/evaluate_args.h +3 -4
  1295. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +2 -4
  1296. data/src/core/lib/security/authorization/grpc_authorization_engine.h +2 -3
  1297. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -30
  1298. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -3
  1299. data/src/core/lib/security/authorization/matchers.cc +5 -7
  1300. data/src/core/lib/security/authorization/matchers.h +2 -4
  1301. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  1302. data/src/core/lib/security/authorization/rbac_policy.h +3 -5
  1303. data/src/core/lib/security/authorization/stdout_logger.cc +4 -5
  1304. data/src/core/lib/security/authorization/stdout_logger.h +4 -4
  1305. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -9
  1306. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +4 -5
  1307. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -3
  1308. data/src/core/lib/security/context/security_context.cc +48 -48
  1309. data/src/core/lib/security/context/security_context.h +39 -18
  1310. data/src/core/lib/security/credentials/alts/alts_credentials.cc +5 -5
  1311. data/src/core/lib/security/credentials/alts/alts_credentials.h +9 -5
  1312. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -4
  1313. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
  1314. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
  1315. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
  1316. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +4 -5
  1317. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +3 -3
  1318. data/src/core/lib/security/credentials/call_creds_util.cc +8 -7
  1319. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1320. data/src/core/lib/security/credentials/channel_creds_registry.h +7 -8
  1321. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +14 -13
  1322. data/src/core/lib/security/credentials/composite/composite_credentials.cc +10 -14
  1323. data/src/core/lib/security/credentials/composite/composite_credentials.h +11 -10
  1324. data/src/core/lib/security/credentials/credentials.cc +18 -19
  1325. data/src/core/lib/security/credentials/credentials.h +12 -14
  1326. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +335 -339
  1327. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +60 -48
  1328. data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
  1329. data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
  1330. data/src/core/lib/security/credentials/external/external_account_credentials.cc +408 -374
  1331. data/src/core/lib/security/credentials/external/external_account_credentials.h +128 -60
  1332. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -52
  1333. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +32 -11
  1334. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +102 -129
  1335. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +22 -24
  1336. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
  1337. data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
  1338. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
  1339. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  1340. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +6 -7
  1341. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +55 -73
  1342. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +8 -6
  1343. data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -10
  1344. data/src/core/lib/security/credentials/iam/iam_credentials.h +8 -7
  1345. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1346. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
  1347. data/src/core/lib/security/credentials/jwt/json_token.cc +25 -29
  1348. data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
  1349. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +22 -29
  1350. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +10 -10
  1351. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +67 -74
  1352. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -4
  1353. data/src/core/lib/security/credentials/local/local_credentials.cc +2 -2
  1354. data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
  1355. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +195 -296
  1356. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +50 -73
  1357. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -33
  1358. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +12 -14
  1359. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +35 -47
  1360. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +5 -8
  1361. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -4
  1362. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +4 -5
  1363. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +1 -3
  1364. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +102 -42
  1365. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +14 -13
  1366. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +6 -10
  1367. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -11
  1368. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +10 -13
  1369. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -1
  1370. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +6 -10
  1371. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +8 -10
  1372. data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -23
  1373. data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -3
  1374. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
  1375. data/src/core/lib/security/credentials/tls/tls_utils.h +3 -3
  1376. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
  1377. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
  1378. data/src/core/lib/security/credentials/xds/xds_credentials.cc +15 -13
  1379. data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
  1380. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -27
  1381. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +1 -1
  1382. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +24 -24
  1383. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +1 -1
  1384. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +4 -7
  1385. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
  1386. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +9 -11
  1387. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +4 -6
  1388. data/src/core/lib/security/security_connector/local/local_security_connector.cc +25 -25
  1389. data/src/core/lib/security/security_connector/local/local_security_connector.h +1 -1
  1390. data/src/core/lib/security/security_connector/security_connector.cc +6 -11
  1391. data/src/core/lib/security/security_connector/security_connector.h +8 -11
  1392. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -27
  1393. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -3
  1394. data/src/core/lib/security/security_connector/ssl_utils.cc +33 -34
  1395. data/src/core/lib/security/security_connector/ssl_utils.h +6 -8
  1396. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +37 -50
  1397. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +7 -8
  1398. data/src/core/lib/security/transport/auth_filters.h +7 -3
  1399. data/src/core/lib/security/transport/client_auth_filter.cc +16 -25
  1400. data/src/core/lib/security/transport/server_auth_filter.cc +20 -31
  1401. data/src/core/lib/security/util/json_util.cc +4 -5
  1402. data/src/core/lib/security/util/json_util.h +1 -1
  1403. data/src/core/lib/slice/percent_encoding.cc +2 -5
  1404. data/src/core/lib/slice/slice.cc +4 -7
  1405. data/src/core/lib/slice/slice.h +6 -9
  1406. data/src/core/lib/slice/slice_buffer.cc +4 -7
  1407. data/src/core/lib/slice/slice_buffer.h +3 -4
  1408. data/src/core/lib/slice/slice_internal.h +3 -6
  1409. data/src/core/lib/slice/slice_refcount.h +8 -15
  1410. data/src/core/lib/slice/slice_string_helpers.cc +1 -1
  1411. data/src/core/lib/slice/slice_string_helpers.h +1 -2
  1412. data/src/core/lib/surface/byte_buffer.cc +1 -2
  1413. data/src/core/lib/surface/byte_buffer_reader.cc +3 -6
  1414. data/src/core/lib/surface/call.cc +161 -3826
  1415. data/src/core/lib/surface/call.h +63 -157
  1416. data/src/core/lib/surface/call_details.cc +4 -3
  1417. data/src/core/lib/surface/call_log_batch.cc +8 -11
  1418. data/src/core/lib/surface/call_test_only.h +1 -2
  1419. data/src/core/lib/surface/call_utils.cc +231 -0
  1420. data/src/core/lib/surface/call_utils.h +482 -0
  1421. data/src/core/lib/surface/channel.cc +41 -40
  1422. data/src/core/lib/surface/channel.h +21 -19
  1423. data/src/core/lib/surface/channel_create.cc +27 -12
  1424. data/src/core/lib/surface/channel_create.h +5 -5
  1425. data/src/core/lib/surface/channel_init.cc +269 -266
  1426. data/src/core/lib/surface/channel_init.h +172 -118
  1427. data/src/core/lib/surface/client_call.cc +427 -0
  1428. data/src/core/lib/surface/client_call.h +179 -0
  1429. data/src/core/lib/surface/completion_queue.cc +110 -106
  1430. data/src/core/lib/surface/completion_queue.h +3 -12
  1431. data/src/core/lib/surface/completion_queue_factory.cc +1 -3
  1432. data/src/core/lib/surface/event_string.cc +2 -2
  1433. data/src/core/lib/surface/event_string.h +2 -2
  1434. data/src/core/lib/surface/filter_stack_call.cc +1156 -0
  1435. data/src/core/lib/surface/filter_stack_call.h +366 -0
  1436. data/src/core/lib/surface/init.cc +55 -18
  1437. data/src/core/lib/surface/init.h +5 -0
  1438. data/src/core/lib/surface/lame_client.cc +11 -14
  1439. data/src/core/lib/surface/lame_client.h +6 -5
  1440. data/src/core/lib/surface/legacy_channel.cc +60 -46
  1441. data/src/core/lib/surface/legacy_channel.h +15 -25
  1442. data/src/core/lib/surface/metadata_array.cc +5 -5
  1443. data/src/core/lib/surface/server_call.cc +221 -0
  1444. data/src/core/lib/surface/server_call.h +168 -0
  1445. data/src/core/lib/surface/validate_metadata.cc +3 -4
  1446. data/src/core/lib/surface/validate_metadata.h +2 -5
  1447. data/src/core/lib/surface/version.cc +2 -2
  1448. data/src/core/lib/transport/bdp_estimator.cc +11 -19
  1449. data/src/core/lib/transport/bdp_estimator.h +10 -16
  1450. data/src/core/lib/transport/call_arena_allocator.cc +4 -18
  1451. data/src/core/lib/transport/call_arena_allocator.h +30 -12
  1452. data/src/core/lib/transport/call_destination.h +76 -0
  1453. data/src/core/lib/transport/call_filters.cc +61 -405
  1454. data/src/core/lib/transport/call_filters.h +802 -752
  1455. data/src/core/lib/transport/call_final_info.cc +2 -2
  1456. data/src/core/lib/transport/call_final_info.h +2 -2
  1457. data/src/core/lib/transport/call_spine.cc +98 -73
  1458. data/src/core/lib/transport/call_spine.h +183 -380
  1459. data/src/core/lib/transport/call_state.cc +39 -0
  1460. data/src/core/lib/transport/call_state.h +1061 -0
  1461. data/src/core/lib/transport/connectivity_state.cc +37 -45
  1462. data/src/core/lib/transport/connectivity_state.h +5 -8
  1463. data/src/core/lib/transport/error_utils.cc +3 -4
  1464. data/src/core/lib/transport/error_utils.h +4 -5
  1465. data/src/core/lib/transport/interception_chain.cc +147 -0
  1466. data/src/core/lib/transport/interception_chain.h +253 -0
  1467. data/src/core/lib/transport/message.cc +2 -2
  1468. data/src/core/lib/transport/message.h +5 -0
  1469. data/src/core/lib/transport/metadata.cc +27 -3
  1470. data/src/core/lib/transport/metadata.h +37 -2
  1471. data/src/core/lib/transport/metadata_batch.cc +1 -3
  1472. data/src/core/lib/transport/metadata_batch.h +64 -12
  1473. data/src/core/lib/transport/metadata_compression_traits.h +1 -2
  1474. data/src/core/lib/transport/metadata_info.h +1 -1
  1475. data/src/core/lib/transport/parsed_metadata.h +3 -5
  1476. data/src/core/lib/transport/simple_slice_based_metadata.h +1 -2
  1477. data/src/core/lib/transport/status_conversion.h +1 -1
  1478. data/src/core/lib/transport/timeout_encoding.cc +3 -4
  1479. data/src/core/lib/transport/timeout_encoding.h +2 -4
  1480. data/src/core/lib/transport/transport.cc +7 -12
  1481. data/src/core/lib/transport/transport.h +59 -56
  1482. data/src/core/lib/transport/transport_op_string.cc +4 -6
  1483. data/src/core/load_balancing/address_filtering.cc +2 -4
  1484. data/src/core/load_balancing/address_filtering.h +4 -5
  1485. data/src/core/load_balancing/backend_metric_data.h +2 -2
  1486. data/src/core/load_balancing/backend_metric_parser.cc +1 -2
  1487. data/src/core/load_balancing/backend_metric_parser.h +1 -3
  1488. data/src/core/load_balancing/child_policy_handler.cc +36 -40
  1489. data/src/core/load_balancing/child_policy_handler.h +4 -5
  1490. data/src/core/load_balancing/delegating_helper.h +6 -7
  1491. data/src/core/load_balancing/endpoint_list.cc +11 -13
  1492. data/src/core/load_balancing/endpoint_list.h +7 -9
  1493. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +12 -6
  1494. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +5 -2
  1495. data/src/core/load_balancing/grpclb/grpclb.cc +153 -187
  1496. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
  1497. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +2 -3
  1498. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -7
  1499. data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -10
  1500. data/src/core/load_balancing/grpclb/load_balancer_api.h +4 -6
  1501. data/src/core/load_balancing/health_check_client.cc +60 -80
  1502. data/src/core/load_balancing/health_check_client.h +3 -3
  1503. data/src/core/load_balancing/health_check_client_internal.h +8 -9
  1504. data/src/core/load_balancing/lb_policy.cc +5 -8
  1505. data/src/core/load_balancing/lb_policy.h +72 -38
  1506. data/src/core/load_balancing/lb_policy_factory.h +5 -6
  1507. data/src/core/load_balancing/lb_policy_registry.cc +5 -7
  1508. data/src/core/load_balancing/lb_policy_registry.h +5 -6
  1509. data/src/core/load_balancing/oob_backend_metric.cc +19 -25
  1510. data/src/core/load_balancing/oob_backend_metric.h +3 -3
  1511. data/src/core/load_balancing/oob_backend_metric_internal.h +8 -9
  1512. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +139 -184
  1513. data/src/core/load_balancing/outlier_detection/outlier_detection.h +6 -8
  1514. data/src/core/load_balancing/pick_first/pick_first.cc +219 -303
  1515. data/src/core/load_balancing/priority/priority.cc +93 -137
  1516. data/src/core/load_balancing/ring_hash/ring_hash.cc +52 -76
  1517. data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
  1518. data/src/core/load_balancing/rls/rls.cc +340 -345
  1519. data/src/core/load_balancing/round_robin/round_robin.cc +56 -83
  1520. data/src/core/load_balancing/subchannel_interface.h +17 -6
  1521. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +2 -3
  1522. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
  1523. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +138 -155
  1524. data/src/core/load_balancing/weighted_target/weighted_target.cc +71 -107
  1525. data/src/core/load_balancing/xds/cds.cc +53 -69
  1526. data/src/core/load_balancing/xds/xds_cluster_impl.cc +178 -155
  1527. data/src/core/load_balancing/xds/xds_cluster_manager.cc +52 -84
  1528. data/src/core/load_balancing/xds/xds_override_host.cc +117 -179
  1529. data/src/core/load_balancing/xds/xds_override_host.h +6 -7
  1530. data/src/core/load_balancing/xds/xds_wrr_locality.cc +38 -48
  1531. data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -7
  1532. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +5 -0
  1533. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +85 -60
  1534. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +1 -2
  1535. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -6
  1536. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -6
  1537. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +118 -100
  1538. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +166 -151
  1539. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -18
  1540. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  1541. data/src/core/resolver/dns/dns_resolver_plugin.cc +9 -10
  1542. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +52 -59
  1543. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -4
  1544. data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
  1545. data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
  1546. data/src/core/resolver/dns/native/dns_resolver.cc +21 -30
  1547. data/src/core/resolver/endpoint_addresses.cc +2 -5
  1548. data/src/core/resolver/endpoint_addresses.h +5 -3
  1549. data/src/core/resolver/fake/fake_resolver.cc +7 -9
  1550. data/src/core/resolver/fake/fake_resolver.h +8 -9
  1551. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +23 -25
  1552. data/src/core/resolver/polling_resolver.cc +39 -55
  1553. data/src/core/resolver/polling_resolver.h +8 -9
  1554. data/src/core/resolver/resolver.cc +2 -6
  1555. data/src/core/resolver/resolver.h +4 -10
  1556. data/src/core/resolver/resolver_factory.h +4 -5
  1557. data/src/core/resolver/resolver_registry.cc +8 -10
  1558. data/src/core/resolver/resolver_registry.h +4 -5
  1559. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +7 -8
  1560. data/src/core/resolver/xds/xds_config.cc +95 -0
  1561. data/src/core/resolver/xds/xds_config.h +108 -0
  1562. data/src/core/resolver/xds/xds_dependency_manager.cc +82 -171
  1563. data/src/core/resolver/xds/xds_dependency_manager.h +6 -71
  1564. data/src/core/resolver/xds/xds_resolver.cc +123 -104
  1565. data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
  1566. data/src/core/server/server.cc +382 -484
  1567. data/src/core/server/server.h +48 -32
  1568. data/src/core/server/server_call_tracer_filter.cc +20 -19
  1569. data/src/core/server/server_config_selector.h +6 -7
  1570. data/src/core/server/server_config_selector_filter.cc +17 -12
  1571. data/src/core/server/server_interface.h +2 -0
  1572. data/src/core/server/xds_channel_stack_modifier.cc +4 -4
  1573. data/src/core/server/xds_channel_stack_modifier.h +6 -7
  1574. data/src/core/server/xds_server_config_fetcher.cc +63 -73
  1575. data/src/core/service_config/service_config.h +4 -6
  1576. data/src/core/service_config/service_config_call_data.h +21 -20
  1577. data/src/core/service_config/service_config_channel_arg_filter.cc +16 -12
  1578. data/src/core/service_config/service_config_impl.cc +8 -10
  1579. data/src/core/service_config/service_config_impl.h +5 -8
  1580. data/src/core/service_config/service_config_parser.cc +4 -8
  1581. data/src/core/service_config/service_config_parser.h +3 -5
  1582. data/src/core/{lib/channel → telemetry}/call_tracer.cc +56 -34
  1583. data/src/core/{lib/channel → telemetry}/call_tracer.h +51 -14
  1584. data/src/core/{lib/debug → telemetry}/histogram_view.cc +1 -1
  1585. data/src/core/{lib/debug → telemetry}/histogram_view.h +4 -5
  1586. data/src/core/telemetry/metrics.cc +177 -0
  1587. data/src/core/telemetry/metrics.h +565 -0
  1588. data/src/core/{lib/debug → telemetry}/stats.cc +2 -3
  1589. data/src/core/{lib/debug → telemetry}/stats.h +7 -9
  1590. data/src/core/{lib/debug → telemetry}/stats_data.cc +88 -3
  1591. data/src/core/{lib/debug → telemetry}/stats_data.h +73 -8
  1592. data/src/core/{lib/channel → telemetry}/tcp_tracer.h +4 -5
  1593. data/src/core/tsi/alts/crypt/aes_gcm.cc +5 -8
  1594. data/src/core/tsi/alts/crypt/gsec.cc +2 -3
  1595. data/src/core/tsi/alts/crypt/gsec.h +3 -4
  1596. data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
  1597. data/src/core/tsi/alts/frame_protector/alts_counter.h +2 -3
  1598. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
  1599. data/src/core/tsi/alts/frame_protector/alts_crypter.h +2 -3
  1600. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -18
  1601. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +1 -2
  1602. data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -12
  1603. data/src/core/tsi/alts/frame_protector/frame_handler.h +1 -2
  1604. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +41 -46
  1605. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +2 -4
  1606. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -1
  1607. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +55 -57
  1608. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +3 -3
  1609. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
  1610. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
  1611. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +14 -17
  1612. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +1 -2
  1613. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +11 -12
  1614. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +1 -2
  1615. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +9 -11
  1616. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -5
  1617. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +1 -2
  1618. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +9 -13
  1619. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +1 -2
  1620. data/src/core/tsi/fake_transport_security.cc +27 -32
  1621. data/src/core/tsi/local_transport_security.cc +9 -10
  1622. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -12
  1623. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +8 -10
  1624. data/src/core/tsi/ssl/session_cache/ssl_session.h +4 -5
  1625. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -9
  1626. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +7 -8
  1627. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -4
  1628. data/src/core/tsi/ssl_transport_security.cc +126 -111
  1629. data/src/core/tsi/ssl_transport_security.h +4 -6
  1630. data/src/core/tsi/ssl_transport_security_utils.cc +77 -24
  1631. data/src/core/tsi/ssl_transport_security_utils.h +13 -4
  1632. data/src/core/tsi/ssl_types.h +1 -2
  1633. data/src/core/tsi/transport_security.cc +2 -7
  1634. data/src/core/tsi/transport_security.h +1 -4
  1635. data/src/core/tsi/transport_security_interface.h +1 -6
  1636. data/src/core/{lib/gpr → util}/alloc.cc +2 -6
  1637. data/src/core/{lib/gpr → util}/alloc.h +3 -3
  1638. data/src/core/{lib/gpr → util}/atm.cc +2 -3
  1639. data/src/core/{lib/gprpp → util}/atomic_utils.h +5 -5
  1640. data/src/core/{lib/avl → util}/avl.h +7 -8
  1641. data/src/core/{lib/backoff → util}/backoff.cc +10 -11
  1642. data/src/core/{lib/backoff → util}/backoff.h +8 -11
  1643. data/src/core/{lib/gprpp → util}/bitset.h +6 -7
  1644. data/src/core/{lib/gprpp → util}/chunked_vector.h +6 -8
  1645. data/src/core/{lib/gprpp → util}/construct_destruct.h +8 -7
  1646. data/src/core/{lib/gprpp → util}/cpp_impl_of.h +3 -3
  1647. data/src/core/{lib/gprpp → util}/crash.cc +4 -6
  1648. data/src/core/{lib/gprpp → util}/crash.h +5 -6
  1649. data/src/core/{lib/gprpp → util}/debug_location.h +11 -4
  1650. data/src/core/{lib/gprpp → util}/directory_reader.h +5 -5
  1651. data/src/core/{lib/gprpp → util}/down_cast.h +7 -8
  1652. data/src/core/{lib/gprpp → util}/dual_ref_counted.h +54 -43
  1653. data/src/core/util/dump_args.cc +54 -0
  1654. data/src/core/util/dump_args.h +122 -0
  1655. data/src/core/{lib/gprpp → util}/env.h +5 -5
  1656. data/src/core/{lib/debug → util}/event_log.cc +3 -4
  1657. data/src/core/{lib/debug → util}/event_log.h +7 -9
  1658. data/src/core/{lib/gprpp → util}/examine_stack.cc +1 -1
  1659. data/src/core/{lib/gprpp → util}/examine_stack.h +5 -5
  1660. data/src/core/{lib/gprpp → util}/fork.cc +4 -4
  1661. data/src/core/{lib/gprpp → util}/fork.h +5 -5
  1662. data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +31 -36
  1663. data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +13 -14
  1664. data/src/core/{lib/iomgr → util}/gethostname.h +3 -3
  1665. data/src/core/{lib/iomgr → util}/gethostname_fallback.cc +1 -1
  1666. data/src/core/{lib/iomgr → util}/gethostname_host_name_max.cc +2 -3
  1667. data/src/core/{lib/iomgr → util}/gethostname_sysconf.cc +2 -3
  1668. data/src/core/util/glob.cc +70 -0
  1669. data/src/core/util/glob.h +29 -0
  1670. data/src/core/{lib/gpr/time.cc → util/gpr_time.cc} +3 -6
  1671. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex.h +4 -5
  1672. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_posix.cc +4 -6
  1673. data/src/core/{lib/iomgr → util}/grpc_if_nametoindex_unsupported.cc +5 -8
  1674. data/src/core/{lib/gprpp → util}/host_port.cc +2 -4
  1675. data/src/core/{lib/gprpp → util}/host_port.h +5 -5
  1676. data/src/core/{lib/http → util/http_client}/format_request.cc +4 -6
  1677. data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
  1678. data/src/core/{lib/http → util/http_client}/httpcli.cc +43 -62
  1679. data/src/core/{lib/http → util/http_client}/httpcli.h +32 -30
  1680. data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +17 -20
  1681. data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +4 -4
  1682. data/src/core/{lib/http → util/http_client}/parser.cc +7 -11
  1683. data/src/core/{lib/http → util/http_client}/parser.h +5 -8
  1684. data/src/core/{lib/gprpp → util}/if_list.h +3 -3
  1685. data/src/core/{lib/gpr → util}/iphone/cpu.cc +1 -2
  1686. data/src/core/{lib → util}/json/json.h +3 -3
  1687. data/src/core/{lib → util}/json/json_args.h +5 -5
  1688. data/src/core/{lib → util}/json/json_channel_args.h +6 -7
  1689. data/src/core/{lib → util}/json/json_object_loader.cc +4 -4
  1690. data/src/core/{lib → util}/json/json_object_loader.h +11 -12
  1691. data/src/core/{lib → util}/json/json_reader.cc +4 -7
  1692. data/src/core/{lib → util}/json/json_reader.h +6 -7
  1693. data/src/core/{lib → util}/json/json_util.cc +5 -5
  1694. data/src/core/{lib → util}/json/json_util.h +7 -8
  1695. data/src/core/{lib → util}/json/json_writer.cc +2 -4
  1696. data/src/core/{lib → util}/json/json_writer.h +6 -6
  1697. data/src/core/util/latent_see.cc +142 -0
  1698. data/src/core/util/latent_see.h +327 -0
  1699. data/src/core/{lib/gpr → util}/linux/cpu.cc +11 -12
  1700. data/src/core/{lib/gprpp → util}/linux/env.cc +3 -3
  1701. data/src/core/{lib/gprpp → util}/load_file.cc +4 -6
  1702. data/src/core/{lib/gprpp → util}/load_file.h +5 -6
  1703. data/src/core/util/log.cc +127 -0
  1704. data/src/core/util/lru_cache.h +122 -0
  1705. data/src/core/{lib/gprpp → util}/manual_constructor.h +5 -6
  1706. data/src/core/{lib/gprpp → util}/match.h +6 -7
  1707. data/src/core/{lib/matchers → util}/matchers.cc +10 -3
  1708. data/src/core/{lib/matchers → util}/matchers.h +9 -5
  1709. data/src/core/{lib/gprpp → util}/memory.h +6 -6
  1710. data/src/core/{lib/gprpp → util}/mpscq.cc +1 -1
  1711. data/src/core/{lib/gprpp → util}/mpscq.h +6 -8
  1712. data/src/core/{lib/gpr → util}/msys/tmpfile.cc +5 -7
  1713. data/src/core/{lib/gprpp → util}/no_destruct.h +6 -6
  1714. data/src/core/{lib/gprpp → util}/notification.h +6 -7
  1715. data/src/core/{lib/gprpp → util}/orphanable.h +9 -9
  1716. data/src/core/{lib/gprpp → util}/overload.h +5 -5
  1717. data/src/core/{lib/gprpp → util}/packed_table.h +5 -5
  1718. data/src/core/{lib/gprpp → util}/per_cpu.cc +2 -2
  1719. data/src/core/{lib/gprpp → util}/per_cpu.h +5 -6
  1720. data/src/core/{lib/gpr → util}/posix/cpu.cc +6 -7
  1721. data/src/core/{lib/gprpp → util}/posix/directory_reader.cc +4 -4
  1722. data/src/core/{lib/gprpp → util}/posix/env.cc +1 -1
  1723. data/src/core/{lib/gprpp → util}/posix/stat.cc +7 -9
  1724. data/src/core/{lib/gpr → util}/posix/string.cc +2 -3
  1725. data/src/core/{lib/gpr → util}/posix/sync.cc +3 -6
  1726. data/src/core/{lib/gprpp → util}/posix/thd.cc +16 -20
  1727. data/src/core/{lib/gpr → util}/posix/time.cc +5 -7
  1728. data/src/core/{lib/gpr → util}/posix/tmpfile.cc +11 -13
  1729. data/src/core/{lib/backoff → util}/random_early_detection.cc +3 -3
  1730. data/src/core/{lib/backoff → util}/random_early_detection.h +4 -5
  1731. data/src/core/{lib/gprpp → util}/ref_counted.h +39 -32
  1732. data/src/core/{lib/gprpp → util}/ref_counted_ptr.h +6 -8
  1733. data/src/core/{lib/gprpp → util}/ref_counted_string.cc +3 -4
  1734. data/src/core/{lib/gprpp → util}/ref_counted_string.h +6 -8
  1735. data/src/core/util/ring_buffer.h +123 -0
  1736. data/src/core/{lib/gprpp → util}/single_set_ptr.h +10 -9
  1737. data/src/core/{lib/gprpp → util}/sorted_pack.h +6 -6
  1738. data/src/core/{lib/gpr → util}/spinlock.h +5 -7
  1739. data/src/core/{lib/gprpp → util}/stat.h +4 -5
  1740. data/src/core/{lib/gprpp → util}/status_helper.cc +16 -38
  1741. data/src/core/{lib/gprpp → util}/status_helper.h +8 -38
  1742. data/src/core/{lib/gprpp → util}/strerror.cc +2 -3
  1743. data/src/core/{lib/gprpp → util}/strerror.h +5 -5
  1744. data/src/core/{lib/gpr → util}/string.cc +13 -16
  1745. data/src/core/{lib/gpr → util}/string.h +4 -6
  1746. data/src/core/{lib/gpr → util}/sync.cc +3 -6
  1747. data/src/core/{lib/gprpp → util}/sync.h +7 -8
  1748. data/src/core/{lib/gpr → util}/sync_abseil.cc +5 -8
  1749. data/src/core/{lib/gprpp → util}/table.h +56 -22
  1750. data/src/core/{lib/gprpp → util}/tchar.cc +1 -1
  1751. data/src/core/{lib/gprpp → util}/tchar.h +3 -3
  1752. data/src/core/{lib/gprpp → util}/thd.h +5 -7
  1753. data/src/core/{lib/gprpp → util}/time.cc +8 -10
  1754. data/src/core/{lib/gprpp → util}/time.h +28 -27
  1755. data/src/core/{lib/gprpp → util}/time_averaged_stats.cc +1 -1
  1756. data/src/core/{lib/gprpp → util}/time_averaged_stats.h +3 -3
  1757. data/src/core/{lib/gpr → util}/time_precise.cc +7 -7
  1758. data/src/core/{lib/gpr → util}/time_precise.h +3 -4
  1759. data/src/core/{lib/gprpp → util}/time_util.cc +3 -5
  1760. data/src/core/{lib/gprpp → util}/time_util.h +5 -5
  1761. data/src/core/{lib/gpr → util}/tmpfile.h +3 -4
  1762. data/src/core/{lib/gprpp → util}/type_list.h +3 -3
  1763. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  1764. data/src/core/{lib/gprpp → util}/unique_type_name.h +34 -15
  1765. data/src/core/{xds/grpc → util}/upb_utils.h +3 -5
  1766. data/src/core/{lib/uri/uri_parser.cc → util/uri.cc} +2 -4
  1767. data/src/core/{lib/uri/uri_parser.h → util/uri.h} +5 -5
  1768. data/src/core/{lib/gpr → util}/useful.h +23 -52
  1769. data/src/core/{lib/gprpp → util}/uuid_v4.cc +3 -3
  1770. data/src/core/{lib/gprpp → util}/uuid_v4.h +4 -5
  1771. data/src/core/{lib/gprpp → util}/validation_errors.cc +12 -4
  1772. data/src/core/{lib/gprpp → util}/validation_errors.h +15 -5
  1773. data/src/core/{lib/gpr → util}/windows/cpu.cc +1 -2
  1774. data/src/core/{lib/gprpp → util}/windows/directory_reader.cc +1 -3
  1775. data/src/core/{lib/gprpp → util}/windows/env.cc +2 -2
  1776. data/src/core/{lib/gprpp → util}/windows/stat.cc +6 -8
  1777. data/src/core/{lib/gpr → util}/windows/string.cc +3 -4
  1778. data/src/core/{lib/gpr → util}/windows/string_util.cc +6 -8
  1779. data/src/core/{lib/gpr → util}/windows/sync.cc +2 -4
  1780. data/src/core/{lib/gprpp → util}/windows/thd.cc +8 -10
  1781. data/src/core/{lib/gpr → util}/windows/time.cc +3 -6
  1782. data/src/core/{lib/gpr → util}/windows/tmpfile.cc +5 -7
  1783. data/src/core/{lib/gprpp → util}/work_serializer.cc +75 -95
  1784. data/src/core/{lib/gprpp → util}/work_serializer.h +8 -9
  1785. data/src/core/{lib/gprpp → util}/xxhash_inline.h +3 -3
  1786. data/src/core/xds/grpc/certificate_provider_store.cc +4 -5
  1787. data/src/core/xds/grpc/certificate_provider_store.h +12 -13
  1788. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +6 -7
  1789. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +9 -10
  1790. data/src/core/xds/grpc/xds_audit_logger_registry.cc +5 -5
  1791. data/src/core/xds/grpc/xds_audit_logger_registry.h +4 -5
  1792. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +8 -166
  1793. data/src/core/xds/grpc/xds_bootstrap_grpc.h +9 -39
  1794. data/src/core/xds/grpc/xds_certificate_provider.cc +4 -5
  1795. data/src/core/xds/grpc/xds_certificate_provider.h +12 -11
  1796. data/src/core/xds/grpc/xds_client_grpc.cc +98 -76
  1797. data/src/core/xds/grpc/xds_client_grpc.h +16 -10
  1798. data/src/core/xds/grpc/xds_cluster.cc +12 -737
  1799. data/src/core/xds/grpc/xds_cluster.h +36 -45
  1800. data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
  1801. data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
  1802. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +6 -9
  1803. data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +5 -6
  1804. data/src/core/xds/grpc/xds_common_types.cc +33 -438
  1805. data/src/core/xds/grpc/xds_common_types.h +10 -28
  1806. data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
  1807. data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
  1808. data/src/core/xds/grpc/xds_endpoint.cc +0 -420
  1809. data/src/core/xds/grpc/xds_endpoint.h +7 -29
  1810. data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
  1811. data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
  1812. data/src/core/xds/grpc/xds_health_status.cc +0 -2
  1813. data/src/core/xds/grpc/xds_health_status.h +0 -3
  1814. data/src/core/xds/grpc/xds_http_fault_filter.cc +28 -16
  1815. data/src/core/xds/grpc/xds_http_fault_filter.h +11 -7
  1816. data/src/core/xds/grpc/{xds_http_filters.h → xds_http_filter.h} +21 -69
  1817. data/src/core/xds/grpc/{xds_http_filters.cc → xds_http_filter_registry.cc} +11 -5
  1818. data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
  1819. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
  1820. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
  1821. data/src/core/xds/grpc/xds_http_rbac_filter.cc +64 -49
  1822. data/src/core/xds/grpc/xds_http_rbac_filter.h +11 -7
  1823. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +24 -11
  1824. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +11 -7
  1825. data/src/core/xds/grpc/xds_lb_policy_registry.cc +22 -27
  1826. data/src/core/xds/grpc/xds_lb_policy_registry.h +4 -5
  1827. data/src/core/xds/grpc/xds_listener.cc +19 -986
  1828. data/src/core/xds/grpc/xds_listener.h +2 -35
  1829. data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
  1830. data/src/core/xds/grpc/xds_listener_parser.h +59 -0
  1831. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  1832. data/src/core/xds/grpc/xds_metadata.h +150 -0
  1833. data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
  1834. data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
  1835. data/src/core/xds/grpc/xds_route_config.cc +2 -919
  1836. data/src/core/xds/grpc/xds_route_config.h +8 -41
  1837. data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
  1838. data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
  1839. data/src/core/xds/grpc/xds_routing.cc +60 -27
  1840. data/src/core/xds/grpc/xds_routing.h +12 -6
  1841. data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
  1842. data/src/core/xds/grpc/xds_server_grpc.h +63 -0
  1843. data/src/core/xds/grpc/xds_transport_grpc.cc +98 -55
  1844. data/src/core/xds/grpc/xds_transport_grpc.h +34 -23
  1845. data/src/core/xds/xds_client/lrs_client.cc +1292 -0
  1846. data/src/core/xds/xds_client/lrs_client.h +394 -0
  1847. data/src/core/xds/xds_client/xds_api.cc +38 -256
  1848. data/src/core/xds/xds_client/xds_api.h +13 -36
  1849. data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
  1850. data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
  1851. data/src/core/xds/xds_client/xds_bootstrap.cc +3 -4
  1852. data/src/core/xds/xds_client/xds_bootstrap.h +3 -3
  1853. data/src/core/xds/xds_client/xds_client.cc +175 -793
  1854. data/src/core/xds/xds_client/xds_client.h +33 -89
  1855. data/src/core/xds/xds_client/xds_locality.h +102 -0
  1856. data/src/core/xds/xds_client/xds_metrics.h +2 -2
  1857. data/src/core/xds/xds_client/xds_resource_type.h +4 -5
  1858. data/src/core/xds/xds_client/xds_resource_type_impl.h +3 -4
  1859. data/src/core/xds/xds_client/xds_transport.h +29 -14
  1860. data/src/ruby/bin/math_pb.rb +1 -22
  1861. data/src/ruby/ext/grpc/extconf.rb +1 -1
  1862. data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
  1863. data/src/ruby/ext/grpc/rb_call.c +15 -8
  1864. data/src/ruby/ext/grpc/rb_call_credentials.c +39 -33
  1865. data/src/ruby/ext/grpc/rb_channel.c +42 -37
  1866. data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
  1867. data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -6
  1868. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
  1869. data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
  1870. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1871. data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
  1872. data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
  1873. data/src/ruby/ext/grpc/rb_grpc.c +16 -16
  1874. data/src/ruby/ext/grpc/rb_grpc.h +7 -0
  1875. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -14
  1876. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -21
  1877. data/src/ruby/ext/grpc/rb_server.c +47 -28
  1878. data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
  1879. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -2
  1880. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -6
  1881. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
  1882. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +4 -4
  1883. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -2
  1884. data/src/ruby/lib/grpc/generic/active_call.rb +8 -5
  1885. data/src/ruby/lib/grpc/logconfig.rb +13 -0
  1886. data/src/ruby/lib/grpc/version.rb +1 -1
  1887. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1888. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1889. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1890. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1891. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1892. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1893. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1894. data/src/ruby/spec/call_spec.rb +53 -40
  1895. data/src/ruby/spec/channel_spec.rb +4 -2
  1896. data/src/ruby/spec/client_server_spec.rb +148 -507
  1897. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  1898. data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
  1899. data/src/ruby/spec/logconfig_spec.rb +30 -0
  1900. data/src/ruby/spec/support/services.rb +3 -0
  1901. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
  1902. data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
  1903. data/third_party/abseil-cpp/absl/base/config.h +32 -51
  1904. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
  1905. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
  1906. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
  1907. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
  1908. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
  1909. data/third_party/abseil-cpp/absl/base/macros.h +48 -0
  1910. data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
  1911. data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
  1912. data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
  1913. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1914. data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
  1915. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
  1916. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
  1917. data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  1918. data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
  1919. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
  1920. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
  1921. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
  1922. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
  1923. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
  1924. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
  1925. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
  1926. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
  1927. data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
  1928. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
  1929. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
  1930. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
  1931. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
  1932. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
  1933. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
  1934. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
  1935. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
  1936. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
  1937. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
  1938. data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  1939. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  1940. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  1941. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
  1942. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
  1943. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  1944. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
  1945. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
  1946. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
  1947. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
  1948. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  1949. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  1950. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
  1951. data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
  1952. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
  1953. data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
  1954. data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
  1955. data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
  1956. data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
  1957. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
  1958. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
  1959. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
  1960. data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
  1961. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
  1962. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
  1963. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +3 -3
  1964. data/third_party/abseil-cpp/absl/log/globals.h +28 -15
  1965. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +20 -0
  1966. data/third_party/abseil-cpp/absl/log/internal/check_op.h +63 -21
  1967. data/third_party/abseil-cpp/absl/log/internal/conditions.h +2 -2
  1968. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +23 -23
  1969. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +104 -47
  1970. data/third_party/abseil-cpp/absl/log/internal/log_message.h +23 -4
  1971. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +1 -10
  1972. data/third_party/abseil-cpp/absl/log/internal/strip.h +36 -0
  1973. data/third_party/abseil-cpp/absl/log/log.h +5 -1
  1974. data/third_party/abseil-cpp/absl/log/log_sink.h +11 -4
  1975. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +3 -3
  1976. data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
  1977. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
  1978. data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
  1979. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
  1980. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
  1981. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
  1982. data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
  1983. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
  1984. data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
  1985. data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
  1986. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
  1987. data/third_party/abseil-cpp/absl/status/status.cc +0 -4
  1988. data/third_party/abseil-cpp/absl/status/status.h +4 -4
  1989. data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
  1990. data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
  1991. data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
  1992. data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
  1993. data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
  1994. data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
  1995. data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
  1996. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
  1997. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
  1998. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
  1999. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
  2000. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
  2001. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
  2002. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
  2003. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
  2004. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
  2005. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
  2006. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
  2007. data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
  2008. data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
  2009. data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
  2010. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
  2011. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
  2012. data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
  2013. data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
  2014. data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
  2015. data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
  2016. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
  2017. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
  2018. data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
  2019. data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
  2020. data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
  2021. data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
  2022. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  2023. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  2024. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
  2025. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  2026. data/third_party/abseil-cpp/absl/time/time.h +73 -29
  2027. data/third_party/abseil-cpp/absl/types/compare.h +505 -0
  2028. data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
  2029. data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
  2030. data/third_party/abseil-cpp/absl/types/optional.h +15 -18
  2031. data/third_party/abseil-cpp/absl/types/span.h +3 -2
  2032. data/third_party/abseil-cpp/absl/types/variant.h +19 -24
  2033. data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
  2034. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
  2035. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand/fork_detect.h → bcm_support.h} +51 -6
  2036. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +12 -12
  2037. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -5
  2038. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
  2039. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
  2040. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
  2041. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
  2042. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
  2043. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
  2044. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
  2045. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
  2046. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -3
  2047. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +0 -2
  2048. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
  2049. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
  2050. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes.c → aes.c.inc} +21 -0
  2051. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
  2052. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
  2053. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
  2054. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div.c → div.c.inc} +146 -179
  2055. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{exponentiation.c → exponentiation.c.inc} +45 -1
  2056. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
  2057. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{random.c → random.c.inc} +6 -8
  2058. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{sqrt.c → sqrt.c.inc} +1 -1
  2059. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aes.c → e_aes.c.inc} +9 -8
  2060. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_key.c → ec_key.c.inc} +11 -7
  2061. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-nistz.c → p256-nistz.c.inc} +104 -7
  2062. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
  2063. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/{ecdsa.c → ecdsa.c.inc} +52 -107
  2064. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
  2065. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
  2066. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
  2067. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{rand.c → rand.c.inc} +26 -40
  2068. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{padding.c → padding.c.inc} +2 -5
  2069. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa_impl.c → rsa_impl.c.inc} +1 -1
  2070. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{fips.c → fips.c.inc} +6 -4
  2071. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/{self_check.c → self_check.c.inc} +9 -35
  2072. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
  2073. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/{service_indicator.c → service_indicator.c.inc} +2 -2
  2074. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +9 -4
  2075. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha512.c → sha512.c.inc} +6 -0
  2076. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +293 -2
  2077. data/third_party/boringssl-with-bazel/src/crypto/internal.h +98 -24
  2078. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +1 -0
  2079. data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -3
  2080. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
  2081. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
  2082. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
  2083. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
  2084. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
  2085. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +4 -5
  2086. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +2 -3
  2087. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +1 -1
  2088. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
  2089. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
  2090. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/fork_detect.c +26 -28
  2091. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
  2092. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
  2093. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
  2094. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
  2095. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
  2096. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
  2097. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/urandom.c +19 -19
  2098. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
  2099. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
  2100. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +0 -4
  2101. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
  2102. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -10
  2103. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +7 -17
  2104. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +14 -1
  2105. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +8 -6
  2106. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
  2107. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -11
  2108. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
  2109. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +10 -0
  2110. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
  2111. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
  2112. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
  2113. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
  2114. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +3 -4
  2115. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
  2116. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +48 -12
  2117. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +118 -38
  2118. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -23
  2119. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
  2120. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
  2121. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
  2122. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
  2123. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +296 -61
  2124. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +24 -16
  2125. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +71 -39
  2126. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +16 -4
  2127. data/third_party/boringssl-with-bazel/src/ssl/internal.h +125 -38
  2128. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +44 -16
  2129. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
  2130. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
  2131. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
  2132. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +98 -3
  2133. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +69 -29
  2134. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +59 -20
  2135. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
  2136. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -1
  2137. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +18 -4
  2138. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
  2139. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +15 -5
  2140. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
  2141. data/third_party/upb/upb/base/string_view.h +1 -1
  2142. data/third_party/upb/upb/json/decode.c +21 -3
  2143. data/third_party/upb/upb/json/encode.c +2 -2
  2144. data/third_party/upb/upb/lex/round_trip.c +10 -0
  2145. data/third_party/upb/upb/mem/arena.c +79 -3
  2146. data/third_party/upb/upb/mem/arena.h +20 -9
  2147. data/third_party/upb/upb/mem/arena.hpp +5 -1
  2148. data/third_party/upb/upb/mem/internal/arena.h +11 -8
  2149. data/third_party/upb/upb/message/accessors.c +6 -7
  2150. data/third_party/upb/upb/message/accessors.h +180 -378
  2151. data/third_party/upb/upb/message/array.c +26 -3
  2152. data/third_party/upb/upb/message/array.h +17 -9
  2153. data/third_party/upb/upb/message/compat.c +5 -5
  2154. data/third_party/upb/upb/message/compat.h +3 -3
  2155. data/third_party/upb/upb/message/copy.c +23 -20
  2156. data/third_party/upb/upb/message/internal/accessors.h +610 -55
  2157. data/third_party/upb/upb/message/internal/array.h +23 -15
  2158. data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
  2159. data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
  2160. data/third_party/upb/upb/message/internal/extension.c +12 -12
  2161. data/third_party/upb/upb/message/internal/extension.h +9 -12
  2162. data/third_party/upb/upb/message/internal/map.h +15 -0
  2163. data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
  2164. data/third_party/upb/upb/message/internal/message.c +19 -3
  2165. data/third_party/upb/upb/message/internal/message.h +11 -0
  2166. data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
  2167. data/third_party/upb/upb/message/internal/types.h +41 -1
  2168. data/third_party/upb/upb/message/map.c +25 -0
  2169. data/third_party/upb/upb/message/map.h +11 -7
  2170. data/third_party/upb/upb/message/merge.c +38 -0
  2171. data/third_party/upb/upb/message/merge.h +26 -0
  2172. data/third_party/upb/upb/message/message.c +83 -4
  2173. data/third_party/upb/upb/message/message.h +16 -1
  2174. data/third_party/upb/upb/message/tagged_ptr.h +4 -8
  2175. data/third_party/upb/upb/message/value.h +26 -0
  2176. data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
  2177. data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
  2178. data/third_party/upb/upb/mini_descriptor/decode.c +19 -3
  2179. data/third_party/upb/upb/mini_descriptor/link.c +23 -21
  2180. data/third_party/upb/upb/mini_table/enum.h +2 -4
  2181. data/third_party/upb/upb/mini_table/extension.h +4 -12
  2182. data/third_party/upb/upb/mini_table/extension_registry.c +18 -0
  2183. data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
  2184. data/third_party/upb/upb/mini_table/field.h +12 -38
  2185. data/third_party/upb/upb/mini_table/file.h +6 -19
  2186. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  2187. data/third_party/upb/upb/mini_table/internal/extension.h +18 -9
  2188. data/third_party/upb/upb/mini_table/internal/field.h +23 -23
  2189. data/third_party/upb/upb/mini_table/internal/file.h +7 -7
  2190. data/third_party/upb/upb/mini_table/internal/message.c +21 -1
  2191. data/third_party/upb/upb/mini_table/internal/message.h +80 -36
  2192. data/third_party/upb/upb/mini_table/internal/sub.h +9 -4
  2193. data/third_party/upb/upb/mini_table/message.h +23 -22
  2194. data/third_party/upb/upb/mini_table/sub.h +4 -12
  2195. data/third_party/upb/upb/port/def.inc +83 -6
  2196. data/third_party/upb/upb/port/undef.inc +5 -1
  2197. data/third_party/upb/upb/reflection/def.hpp +35 -0
  2198. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  2199. data/third_party/upb/upb/reflection/enum_def.c +5 -1
  2200. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  2201. data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
  2202. data/third_party/upb/upb/reflection/field_def.c +69 -29
  2203. data/third_party/upb/upb/reflection/field_def.h +4 -0
  2204. data/third_party/upb/upb/reflection/file_def.c +30 -4
  2205. data/third_party/upb/upb/reflection/file_def.h +3 -0
  2206. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  2207. data/third_party/upb/upb/reflection/message.c +26 -9
  2208. data/third_party/upb/upb/reflection/message.h +2 -2
  2209. data/third_party/upb/upb/reflection/message_def.c +14 -9
  2210. data/third_party/upb/upb/reflection/method_def.h +8 -7
  2211. data/third_party/upb/upb/reflection/service_def.h +6 -5
  2212. data/third_party/upb/upb/text/encode.c +60 -389
  2213. data/third_party/upb/upb/text/encode.h +1 -11
  2214. data/third_party/upb/upb/text/internal/encode.c +180 -0
  2215. data/third_party/upb/upb/text/internal/encode.h +240 -0
  2216. data/third_party/upb/upb/text/options.h +22 -0
  2217. data/third_party/upb/upb/wire/decode.c +160 -94
  2218. data/third_party/upb/upb/wire/decode.h +14 -1
  2219. data/third_party/upb/upb/wire/encode.c +89 -48
  2220. data/third_party/upb/upb/wire/encode.h +12 -1
  2221. data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
  2222. data/third_party/upb/upb/wire/internal/decode_fast.c +28 -29
  2223. data/third_party/upb/upb/wire/internal/reader.h +3 -3
  2224. data/third_party/upb/upb/wire/reader.c +1 -2
  2225. data/third_party/upb/upb/wire/reader.h +4 -8
  2226. metadata +360 -275
  2227. data/src/core/client_channel/config_selector.cc +0 -60
  2228. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  2229. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  2230. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -45
  2231. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  2232. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  2233. data/src/core/handshaker/security/tsi_error.cc +0 -31
  2234. data/src/core/handshaker/security/tsi_error.h +0 -30
  2235. data/src/core/lib/channel/channel_stack_trace.cc +0 -19
  2236. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  2237. data/src/core/lib/channel/context.h +0 -105
  2238. data/src/core/lib/channel/metrics.cc +0 -334
  2239. data/src/core/lib/channel/metrics.h +0 -365
  2240. data/src/core/lib/event_engine/trace.cc +0 -25
  2241. data/src/core/lib/event_engine/trace.h +0 -48
  2242. data/src/core/lib/gpr/android/log.cc +0 -79
  2243. data/src/core/lib/gpr/linux/log.cc +0 -114
  2244. data/src/core/lib/gpr/log.cc +0 -166
  2245. data/src/core/lib/gpr/posix/log.cc +0 -111
  2246. data/src/core/lib/gpr/windows/log.cc +0 -116
  2247. data/src/core/lib/iomgr/ev_windows.cc +0 -30
  2248. data/src/core/lib/promise/trace.cc +0 -20
  2249. data/src/core/lib/promise/trace.h +0 -24
  2250. data/src/core/lib/resource_quota/trace.cc +0 -19
  2251. data/src/core/lib/resource_quota/trace.h +0 -24
  2252. data/src/core/lib/slice/slice_refcount.cc +0 -20
  2253. data/src/core/lib/surface/api_trace.cc +0 -25
  2254. data/src/core/lib/surface/api_trace.h +0 -52
  2255. data/src/core/lib/surface/call_trace.h +0 -24
  2256. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  2257. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  2258. data/src/core/lib/transport/batch_builder.cc +0 -172
  2259. data/src/core/lib/transport/batch_builder.h +0 -474
  2260. data/src/core/resolver/binder/binder_resolver.cc +0 -154
  2261. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  2262. data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
  2263. data/src/core/xds/xds_client/xds_client_stats.cc +0 -172
  2264. data/src/core/xds/xds_client/xds_client_stats.h +0 -258
  2265. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
  2266. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  2267. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
  2268. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
  2269. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
  2270. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
  2271. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
  2272. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
  2273. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bytes.c → bytes.c.inc} +0 -0
  2274. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
  2275. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
  2276. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{div_extra.c → div_extra.c.inc} +0 -0
  2277. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
  2278. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd_extra.c → gcd_extra.c.inc} +0 -0
  2279. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
  2280. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
  2281. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
  2282. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery_inv.c → montgomery_inv.c.inc} +0 -0
  2283. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{mul.c → mul.c.inc} +0 -0
  2284. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{prime.c → prime.c.inc} +0 -0
  2285. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
  2286. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
  2287. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
  2288. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
  2289. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
  2290. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
  2291. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
  2292. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
  2293. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
  2294. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
  2295. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
  2296. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
  2297. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
  2298. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
  2299. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
  2300. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
  2301. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
  2302. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{scalar.c → scalar.c.inc} +0 -0
  2303. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
  2304. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
  2305. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
  2306. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
  2307. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
  2308. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
  2309. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
  2310. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
  2311. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
  2312. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
  2313. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
  2314. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
  2315. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
  2316. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
  2317. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
  2318. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
  2319. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
  2320. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
  2321. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{rsa.c → rsa.c.inc} +0 -0
  2322. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha1.c → sha1.c.inc} +0 -0
  2323. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/{sha256.c → sha256.c.inc} +0 -0
  2324. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/{kdf.c → kdf.c.inc} +0 -0
  2325. /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -3,7 +3,8 @@
3
3
  * google/protobuf/descriptor.proto
4
4
  *
5
5
  * Do not edit -- your changes will be discarded when the file is
6
- * regenerated. */
6
+ * regenerated.
7
+ * NO CHECKED-IN PROTOBUF GENCODE */
7
8
 
8
9
  #ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
9
10
  #define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
@@ -37,6 +38,7 @@ typedef struct google_protobuf_FileOptions { upb_Message UPB_PRIVATE(base); } go
37
38
  typedef struct google_protobuf_MessageOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_MessageOptions;
38
39
  typedef struct google_protobuf_FieldOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions;
39
40
  typedef struct google_protobuf_FieldOptions_EditionDefault { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_EditionDefault;
41
+ typedef struct google_protobuf_FieldOptions_FeatureSupport { upb_Message UPB_PRIVATE(base); } google_protobuf_FieldOptions_FeatureSupport;
40
42
  typedef struct google_protobuf_OneofOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_OneofOptions;
41
43
  typedef struct google_protobuf_EnumOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumOptions;
42
44
  typedef struct google_protobuf_EnumValueOptions { upb_Message UPB_PRIVATE(base); } google_protobuf_EnumValueOptions;
@@ -56,6 +58,7 @@ typedef enum {
56
58
  google_protobuf_EDITION_UNKNOWN = 0,
57
59
  google_protobuf_EDITION_1_TEST_ONLY = 1,
58
60
  google_protobuf_EDITION_2_TEST_ONLY = 2,
61
+ google_protobuf_EDITION_LEGACY = 900,
59
62
  google_protobuf_EDITION_PROTO2 = 998,
60
63
  google_protobuf_EDITION_PROTO3 = 999,
61
64
  google_protobuf_EDITION_2023 = 1000,
@@ -228,6 +231,7 @@ UPB_INLINE void google_protobuf_FileDescriptorSet_clear_file(google_protobuf_Fil
228
231
  }
229
232
  UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
230
233
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
234
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
231
235
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
232
236
  if (arr) {
233
237
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -239,6 +243,7 @@ UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_Fil
239
243
  }
240
244
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(const google_protobuf_FileDescriptorSet* msg, size_t* size) {
241
245
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
246
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
242
247
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
243
248
  if (size) {
244
249
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -247,6 +252,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorSet_file_upb_array(co
247
252
  }
248
253
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(google_protobuf_FileDescriptorSet* msg, size_t* size, upb_Arena* arena) {
249
254
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
255
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
250
256
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
251
257
  &field, arena);
252
258
  if (size) {
@@ -257,6 +263,7 @@ UPB_INLINE upb_Array* _google_protobuf_FileDescriptorSet_file_mutable_upb_array(
257
263
 
258
264
  UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet* msg, size_t* size) {
259
265
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
266
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
260
267
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
261
268
  if (arr) {
262
269
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -273,6 +280,7 @@ UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorS
273
280
  }
274
281
  UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet* msg, upb_Arena* arena) {
275
282
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
283
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileDescriptorProto_msg_init);
276
284
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
277
285
  UPB_UPCAST(msg), &field, arena);
278
286
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -392,6 +400,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_message_type(google_pr
392
400
  }
393
401
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
394
402
  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)};
403
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
395
404
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
396
405
  if (arr) {
397
406
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -403,6 +412,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDes
403
412
  }
404
413
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
405
414
  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)};
415
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
406
416
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
407
417
  if (size) {
408
418
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -411,6 +421,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_message_type_up
411
421
  }
412
422
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_message_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
413
423
  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
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
414
425
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
415
426
  &field, arena);
416
427
  if (size) {
@@ -424,6 +435,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_enum_type(google_proto
424
435
  }
425
436
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
426
437
  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)};
438
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
427
439
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
428
440
  if (arr) {
429
441
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -435,6 +447,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Fil
435
447
  }
436
448
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
437
449
  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)};
450
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
438
451
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
439
452
  if (size) {
440
453
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -443,6 +456,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_enum_type_upb_a
443
456
  }
444
457
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_enum_type_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
445
458
  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
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
446
460
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
447
461
  &field, arena);
448
462
  if (size) {
@@ -456,6 +470,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_service(google_protobu
456
470
  }
457
471
  UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
458
472
  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)};
473
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
459
474
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
460
475
  if (arr) {
461
476
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -467,6 +482,7 @@ UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_
467
482
  }
468
483
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
469
484
  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)};
485
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
470
486
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
471
487
  if (size) {
472
488
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -475,6 +491,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_service_upb_arr
475
491
  }
476
492
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_service_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
477
493
  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
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
478
495
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
479
496
  &field, arena);
480
497
  if (size) {
@@ -488,6 +505,7 @@ UPB_INLINE void google_protobuf_FileDescriptorProto_clear_extension(google_proto
488
505
  }
489
506
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
490
507
  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)};
508
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
491
509
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
492
510
  if (arr) {
493
511
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -499,6 +517,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_Fi
499
517
  }
500
518
  UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_array(const google_protobuf_FileDescriptorProto* msg, size_t* size) {
501
519
  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)};
520
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
502
521
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
503
522
  if (size) {
504
523
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -507,6 +526,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileDescriptorProto_extension_upb_a
507
526
  }
508
527
  UPB_INLINE upb_Array* _google_protobuf_FileDescriptorProto_extension_mutable_upb_array(google_protobuf_FileDescriptorProto* msg, size_t* size, upb_Arena* arena) {
509
528
  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
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
510
530
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
511
531
  &field, arena);
512
532
  if (size) {
@@ -522,6 +542,7 @@ UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProt
522
542
  const google_protobuf_FileOptions* default_val = NULL;
523
543
  const google_protobuf_FileOptions* ret;
524
544
  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)};
545
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
525
546
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
526
547
  &default_val, &ret);
527
548
  return ret;
@@ -538,6 +559,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorP
538
559
  const google_protobuf_SourceCodeInfo* default_val = NULL;
539
560
  const google_protobuf_SourceCodeInfo* ret;
540
561
  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)};
562
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
541
563
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
542
564
  &default_val, &ret);
543
565
  return ret;
@@ -645,11 +667,11 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_edition(const google_pro
645
667
 
646
668
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
647
669
  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)};
648
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
670
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
649
671
  }
650
672
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
651
673
  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)};
652
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
674
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
653
675
  }
654
676
  UPB_INLINE upb_StringView* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto* msg, size_t* size) {
655
677
  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)};
@@ -681,6 +703,7 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protob
681
703
  }
682
704
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
683
705
  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)};
706
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
684
707
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
685
708
  if (arr) {
686
709
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -697,6 +720,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto
697
720
  }
698
721
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
699
722
  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)};
723
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
700
724
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
701
725
  UPB_UPCAST(msg), &field, arena);
702
726
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -711,6 +735,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescripto
711
735
  }
712
736
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto* msg, size_t* size) {
713
737
  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)};
738
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
714
739
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
715
740
  if (arr) {
716
741
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -727,6 +752,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorP
727
752
  }
728
753
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
729
754
  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)};
755
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
730
756
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
731
757
  UPB_UPCAST(msg), &field, arena);
732
758
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -741,6 +767,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescr
741
767
  }
742
768
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto* msg, size_t* size) {
743
769
  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)};
770
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
744
771
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
745
772
  if (arr) {
746
773
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -757,6 +784,7 @@ UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescript
757
784
  }
758
785
  UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
759
786
  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)};
787
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceDescriptorProto_msg_init);
760
788
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
761
789
  UPB_UPCAST(msg), &field, arena);
762
790
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -771,6 +799,7 @@ UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDe
771
799
  }
772
800
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto* msg, size_t* size) {
773
801
  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)};
802
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
774
803
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
775
804
  if (arr) {
776
805
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -787,6 +816,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptor
787
816
  }
788
817
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
789
818
  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)};
819
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
790
820
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
791
821
  UPB_UPCAST(msg), &field, arena);
792
822
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -801,7 +831,8 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDesc
801
831
  }
802
832
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
803
833
  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)};
804
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
834
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FileOptions_msg_init);
835
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
805
836
  }
806
837
  UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
807
838
  struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg);
@@ -813,7 +844,8 @@ UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorPro
813
844
  }
814
845
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
815
846
  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)};
816
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
847
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo_msg_init);
848
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
817
849
  }
818
850
  UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto* msg, upb_Arena* arena) {
819
851
  struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg);
@@ -881,11 +913,11 @@ UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_p
881
913
  }
882
914
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_StringView value) {
883
915
  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)};
884
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
916
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
885
917
  }
886
918
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_edition(google_protobuf_FileDescriptorProto *msg, int32_t value) {
887
919
  const upb_MiniTableField field = {14, UPB_SIZE(48, 12), 69, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
888
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
920
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
889
921
  }
890
922
 
891
923
  /* google.protobuf.DescriptorProto */
@@ -946,6 +978,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_field(google_protobuf_Desc
946
978
  }
947
979
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto* msg, size_t* size) {
948
980
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
981
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
949
982
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
950
983
  if (arr) {
951
984
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -957,6 +990,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
957
990
  }
958
991
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
959
992
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
993
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
960
994
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
961
995
  if (size) {
962
996
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -965,6 +999,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_field_upb_array(con
965
999
  }
966
1000
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_field_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
967
1001
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1002
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
968
1003
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
969
1004
  &field, arena);
970
1005
  if (size) {
@@ -978,6 +1013,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_nested_type(google_protobu
978
1013
  }
979
1014
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
980
1015
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1016
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
981
1017
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
982
1018
  if (arr) {
983
1019
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -989,6 +1025,7 @@ UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_Descrip
989
1025
  }
990
1026
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
991
1027
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1028
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
992
1029
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
993
1030
  if (size) {
994
1031
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -997,6 +1034,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_nested_type_upb_arr
997
1034
  }
998
1035
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_nested_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
999
1036
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1037
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1000
1038
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1001
1039
  &field, arena);
1002
1040
  if (size) {
@@ -1010,6 +1048,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_enum_type(google_protobuf_
1010
1048
  }
1011
1049
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto* msg, size_t* size) {
1012
1050
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1051
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1013
1052
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1014
1053
  if (arr) {
1015
1054
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1021,6 +1060,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_Des
1021
1060
  }
1022
1061
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1023
1062
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1063
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1024
1064
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1025
1065
  if (size) {
1026
1066
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1029,6 +1069,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_enum_type_upb_array
1029
1069
  }
1030
1070
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_enum_type_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1031
1071
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1072
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1032
1073
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1033
1074
  &field, arena);
1034
1075
  if (size) {
@@ -1042,6 +1083,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension_range(google_pro
1042
1083
  }
1043
1084
  UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1044
1085
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1086
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1045
1087
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1046
1088
  if (arr) {
1047
1089
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1053,6 +1095,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_p
1053
1095
  }
1054
1096
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1055
1097
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1098
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1056
1099
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1057
1100
  if (size) {
1058
1101
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1061,6 +1104,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_range_upb
1061
1104
  }
1062
1105
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1063
1106
  const upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1107
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1064
1108
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1065
1109
  &field, arena);
1066
1110
  if (size) {
@@ -1074,6 +1118,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_extension(google_protobuf_
1074
1118
  }
1075
1119
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto* msg, size_t* size) {
1076
1120
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1121
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1077
1122
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1078
1123
  if (arr) {
1079
1124
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1085,6 +1130,7 @@ UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_De
1085
1130
  }
1086
1131
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1087
1132
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1133
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1088
1134
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1089
1135
  if (size) {
1090
1136
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1093,6 +1139,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_extension_upb_array
1093
1139
  }
1094
1140
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_extension_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1095
1141
  const upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1142
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1096
1143
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1097
1144
  &field, arena);
1098
1145
  if (size) {
@@ -1108,6 +1155,7 @@ UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto
1108
1155
  const google_protobuf_MessageOptions* default_val = NULL;
1109
1156
  const google_protobuf_MessageOptions* ret;
1110
1157
  const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1158
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
1111
1159
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1112
1160
  &default_val, &ret);
1113
1161
  return ret;
@@ -1122,6 +1170,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_oneof_decl(google_protobuf
1122
1170
  }
1123
1171
  UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto* msg, size_t* size) {
1124
1172
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1173
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1125
1174
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1126
1175
  if (arr) {
1127
1176
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1133,6 +1182,7 @@ UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_De
1133
1182
  }
1134
1183
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1135
1184
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1185
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1136
1186
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1137
1187
  if (size) {
1138
1188
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1141,6 +1191,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_oneof_decl_upb_arra
1141
1191
  }
1142
1192
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_oneof_decl_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1143
1193
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1194
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1144
1195
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1145
1196
  &field, arena);
1146
1197
  if (size) {
@@ -1154,6 +1205,7 @@ UPB_INLINE void google_protobuf_DescriptorProto_clear_reserved_range(google_prot
1154
1205
  }
1155
1206
  UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto* msg, size_t* size) {
1156
1207
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1208
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1157
1209
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1158
1210
  if (arr) {
1159
1211
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1165,6 +1217,7 @@ UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_pr
1165
1217
  }
1166
1218
  UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_array(const google_protobuf_DescriptorProto* msg, size_t* size) {
1167
1219
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1220
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1168
1221
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1169
1222
  if (size) {
1170
1223
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1173,6 +1226,7 @@ UPB_INLINE const upb_Array* _google_protobuf_DescriptorProto_reserved_range_upb_
1173
1226
  }
1174
1227
  UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_range_mutable_upb_array(google_protobuf_DescriptorProto* msg, size_t* size, upb_Arena* arena) {
1175
1228
  const upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1229
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1176
1230
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1177
1231
  &field, arena);
1178
1232
  if (size) {
@@ -1215,10 +1269,11 @@ UPB_INLINE upb_Array* _google_protobuf_DescriptorProto_reserved_name_mutable_upb
1215
1269
 
1216
1270
  UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_StringView value) {
1217
1271
  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)};
1218
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1272
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1219
1273
  }
1220
1274
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto* msg, size_t* size) {
1221
1275
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1276
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1222
1277
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1223
1278
  if (arr) {
1224
1279
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1235,6 +1290,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1235
1290
  }
1236
1291
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1237
1292
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1293
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1238
1294
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1239
1295
  UPB_UPCAST(msg), &field, arena);
1240
1296
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1249,6 +1305,7 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1249
1305
  }
1250
1306
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1251
1307
  upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1308
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1252
1309
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1253
1310
  if (arr) {
1254
1311
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1265,6 +1322,7 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_res
1265
1322
  }
1266
1323
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1267
1324
  upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1325
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto_msg_init);
1268
1326
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1269
1327
  UPB_UPCAST(msg), &field, arena);
1270
1328
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1279,6 +1337,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorPro
1279
1337
  }
1280
1338
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto* msg, size_t* size) {
1281
1339
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1340
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1282
1341
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1283
1342
  if (arr) {
1284
1343
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1295,6 +1354,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto
1295
1354
  }
1296
1355
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1297
1356
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1357
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto_msg_init);
1298
1358
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1299
1359
  UPB_UPCAST(msg), &field, arena);
1300
1360
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1309,6 +1369,7 @@ UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_Descripto
1309
1369
  }
1310
1370
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1311
1371
  upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1372
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1312
1373
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1313
1374
  if (arr) {
1314
1375
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1325,6 +1386,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_Desc
1325
1386
  }
1326
1387
  UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1327
1388
  upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 3, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1389
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ExtensionRange_msg_init);
1328
1390
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1329
1391
  UPB_UPCAST(msg), &field, arena);
1330
1392
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1339,6 +1401,7 @@ UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobu
1339
1401
  }
1340
1402
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto* msg, size_t* size) {
1341
1403
  upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1404
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1342
1405
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1343
1406
  if (arr) {
1344
1407
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1355,6 +1418,7 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
1355
1418
  }
1356
1419
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1357
1420
  upb_MiniTableField field = {6, UPB_SIZE(28, 64), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1421
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldDescriptorProto_msg_init);
1358
1422
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1359
1423
  UPB_UPCAST(msg), &field, arena);
1360
1424
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1369,7 +1433,8 @@ UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_Descript
1369
1433
  }
1370
1434
  UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
1371
1435
  const upb_MiniTableField field = {7, UPB_SIZE(32, 72), 65, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1372
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1436
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MessageOptions_msg_init);
1437
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1373
1438
  }
1374
1439
  UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1375
1440
  struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg);
@@ -1381,6 +1446,7 @@ UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProt
1381
1446
  }
1382
1447
  UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto* msg, size_t* size) {
1383
1448
  upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1449
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1384
1450
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1385
1451
  if (arr) {
1386
1452
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1397,6 +1463,7 @@ UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProt
1397
1463
  }
1398
1464
  UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1399
1465
  upb_MiniTableField field = {8, UPB_SIZE(36, 80), 0, 6, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1466
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofDescriptorProto_msg_init);
1400
1467
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1401
1468
  UPB_UPCAST(msg), &field, arena);
1402
1469
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1411,6 +1478,7 @@ UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_Descript
1411
1478
  }
1412
1479
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto* msg, size_t* size) {
1413
1480
  upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1481
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1414
1482
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1415
1483
  if (arr) {
1416
1484
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1427,6 +1495,7 @@ UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_Descr
1427
1495
  }
1428
1496
  UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto* msg, upb_Arena* arena) {
1429
1497
  upb_MiniTableField field = {9, UPB_SIZE(40, 88), 0, 7, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1498
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__DescriptorProto__ReservedRange_msg_init);
1430
1499
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1431
1500
  UPB_UPCAST(msg), &field, arena);
1432
1501
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1544,6 +1613,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_Descript
1544
1613
  const google_protobuf_ExtensionRangeOptions* default_val = NULL;
1545
1614
  const google_protobuf_ExtensionRangeOptions* ret;
1546
1615
  const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1616
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
1547
1617
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1548
1618
  &default_val, &ret);
1549
1619
  return ret;
@@ -1555,15 +1625,16 @@ UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const
1555
1625
 
1556
1626
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
1557
1627
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1558
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1628
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1559
1629
  }
1560
1630
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
1561
1631
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1562
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1632
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1563
1633
  }
1564
1634
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
1565
1635
  const upb_MiniTableField field = {3, UPB_SIZE(20, 24), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1636
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions_msg_init);
1637
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1567
1638
  }
1568
1639
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange* msg, upb_Arena* arena) {
1569
1640
  struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg);
@@ -1645,11 +1716,11 @@ UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const goog
1645
1716
 
1646
1717
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
1647
1718
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1648
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1719
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1649
1720
  }
1650
1721
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
1651
1722
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1652
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1723
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1653
1724
  }
1654
1725
 
1655
1726
  /* google.protobuf.ExtensionRangeOptions */
@@ -1694,6 +1765,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_declaration(google_p
1694
1765
  }
1695
1766
  UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* google_protobuf_ExtensionRangeOptions_declaration(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1696
1767
  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)};
1768
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1697
1769
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1698
1770
  if (arr) {
1699
1771
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1705,6 +1777,7 @@ UPB_INLINE const google_protobuf_ExtensionRangeOptions_Declaration* const* googl
1705
1777
  }
1706
1778
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1707
1779
  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)};
1780
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1708
1781
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1709
1782
  if (size) {
1710
1783
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1713,6 +1786,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_u
1713
1786
  }
1714
1787
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_declaration_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1715
1788
  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)};
1789
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1716
1790
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1717
1791
  &field, arena);
1718
1792
  if (size) {
@@ -1744,6 +1818,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptio
1744
1818
  const google_protobuf_FeatureSet* default_val = NULL;
1745
1819
  const google_protobuf_FeatureSet* ret;
1746
1820
  const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1821
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
1747
1822
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1748
1823
  &default_val, &ret);
1749
1824
  return ret;
@@ -1758,6 +1833,7 @@ UPB_INLINE void google_protobuf_ExtensionRangeOptions_clear_uninterpreted_option
1758
1833
  }
1759
1834
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1760
1835
  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)};
1836
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1761
1837
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1762
1838
  if (arr) {
1763
1839
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1769,6 +1845,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ext
1769
1845
  }
1770
1846
  UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_upb_array(const google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1771
1847
  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)};
1848
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1772
1849
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1773
1850
  if (size) {
1774
1851
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -1777,6 +1854,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted
1777
1854
  }
1778
1855
  UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ExtensionRangeOptions* msg, size_t* size, upb_Arena* arena) {
1779
1856
  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)};
1857
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1780
1858
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1781
1859
  &field, arena);
1782
1860
  if (size) {
@@ -1787,6 +1865,7 @@ UPB_INLINE upb_Array* _google_protobuf_ExtensionRangeOptions_uninterpreted_optio
1787
1865
 
1788
1866
  UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_ExtensionRangeOptions_mutable_declaration(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1789
1867
  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)};
1868
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1790
1869
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1791
1870
  if (arr) {
1792
1871
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1803,6 +1882,7 @@ UPB_INLINE google_protobuf_ExtensionRangeOptions_Declaration** google_protobuf_E
1803
1882
  }
1804
1883
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_protobuf_ExtensionRangeOptions_add_declaration(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1805
1884
  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)};
1885
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ExtensionRangeOptions__Declaration_msg_init);
1806
1886
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1807
1887
  UPB_UPCAST(msg), &field, arena);
1808
1888
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1817,11 +1897,12 @@ UPB_INLINE struct google_protobuf_ExtensionRangeOptions_Declaration* google_prot
1817
1897
  }
1818
1898
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_verification(google_protobuf_ExtensionRangeOptions *msg, int32_t value) {
1819
1899
  const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1820
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1900
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1821
1901
  }
1822
1902
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_set_features(google_protobuf_ExtensionRangeOptions *msg, google_protobuf_FeatureSet* value) {
1823
1903
  const upb_MiniTableField field = {50, UPB_SIZE(20, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1824
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1904
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
1905
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1825
1906
  }
1826
1907
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOptions_mutable_features(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1827
1908
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ExtensionRangeOptions_features(msg);
@@ -1833,6 +1914,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ExtensionRangeOpti
1833
1914
  }
1834
1915
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, size_t* size) {
1835
1916
  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)};
1917
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1836
1918
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1837
1919
  if (arr) {
1838
1920
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -1849,6 +1931,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeO
1849
1931
  }
1850
1932
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions* msg, upb_Arena* arena) {
1851
1933
  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)};
1934
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
1852
1935
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1853
1936
  UPB_UPCAST(msg), &field, arena);
1854
1937
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -1981,23 +2064,23 @@ UPB_INLINE bool google_protobuf_ExtensionRangeOptions_Declaration_has_repeated(c
1981
2064
 
1982
2065
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_number(google_protobuf_ExtensionRangeOptions_Declaration *msg, int32_t value) {
1983
2066
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1984
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2067
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1985
2068
  }
1986
2069
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_full_name(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
1987
2070
  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)};
1988
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2071
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1989
2072
  }
1990
2073
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_type(google_protobuf_ExtensionRangeOptions_Declaration *msg, upb_StringView value) {
1991
2074
  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)};
1992
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2075
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1993
2076
  }
1994
2077
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_reserved(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
1995
2078
  const upb_MiniTableField field = {5, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1996
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2079
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1997
2080
  }
1998
2081
  UPB_INLINE void google_protobuf_ExtensionRangeOptions_Declaration_set_repeated(google_protobuf_ExtensionRangeOptions_Declaration *msg, bool value) {
1999
2082
  const upb_MiniTableField field = {6, 17, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2000
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2083
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2001
2084
  }
2002
2085
 
2003
2086
  /* google.protobuf.FieldDescriptorProto */
@@ -2156,6 +2239,7 @@ UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorPr
2156
2239
  const google_protobuf_FieldOptions* default_val = NULL;
2157
2240
  const google_protobuf_FieldOptions* ret;
2158
2241
  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)};
2242
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2159
2243
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2160
2244
  &default_val, &ret);
2161
2245
  return ret;
@@ -2215,35 +2299,36 @@ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const g
2215
2299
 
2216
2300
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2217
2301
  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)};
2218
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2302
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2219
2303
  }
2220
2304
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2221
2305
  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)};
2222
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2306
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2223
2307
  }
2224
2308
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2225
2309
  const upb_MiniTableField field = {3, 12, 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2226
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2310
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2227
2311
  }
2228
2312
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2229
2313
  const upb_MiniTableField field = {4, 16, 67, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2230
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2314
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2231
2315
  }
2232
2316
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2233
2317
  const upb_MiniTableField field = {5, 20, 68, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2234
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2318
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2235
2319
  }
2236
2320
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2237
2321
  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)};
2238
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2322
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2239
2323
  }
2240
2324
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2241
2325
  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)};
2242
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2326
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2243
2327
  }
2244
2328
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
2245
2329
  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)};
2246
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2330
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions_msg_init);
2331
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2247
2332
  }
2248
2333
  UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto* msg, upb_Arena* arena) {
2249
2334
  struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg);
@@ -2255,15 +2340,15 @@ UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorP
2255
2340
  }
2256
2341
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
2257
2342
  const upb_MiniTableField field = {9, UPB_SIZE(28, 24), 72, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2258
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2343
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2259
2344
  }
2260
2345
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_StringView value) {
2261
2346
  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)};
2262
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2347
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2263
2348
  }
2264
2349
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) {
2265
2350
  const upb_MiniTableField field = {17, UPB_SIZE(32, 28), 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2266
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2351
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2267
2352
  }
2268
2353
 
2269
2354
  /* google.protobuf.OneofDescriptorProto */
@@ -2326,6 +2411,7 @@ UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorPr
2326
2411
  const google_protobuf_OneofOptions* default_val = NULL;
2327
2412
  const google_protobuf_OneofOptions* ret;
2328
2413
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2414
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
2329
2415
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2330
2416
  &default_val, &ret);
2331
2417
  return ret;
@@ -2337,11 +2423,12 @@ UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_pr
2337
2423
 
2338
2424
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_StringView value) {
2339
2425
  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)};
2340
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2426
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2341
2427
  }
2342
2428
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
2343
2429
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2344
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2430
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__OneofOptions_msg_init);
2431
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2345
2432
  }
2346
2433
  UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto* msg, upb_Arena* arena) {
2347
2434
  struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg);
@@ -2410,6 +2497,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_value(google_protobuf_
2410
2497
  }
2411
2498
  UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2412
2499
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2500
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2413
2501
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2414
2502
  if (arr) {
2415
2503
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2421,6 +2509,7 @@ UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobu
2421
2509
  }
2422
2510
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2423
2511
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2512
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2424
2513
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2425
2514
  if (size) {
2426
2515
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2429,6 +2518,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_value_upb_array
2429
2518
  }
2430
2519
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_value_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2431
2520
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2521
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2432
2522
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2433
2523
  &field, arena);
2434
2524
  if (size) {
@@ -2444,6 +2534,7 @@ UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProt
2444
2534
  const google_protobuf_EnumOptions* default_val = NULL;
2445
2535
  const google_protobuf_EnumOptions* ret;
2446
2536
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2537
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
2447
2538
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2448
2539
  &default_val, &ret);
2449
2540
  return ret;
@@ -2458,6 +2549,7 @@ UPB_INLINE void google_protobuf_EnumDescriptorProto_clear_reserved_range(google_
2458
2549
  }
2459
2550
  UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2460
2551
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2552
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2461
2553
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2462
2554
  if (arr) {
2463
2555
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2469,6 +2561,7 @@ UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* g
2469
2561
  }
2470
2562
  UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_upb_array(const google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2471
2563
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2564
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2472
2565
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2473
2566
  if (size) {
2474
2567
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2477,6 +2570,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_
2477
2570
  }
2478
2571
  UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_range_mutable_upb_array(google_protobuf_EnumDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2479
2572
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2573
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2480
2574
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2481
2575
  &field, arena);
2482
2576
  if (size) {
@@ -2519,10 +2613,11 @@ UPB_INLINE upb_Array* _google_protobuf_EnumDescriptorProto_reserved_name_mutable
2519
2613
 
2520
2614
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_StringView value) {
2521
2615
  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)};
2522
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2616
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2523
2617
  }
2524
2618
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2525
2619
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2620
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2526
2621
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2527
2622
  if (arr) {
2528
2623
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2539,6 +2634,7 @@ UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescri
2539
2634
  }
2540
2635
  UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2541
2636
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2637
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueDescriptorProto_msg_init);
2542
2638
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2543
2639
  UPB_UPCAST(msg), &field, arena);
2544
2640
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2553,7 +2649,8 @@ UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_Enum
2553
2649
  }
2554
2650
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
2555
2651
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2556
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2652
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumOptions_msg_init);
2653
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2557
2654
  }
2558
2655
  UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2559
2656
  struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg);
@@ -2565,6 +2662,7 @@ UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorPro
2565
2662
  }
2566
2663
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto* msg, size_t* size) {
2567
2664
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2665
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2568
2666
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2569
2667
  if (arr) {
2570
2668
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2581,6 +2679,7 @@ UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protob
2581
2679
  }
2582
2680
  UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto* msg, upb_Arena* arena) {
2583
2681
  upb_MiniTableField field = {4, UPB_SIZE(20, 48), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2682
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumDescriptorProto__EnumReservedRange_msg_init);
2584
2683
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2585
2684
  UPB_UPCAST(msg), &field, arena);
2586
2685
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2693,11 +2792,11 @@ UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(co
2693
2792
 
2694
2793
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
2695
2794
  const upb_MiniTableField field = {1, 12, 64, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2696
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2795
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2697
2796
  }
2698
2797
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
2699
2798
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2700
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2799
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2701
2800
  }
2702
2801
 
2703
2802
  /* google.protobuf.EnumValueDescriptorProto */
@@ -2776,6 +2875,7 @@ UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDesc
2776
2875
  const google_protobuf_EnumValueOptions* default_val = NULL;
2777
2876
  const google_protobuf_EnumValueOptions* ret;
2778
2877
  const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2878
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
2779
2879
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2780
2880
  &default_val, &ret);
2781
2881
  return ret;
@@ -2787,15 +2887,16 @@ UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const googl
2787
2887
 
2788
2888
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_StringView value) {
2789
2889
  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)};
2790
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2890
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2791
2891
  }
2792
2892
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) {
2793
2893
  const upb_MiniTableField field = {2, 12, 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
2794
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2894
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2795
2895
  }
2796
2896
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
2797
2897
  const upb_MiniTableField field = {3, UPB_SIZE(16, 32), 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2798
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2898
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__EnumValueOptions_msg_init);
2899
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2799
2900
  }
2800
2901
  UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto* msg, upb_Arena* arena) {
2801
2902
  struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg);
@@ -2864,6 +2965,7 @@ UPB_INLINE void google_protobuf_ServiceDescriptorProto_clear_method(google_proto
2864
2965
  }
2865
2966
  UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2866
2967
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2968
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2867
2969
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2868
2970
  if (arr) {
2869
2971
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2875,6 +2977,7 @@ UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_S
2875
2977
  }
2876
2978
  UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_array(const google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2877
2979
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2980
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2878
2981
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
2879
2982
  if (size) {
2880
2983
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -2883,6 +2986,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceDescriptorProto_method_upb_a
2883
2986
  }
2884
2987
  UPB_INLINE upb_Array* _google_protobuf_ServiceDescriptorProto_method_mutable_upb_array(google_protobuf_ServiceDescriptorProto* msg, size_t* size, upb_Arena* arena) {
2885
2988
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2989
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2886
2990
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
2887
2991
  &field, arena);
2888
2992
  if (size) {
@@ -2898,6 +3002,7 @@ UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescript
2898
3002
  const google_protobuf_ServiceOptions* default_val = NULL;
2899
3003
  const google_protobuf_ServiceOptions* ret;
2900
3004
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3005
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
2901
3006
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2902
3007
  &default_val, &ret);
2903
3008
  return ret;
@@ -2909,10 +3014,11 @@ UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_
2909
3014
 
2910
3015
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_StringView value) {
2911
3016
  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)};
2912
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3017
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2913
3018
  }
2914
3019
  UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto* msg, size_t* size) {
2915
3020
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3021
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2916
3022
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2917
3023
  if (arr) {
2918
3024
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -2929,6 +3035,7 @@ UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescri
2929
3035
  }
2930
3036
  UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
2931
3037
  upb_MiniTableField field = {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3038
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodDescriptorProto_msg_init);
2932
3039
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2933
3040
  UPB_UPCAST(msg), &field, arena);
2934
3041
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -2943,7 +3050,8 @@ UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_Service
2943
3050
  }
2944
3051
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
2945
3052
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2946
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3053
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__ServiceOptions_msg_init);
3054
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2947
3055
  }
2948
3056
  UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto* msg, upb_Arena* arena) {
2949
3057
  struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg);
@@ -3046,6 +3154,7 @@ UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptor
3046
3154
  const google_protobuf_MethodOptions* default_val = NULL;
3047
3155
  const google_protobuf_MethodOptions* ret;
3048
3156
  const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3157
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
3049
3158
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3050
3159
  &default_val, &ret);
3051
3160
  return ret;
@@ -3089,19 +3198,20 @@ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const
3089
3198
 
3090
3199
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3091
3200
  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)};
3092
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3201
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3093
3202
  }
3094
3203
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3095
3204
  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)};
3096
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3205
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3097
3206
  }
3098
3207
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_StringView value) {
3099
3208
  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)};
3100
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3209
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3101
3210
  }
3102
3211
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
3103
3212
  const upb_MiniTableField field = {4, UPB_SIZE(12, 64), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3104
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3213
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__MethodOptions_msg_init);
3214
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3105
3215
  }
3106
3216
  UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto* msg, upb_Arena* arena) {
3107
3217
  struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg);
@@ -3113,11 +3223,11 @@ UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescripto
3113
3223
  }
3114
3224
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3115
3225
  const upb_MiniTableField field = {5, UPB_SIZE(16, 9), 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3116
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3226
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3117
3227
  }
3118
3228
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
3119
3229
  const upb_MiniTableField field = {6, UPB_SIZE(17, 10), 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3120
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3230
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3121
3231
  }
3122
3232
 
3123
3233
  /* google.protobuf.FileOptions */
@@ -3468,6 +3578,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FileOptions_feature
3468
3578
  const google_protobuf_FeatureSet* default_val = NULL;
3469
3579
  const google_protobuf_FeatureSet* ret;
3470
3580
  const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3581
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3471
3582
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3472
3583
  &default_val, &ret);
3473
3584
  return ret;
@@ -3482,6 +3593,7 @@ UPB_INLINE void google_protobuf_FileOptions_clear_uninterpreted_option(google_pr
3482
3593
  }
3483
3594
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions* msg, size_t* size) {
3484
3595
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3596
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3485
3597
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3486
3598
  if (arr) {
3487
3599
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3493,6 +3605,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fil
3493
3605
  }
3494
3606
  UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_upb_array(const google_protobuf_FileOptions* msg, size_t* size) {
3495
3607
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3608
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3496
3609
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3497
3610
  if (size) {
3498
3611
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3501,6 +3614,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FileOptions_uninterpreted_option_up
3501
3614
  }
3502
3615
  UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FileOptions* msg, size_t* size, upb_Arena* arena) {
3503
3616
  const upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3617
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3504
3618
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3505
3619
  &field, arena);
3506
3620
  if (size) {
@@ -3511,83 +3625,84 @@ UPB_INLINE upb_Array* _google_protobuf_FileOptions_uninterpreted_option_mutable_
3511
3625
 
3512
3626
  UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3513
3627
  const upb_MiniTableField field = {1, UPB_SIZE(32, 24), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3514
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3628
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3515
3629
  }
3516
3630
  UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_StringView value) {
3517
3631
  const upb_MiniTableField field = {8, 40, 65, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3518
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3632
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3519
3633
  }
3520
3634
  UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) {
3521
3635
  const upb_MiniTableField field = {9, 12, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3522
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3636
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3523
3637
  }
3524
3638
  UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
3525
3639
  const upb_MiniTableField field = {10, 16, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3526
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3640
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3527
3641
  }
3528
3642
  UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3529
3643
  const upb_MiniTableField field = {11, UPB_SIZE(48, 56), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3530
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3644
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3531
3645
  }
3532
3646
  UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
3533
3647
  const upb_MiniTableField field = {16, 17, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3534
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3648
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3535
3649
  }
3536
3650
  UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
3537
3651
  const upb_MiniTableField field = {17, 18, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3538
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3652
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3539
3653
  }
3540
3654
  UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
3541
3655
  const upb_MiniTableField field = {18, 19, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3542
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3656
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3543
3657
  }
3544
3658
  UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
3545
3659
  const upb_MiniTableField field = {20, 20, 72, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3546
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3660
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3547
3661
  }
3548
3662
  UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
3549
3663
  const upb_MiniTableField field = {23, 21, 73, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3550
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3664
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3551
3665
  }
3552
3666
  UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
3553
3667
  const upb_MiniTableField field = {27, 22, 74, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3554
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3668
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3555
3669
  }
3556
3670
  UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
3557
3671
  const upb_MiniTableField field = {31, 23, 75, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3558
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3672
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3559
3673
  }
3560
3674
  UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3561
3675
  const upb_MiniTableField field = {36, UPB_SIZE(56, 72), 76, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3562
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3676
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3563
3677
  }
3564
3678
  UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3565
3679
  const upb_MiniTableField field = {37, UPB_SIZE(64, 88), 77, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3680
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3567
3681
  }
3568
3682
  UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3569
3683
  const upb_MiniTableField field = {39, UPB_SIZE(72, 104), 78, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3570
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3684
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3571
3685
  }
3572
3686
  UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_StringView value) {
3573
3687
  const upb_MiniTableField field = {40, UPB_SIZE(80, 120), 79, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3574
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3688
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3575
3689
  }
3576
3690
  UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3577
3691
  const upb_MiniTableField field = {41, UPB_SIZE(88, 136), 80, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3578
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3692
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3579
3693
  }
3580
3694
  UPB_INLINE void google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_StringView value) {
3581
3695
  const upb_MiniTableField field = {44, UPB_SIZE(96, 152), 81, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3582
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3696
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3583
3697
  }
3584
3698
  UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_StringView value) {
3585
3699
  const upb_MiniTableField field = {45, UPB_SIZE(104, 168), 82, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3586
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3700
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3587
3701
  }
3588
3702
  UPB_INLINE void google_protobuf_FileOptions_set_features(google_protobuf_FileOptions *msg, google_protobuf_FeatureSet* value) {
3589
3703
  const upb_MiniTableField field = {50, UPB_SIZE(24, 184), 83, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3590
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3704
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3705
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3591
3706
  }
3592
3707
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutable_features(google_protobuf_FileOptions* msg, upb_Arena* arena) {
3593
3708
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FileOptions_features(msg);
@@ -3599,6 +3714,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FileOptions_mutabl
3599
3714
  }
3600
3715
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions* msg, size_t* size) {
3601
3716
  upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3717
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3602
3718
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3603
3719
  if (arr) {
3604
3720
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3615,6 +3731,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_res
3615
3731
  }
3616
3732
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions* msg, upb_Arena* arena) {
3617
3733
  upb_MiniTableField field = {999, UPB_SIZE(28, 192), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3734
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3618
3735
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3619
3736
  UPB_UPCAST(msg), &field, arena);
3620
3737
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -3752,6 +3869,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MessageOptions_feat
3752
3869
  const google_protobuf_FeatureSet* default_val = NULL;
3753
3870
  const google_protobuf_FeatureSet* ret;
3754
3871
  const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3872
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3755
3873
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3756
3874
  &default_val, &ret);
3757
3875
  return ret;
@@ -3766,6 +3884,7 @@ UPB_INLINE void google_protobuf_MessageOptions_clear_uninterpreted_option(google
3766
3884
  }
3767
3885
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions* msg, size_t* size) {
3768
3886
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3887
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3769
3888
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3770
3889
  if (arr) {
3771
3890
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3777,6 +3896,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Mes
3777
3896
  }
3778
3897
  UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_upb_array(const google_protobuf_MessageOptions* msg, size_t* size) {
3779
3898
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3899
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3780
3900
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
3781
3901
  if (size) {
3782
3902
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -3785,6 +3905,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MessageOptions_uninterpreted_option
3785
3905
  }
3786
3906
  UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MessageOptions* msg, size_t* size, upb_Arena* arena) {
3787
3907
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3908
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3788
3909
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
3789
3910
  &field, arena);
3790
3911
  if (size) {
@@ -3795,27 +3916,28 @@ UPB_INLINE upb_Array* _google_protobuf_MessageOptions_uninterpreted_option_mutab
3795
3916
 
3796
3917
  UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
3797
3918
  const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3798
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3919
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3799
3920
  }
3800
3921
  UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) {
3801
3922
  const upb_MiniTableField field = {2, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3802
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3923
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3803
3924
  }
3804
3925
  UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) {
3805
3926
  const upb_MiniTableField field = {3, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3806
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3927
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3807
3928
  }
3808
3929
  UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) {
3809
3930
  const upb_MiniTableField field = {7, 12, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3810
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3931
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3811
3932
  }
3812
3933
  UPB_INLINE void google_protobuf_MessageOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_MessageOptions *msg, bool value) {
3813
3934
  const upb_MiniTableField field = {11, 13, 68, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
3814
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3935
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3815
3936
  }
3816
3937
  UPB_INLINE void google_protobuf_MessageOptions_set_features(google_protobuf_MessageOptions *msg, google_protobuf_FeatureSet* value) {
3817
3938
  const upb_MiniTableField field = {12, 16, 69, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3818
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3939
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
3940
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3819
3941
  }
3820
3942
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mutable_features(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
3821
3943
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MessageOptions_features(msg);
@@ -3827,6 +3949,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MessageOptions_mut
3827
3949
  }
3828
3950
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions* msg, size_t* size) {
3829
3951
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3952
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3830
3953
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
3831
3954
  if (arr) {
3832
3955
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -3843,6 +3966,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_
3843
3966
  }
3844
3967
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions* msg, upb_Arena* arena) {
3845
3968
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3969
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
3846
3970
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
3847
3971
  UPB_UPCAST(msg), &field, arena);
3848
3972
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -3893,19 +4017,19 @@ UPB_INLINE char* google_protobuf_FieldOptions_serialize_ex(const google_protobuf
3893
4017
  return ptr;
3894
4018
  }
3895
4019
  UPB_INLINE void google_protobuf_FieldOptions_clear_ctype(google_protobuf_FieldOptions* msg) {
3896
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4020
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3897
4021
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3898
4022
  }
3899
4023
  UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions* msg) {
3900
4024
  int32_t default_val = 0;
3901
4025
  int32_t ret;
3902
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4026
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3903
4027
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3904
4028
  &default_val, &ret);
3905
4029
  return ret;
3906
4030
  }
3907
4031
  UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions* msg) {
3908
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4032
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3909
4033
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3910
4034
  }
3911
4035
  UPB_INLINE void google_protobuf_FieldOptions_clear_packed(google_protobuf_FieldOptions* msg) {
@@ -3957,19 +4081,19 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_Fiel
3957
4081
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3958
4082
  }
3959
4083
  UPB_INLINE void google_protobuf_FieldOptions_clear_jstype(google_protobuf_FieldOptions* msg) {
3960
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4084
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3961
4085
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3962
4086
  }
3963
4087
  UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions* msg) {
3964
4088
  int32_t default_val = 0;
3965
4089
  int32_t ret;
3966
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4090
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3967
4091
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3968
4092
  &default_val, &ret);
3969
4093
  return ret;
3970
4094
  }
3971
4095
  UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions* msg) {
3972
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4096
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3973
4097
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3974
4098
  }
3975
4099
  UPB_INLINE void google_protobuf_FieldOptions_clear_weak(google_protobuf_FieldOptions* msg) {
@@ -4021,27 +4145,27 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_debug_redact(const google_proto
4021
4145
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4022
4146
  }
4023
4147
  UPB_INLINE void google_protobuf_FieldOptions_clear_retention(google_protobuf_FieldOptions* msg) {
4024
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4148
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4025
4149
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4026
4150
  }
4027
4151
  UPB_INLINE int32_t google_protobuf_FieldOptions_retention(const google_protobuf_FieldOptions* msg) {
4028
4152
  int32_t default_val = 0;
4029
4153
  int32_t ret;
4030
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4154
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4031
4155
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4032
4156
  &default_val, &ret);
4033
4157
  return ret;
4034
4158
  }
4035
4159
  UPB_INLINE bool google_protobuf_FieldOptions_has_retention(const google_protobuf_FieldOptions* msg) {
4036
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4160
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4037
4161
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4038
4162
  }
4039
4163
  UPB_INLINE void google_protobuf_FieldOptions_clear_targets(google_protobuf_FieldOptions* msg) {
4040
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4164
+ 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)};
4041
4165
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4042
4166
  }
4043
4167
  UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_protobuf_FieldOptions* msg, size_t* size) {
4044
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4168
+ 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)};
4045
4169
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4046
4170
  if (arr) {
4047
4171
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4052,7 +4176,7 @@ UPB_INLINE int32_t const* google_protobuf_FieldOptions_targets(const google_prot
4052
4176
  }
4053
4177
  }
4054
4178
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4055
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4179
+ 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)};
4056
4180
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4057
4181
  if (size) {
4058
4182
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4060,7 +4184,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_targets_upb_array(cons
4060
4184
  return arr;
4061
4185
  }
4062
4186
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_targets_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4063
- const upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4187
+ 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)};
4064
4188
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4065
4189
  &field, arena);
4066
4190
  if (size) {
@@ -4074,6 +4198,7 @@ UPB_INLINE void google_protobuf_FieldOptions_clear_edition_defaults(google_proto
4074
4198
  }
4075
4199
  UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_protobuf_FieldOptions_edition_defaults(const google_protobuf_FieldOptions* msg, size_t* size) {
4076
4200
  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)};
4201
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4077
4202
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4078
4203
  if (arr) {
4079
4204
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4085,6 +4210,7 @@ UPB_INLINE const google_protobuf_FieldOptions_EditionDefault* const* google_prot
4085
4210
  }
4086
4211
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4087
4212
  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)};
4213
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4088
4214
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4089
4215
  if (size) {
4090
4216
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4093,6 +4219,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_edition_defaults_upb_a
4093
4219
  }
4094
4220
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_edition_defaults_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4095
4221
  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)};
4222
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4096
4223
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4097
4224
  &field, arena);
4098
4225
  if (size) {
@@ -4108,6 +4235,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FieldOptions_featur
4108
4235
  const google_protobuf_FeatureSet* default_val = NULL;
4109
4236
  const google_protobuf_FeatureSet* ret;
4110
4237
  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)};
4238
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4111
4239
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4112
4240
  &default_val, &ret);
4113
4241
  return ret;
@@ -4116,12 +4244,30 @@ UPB_INLINE bool google_protobuf_FieldOptions_has_features(const google_protobuf_
4116
4244
  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)};
4117
4245
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4118
4246
  }
4247
+ UPB_INLINE void google_protobuf_FieldOptions_clear_feature_support(google_protobuf_FieldOptions* msg) {
4248
+ 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)};
4249
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4250
+ }
4251
+ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_feature_support(const google_protobuf_FieldOptions* msg) {
4252
+ const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
4253
+ const google_protobuf_FieldOptions_FeatureSupport* ret;
4254
+ 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)};
4255
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4256
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4257
+ &default_val, &ret);
4258
+ return ret;
4259
+ }
4260
+ UPB_INLINE bool google_protobuf_FieldOptions_has_feature_support(const google_protobuf_FieldOptions* msg) {
4261
+ 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)};
4262
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4263
+ }
4119
4264
  UPB_INLINE void google_protobuf_FieldOptions_clear_uninterpreted_option(google_protobuf_FieldOptions* msg) {
4120
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4265
+ 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)};
4121
4266
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4122
4267
  }
4123
4268
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions* msg, size_t* size) {
4124
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4269
+ 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)};
4270
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4125
4271
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4126
4272
  if (arr) {
4127
4273
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4132,7 +4278,8 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Fie
4132
4278
  }
4133
4279
  }
4134
4280
  UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_upb_array(const google_protobuf_FieldOptions* msg, size_t* size) {
4135
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4281
+ 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)};
4282
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4136
4283
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4137
4284
  if (size) {
4138
4285
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4140,7 +4287,8 @@ UPB_INLINE const upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_u
4140
4287
  return arr;
4141
4288
  }
4142
4289
  UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable_upb_array(google_protobuf_FieldOptions* msg, size_t* size, upb_Arena* arena) {
4143
- const upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4290
+ 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)};
4291
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4144
4292
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4145
4293
  &field, arena);
4146
4294
  if (size) {
@@ -4150,43 +4298,43 @@ UPB_INLINE upb_Array* _google_protobuf_FieldOptions_uninterpreted_option_mutable
4150
4298
  }
4151
4299
 
4152
4300
  UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) {
4153
- const upb_MiniTableField field = {1, 12, 64, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4154
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4301
+ const upb_MiniTableField field = {1, 12, 64, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4302
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4155
4303
  }
4156
4304
  UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
4157
4305
  const upb_MiniTableField field = {2, 16, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4158
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4306
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4159
4307
  }
4160
4308
  UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
4161
4309
  const upb_MiniTableField field = {3, 17, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4162
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4310
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4163
4311
  }
4164
4312
  UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
4165
4313
  const upb_MiniTableField field = {5, 18, 67, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4166
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4314
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4167
4315
  }
4168
4316
  UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) {
4169
- const upb_MiniTableField field = {6, 20, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4170
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4317
+ const upb_MiniTableField field = {6, 20, 68, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4318
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4171
4319
  }
4172
4320
  UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
4173
4321
  const upb_MiniTableField field = {10, 24, 69, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4174
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4322
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4175
4323
  }
4176
4324
  UPB_INLINE void google_protobuf_FieldOptions_set_unverified_lazy(google_protobuf_FieldOptions *msg, bool value) {
4177
4325
  const upb_MiniTableField field = {15, 25, 70, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4178
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4326
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4179
4327
  }
4180
4328
  UPB_INLINE void google_protobuf_FieldOptions_set_debug_redact(google_protobuf_FieldOptions *msg, bool value) {
4181
4329
  const upb_MiniTableField field = {16, 26, 71, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4182
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4330
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4183
4331
  }
4184
4332
  UPB_INLINE void google_protobuf_FieldOptions_set_retention(google_protobuf_FieldOptions *msg, int32_t value) {
4185
- const upb_MiniTableField field = {17, 28, 72, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4186
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4333
+ const upb_MiniTableField field = {17, 28, 72, 6, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4334
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4187
4335
  }
4188
4336
  UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf_FieldOptions* msg, size_t* size) {
4189
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4337
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4190
4338
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4191
4339
  if (arr) {
4192
4340
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4197,12 +4345,12 @@ UPB_INLINE int32_t* google_protobuf_FieldOptions_mutable_targets(google_protobuf
4197
4345
  }
4198
4346
  }
4199
4347
  UPB_INLINE int32_t* google_protobuf_FieldOptions_resize_targets(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4200
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4348
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4201
4349
  return (int32_t*)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4202
4350
  &field, size, arena);
4203
4351
  }
4204
4352
  UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOptions* msg, int32_t val, upb_Arena* arena) {
4205
- upb_MiniTableField field = {19, 32, 0, 6, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4353
+ upb_MiniTableField field = {19, 32, 0, 7, 14, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4206
4354
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4207
4355
  UPB_UPCAST(msg), &field, arena);
4208
4356
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4215,6 +4363,7 @@ UPB_INLINE bool google_protobuf_FieldOptions_add_targets(google_protobuf_FieldOp
4215
4363
  }
4216
4364
  UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOptions_mutable_edition_defaults(google_protobuf_FieldOptions* msg, size_t* size) {
4217
4365
  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)};
4366
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4218
4367
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4219
4368
  if (arr) {
4220
4369
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4231,6 +4380,7 @@ UPB_INLINE google_protobuf_FieldOptions_EditionDefault** google_protobuf_FieldOp
4231
4380
  }
4232
4381
  UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_FieldOptions_add_edition_defaults(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4233
4382
  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)};
4383
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__EditionDefault_msg_init);
4234
4384
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4235
4385
  UPB_UPCAST(msg), &field, arena);
4236
4386
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4245,7 +4395,8 @@ UPB_INLINE struct google_protobuf_FieldOptions_EditionDefault* google_protobuf_F
4245
4395
  }
4246
4396
  UPB_INLINE void google_protobuf_FieldOptions_set_features(google_protobuf_FieldOptions *msg, google_protobuf_FeatureSet* value) {
4247
4397
  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)};
4248
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4398
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4399
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4249
4400
  }
4250
4401
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutable_features(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4251
4402
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FieldOptions_features(msg);
@@ -4255,8 +4406,22 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FieldOptions_mutab
4255
4406
  }
4256
4407
  return sub;
4257
4408
  }
4409
+ UPB_INLINE void google_protobuf_FieldOptions_set_feature_support(google_protobuf_FieldOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
4410
+ 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)};
4411
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
4412
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4413
+ }
4414
+ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_mutable_feature_support(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4415
+ struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_FieldOptions_feature_support(msg);
4416
+ if (sub == NULL) {
4417
+ sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
4418
+ if (sub) google_protobuf_FieldOptions_set_feature_support(msg, sub);
4419
+ }
4420
+ return sub;
4421
+ }
4258
4422
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t* size) {
4259
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4423
+ 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)};
4424
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4260
4425
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4261
4426
  if (arr) {
4262
4427
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4267,12 +4432,13 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mu
4267
4432
  }
4268
4433
  }
4269
4434
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions* msg, size_t size, upb_Arena* arena) {
4270
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4435
+ 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)};
4271
4436
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4272
4437
  &field, size, arena);
4273
4438
  }
4274
4439
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions* msg, upb_Arena* arena) {
4275
- upb_MiniTableField field = {999, UPB_SIZE(44, 56), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4440
+ 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)};
4441
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4276
4442
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4277
4443
  UPB_UPCAST(msg), &field, arena);
4278
4444
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4357,11 +4523,129 @@ UPB_INLINE bool google_protobuf_FieldOptions_EditionDefault_has_edition(const go
4357
4523
 
4358
4524
  UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_value(google_protobuf_FieldOptions_EditionDefault *msg, upb_StringView value) {
4359
4525
  const upb_MiniTableField field = {2, 16, 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4360
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4526
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4361
4527
  }
4362
4528
  UPB_INLINE void google_protobuf_FieldOptions_EditionDefault_set_edition(google_protobuf_FieldOptions_EditionDefault *msg, int32_t value) {
4363
4529
  const upb_MiniTableField field = {3, 12, 65, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4364
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4530
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4531
+ }
4532
+
4533
+ /* google.protobuf.FieldOptions.FeatureSupport */
4534
+
4535
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_new(upb_Arena* arena) {
4536
+ return (google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
4537
+ }
4538
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse(const char* buf, size_t size, upb_Arena* arena) {
4539
+ google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
4540
+ if (!ret) return NULL;
4541
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, NULL, 0, arena) !=
4542
+ kUpb_DecodeStatus_Ok) {
4543
+ return NULL;
4544
+ }
4545
+ return ret;
4546
+ }
4547
+ UPB_INLINE google_protobuf_FieldOptions_FeatureSupport* google_protobuf_FieldOptions_FeatureSupport_parse_ex(const char* buf, size_t size,
4548
+ const upb_ExtensionRegistry* extreg,
4549
+ int options, upb_Arena* arena) {
4550
+ google_protobuf_FieldOptions_FeatureSupport* ret = google_protobuf_FieldOptions_FeatureSupport_new(arena);
4551
+ if (!ret) return NULL;
4552
+ if (upb_Decode(buf, size, UPB_UPCAST(ret), &google__protobuf__FieldOptions__FeatureSupport_msg_init, extreg, options,
4553
+ arena) != kUpb_DecodeStatus_Ok) {
4554
+ return NULL;
4555
+ }
4556
+ return ret;
4557
+ }
4558
+ UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize(const google_protobuf_FieldOptions_FeatureSupport* msg, upb_Arena* arena, size_t* len) {
4559
+ char* ptr;
4560
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, 0, arena, &ptr, len);
4561
+ return ptr;
4562
+ }
4563
+ UPB_INLINE char* google_protobuf_FieldOptions_FeatureSupport_serialize_ex(const google_protobuf_FieldOptions_FeatureSupport* msg, int options,
4564
+ upb_Arena* arena, size_t* len) {
4565
+ char* ptr;
4566
+ (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FieldOptions__FeatureSupport_msg_init, options, arena, &ptr, len);
4567
+ return ptr;
4568
+ }
4569
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_introduced(google_protobuf_FieldOptions_FeatureSupport* msg) {
4570
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4571
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4572
+ }
4573
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4574
+ int32_t default_val = 0;
4575
+ int32_t ret;
4576
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4577
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4578
+ &default_val, &ret);
4579
+ return ret;
4580
+ }
4581
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_introduced(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4582
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4583
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4584
+ }
4585
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport* msg) {
4586
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4587
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4588
+ }
4589
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4590
+ int32_t default_val = 0;
4591
+ int32_t ret;
4592
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4593
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4594
+ &default_val, &ret);
4595
+ return ret;
4596
+ }
4597
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_deprecated(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4598
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4599
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4600
+ }
4601
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport* msg) {
4602
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4603
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4604
+ }
4605
+ UPB_INLINE upb_StringView google_protobuf_FieldOptions_FeatureSupport_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4606
+ upb_StringView default_val = upb_StringView_FromString("");
4607
+ upb_StringView ret;
4608
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4609
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4610
+ &default_val, &ret);
4611
+ return ret;
4612
+ }
4613
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_deprecation_warning(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4614
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4615
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4616
+ }
4617
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_clear_edition_removed(google_protobuf_FieldOptions_FeatureSupport* msg) {
4618
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4619
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4620
+ }
4621
+ UPB_INLINE int32_t google_protobuf_FieldOptions_FeatureSupport_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4622
+ int32_t default_val = 0;
4623
+ int32_t ret;
4624
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4625
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4626
+ &default_val, &ret);
4627
+ return ret;
4628
+ }
4629
+ UPB_INLINE bool google_protobuf_FieldOptions_FeatureSupport_has_edition_removed(const google_protobuf_FieldOptions_FeatureSupport* msg) {
4630
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4631
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4632
+ }
4633
+
4634
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_introduced(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4635
+ const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4636
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4637
+ }
4638
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_deprecated(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4639
+ const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4640
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4641
+ }
4642
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_deprecation_warning(google_protobuf_FieldOptions_FeatureSupport *msg, upb_StringView value) {
4643
+ const upb_MiniTableField field = {3, 24, 66, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4644
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4645
+ }
4646
+ UPB_INLINE void google_protobuf_FieldOptions_FeatureSupport_set_edition_removed(google_protobuf_FieldOptions_FeatureSupport *msg, int32_t value) {
4647
+ const upb_MiniTableField field = {4, 20, 67, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4648
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4365
4649
  }
4366
4650
 
4367
4651
  /* google.protobuf.OneofOptions */
@@ -4408,6 +4692,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_OneofOptions_featur
4408
4692
  const google_protobuf_FeatureSet* default_val = NULL;
4409
4693
  const google_protobuf_FeatureSet* ret;
4410
4694
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4695
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4411
4696
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4412
4697
  &default_val, &ret);
4413
4698
  return ret;
@@ -4422,6 +4707,7 @@ UPB_INLINE void google_protobuf_OneofOptions_clear_uninterpreted_option(google_p
4422
4707
  }
4423
4708
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions* msg, size_t* size) {
4424
4709
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4710
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4425
4711
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4426
4712
  if (arr) {
4427
4713
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4433,6 +4719,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_One
4433
4719
  }
4434
4720
  UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_upb_array(const google_protobuf_OneofOptions* msg, size_t* size) {
4435
4721
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4722
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4436
4723
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4437
4724
  if (size) {
4438
4725
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4441,6 +4728,7 @@ UPB_INLINE const upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_u
4441
4728
  }
4442
4729
  UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable_upb_array(google_protobuf_OneofOptions* msg, size_t* size, upb_Arena* arena) {
4443
4730
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4731
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4444
4732
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4445
4733
  &field, arena);
4446
4734
  if (size) {
@@ -4451,7 +4739,8 @@ UPB_INLINE upb_Array* _google_protobuf_OneofOptions_uninterpreted_option_mutable
4451
4739
 
4452
4740
  UPB_INLINE void google_protobuf_OneofOptions_set_features(google_protobuf_OneofOptions *msg, google_protobuf_FeatureSet* value) {
4453
4741
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4454
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4742
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4743
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4455
4744
  }
4456
4745
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutable_features(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
4457
4746
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_OneofOptions_features(msg);
@@ -4463,6 +4752,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_OneofOptions_mutab
4463
4752
  }
4464
4753
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions* msg, size_t* size) {
4465
4754
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4755
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4466
4756
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4467
4757
  if (arr) {
4468
4758
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4479,6 +4769,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_re
4479
4769
  }
4480
4770
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions* msg, upb_Arena* arena) {
4481
4771
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4772
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4482
4773
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4483
4774
  UPB_UPCAST(msg), &field, arena);
4484
4775
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4584,6 +4875,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumOptions_feature
4584
4875
  const google_protobuf_FeatureSet* default_val = NULL;
4585
4876
  const google_protobuf_FeatureSet* ret;
4586
4877
  const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4878
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4587
4879
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4588
4880
  &default_val, &ret);
4589
4881
  return ret;
@@ -4598,6 +4890,7 @@ UPB_INLINE void google_protobuf_EnumOptions_clear_uninterpreted_option(google_pr
4598
4890
  }
4599
4891
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions* msg, size_t* size) {
4600
4892
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4893
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4601
4894
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4602
4895
  if (arr) {
4603
4896
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4609,6 +4902,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4609
4902
  }
4610
4903
  UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_upb_array(const google_protobuf_EnumOptions* msg, size_t* size) {
4611
4904
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4905
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4612
4906
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4613
4907
  if (size) {
4614
4908
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4617,6 +4911,7 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_up
4617
4911
  }
4618
4912
  UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumOptions* msg, size_t* size, upb_Arena* arena) {
4619
4913
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4914
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4620
4915
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4621
4916
  &field, arena);
4622
4917
  if (size) {
@@ -4627,19 +4922,20 @@ UPB_INLINE upb_Array* _google_protobuf_EnumOptions_uninterpreted_option_mutable_
4627
4922
 
4628
4923
  UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
4629
4924
  const upb_MiniTableField field = {2, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4630
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4925
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4631
4926
  }
4632
4927
  UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) {
4633
4928
  const upb_MiniTableField field = {3, 10, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4634
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4929
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4635
4930
  }
4636
4931
  UPB_INLINE void google_protobuf_EnumOptions_set_deprecated_legacy_json_field_conflicts(google_protobuf_EnumOptions *msg, bool value) {
4637
4932
  const upb_MiniTableField field = {6, 11, 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4638
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4933
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4639
4934
  }
4640
4935
  UPB_INLINE void google_protobuf_EnumOptions_set_features(google_protobuf_EnumOptions *msg, google_protobuf_FeatureSet* value) {
4641
4936
  const upb_MiniTableField field = {7, UPB_SIZE(12, 16), 67, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4642
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4937
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4938
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4643
4939
  }
4644
4940
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutable_features(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
4645
4941
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumOptions_features(msg);
@@ -4651,6 +4947,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumOptions_mutabl
4651
4947
  }
4652
4948
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions* msg, size_t* size) {
4653
4949
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4950
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4654
4951
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4655
4952
  if (arr) {
4656
4953
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4667,6 +4964,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_res
4667
4964
  }
4668
4965
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions* msg, upb_Arena* arena) {
4669
4966
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4967
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4670
4968
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4671
4969
  UPB_UPCAST(msg), &field, arena);
4672
4970
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4740,6 +5038,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_fe
4740
5038
  const google_protobuf_FeatureSet* default_val = NULL;
4741
5039
  const google_protobuf_FeatureSet* ret;
4742
5040
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5041
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4743
5042
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4744
5043
  &default_val, &ret);
4745
5044
  return ret;
@@ -4764,12 +5063,30 @@ UPB_INLINE bool google_protobuf_EnumValueOptions_has_debug_redact(const google_p
4764
5063
  const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4765
5064
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4766
5065
  }
5066
+ UPB_INLINE void google_protobuf_EnumValueOptions_clear_feature_support(google_protobuf_EnumValueOptions* msg) {
5067
+ 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)};
5068
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5069
+ }
5070
+ UPB_INLINE const google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_feature_support(const google_protobuf_EnumValueOptions* msg) {
5071
+ const google_protobuf_FieldOptions_FeatureSupport* default_val = NULL;
5072
+ const google_protobuf_FieldOptions_FeatureSupport* ret;
5073
+ 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)};
5074
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5075
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5076
+ &default_val, &ret);
5077
+ return ret;
5078
+ }
5079
+ UPB_INLINE bool google_protobuf_EnumValueOptions_has_feature_support(const google_protobuf_EnumValueOptions* msg) {
5080
+ 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)};
5081
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5082
+ }
4767
5083
  UPB_INLINE void google_protobuf_EnumValueOptions_clear_uninterpreted_option(google_protobuf_EnumValueOptions* msg) {
4768
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5084
+ 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)};
4769
5085
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4770
5086
  }
4771
5087
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4772
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5088
+ 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)};
5089
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4773
5090
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4774
5091
  if (arr) {
4775
5092
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4780,7 +5097,8 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Enu
4780
5097
  }
4781
5098
  }
4782
5099
  UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_upb_array(const google_protobuf_EnumValueOptions* msg, size_t* size) {
4783
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5100
+ 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)};
5101
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4784
5102
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4785
5103
  if (size) {
4786
5104
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4788,7 +5106,8 @@ UPB_INLINE const upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_opti
4788
5106
  return arr;
4789
5107
  }
4790
5108
  UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mutable_upb_array(google_protobuf_EnumValueOptions* msg, size_t* size, upb_Arena* arena) {
4791
- const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5109
+ 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)};
5110
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4792
5111
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4793
5112
  &field, arena);
4794
5113
  if (size) {
@@ -4799,11 +5118,12 @@ UPB_INLINE upb_Array* _google_protobuf_EnumValueOptions_uninterpreted_option_mut
4799
5118
 
4800
5119
  UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
4801
5120
  const upb_MiniTableField field = {1, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4802
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5121
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4803
5122
  }
4804
5123
  UPB_INLINE void google_protobuf_EnumValueOptions_set_features(google_protobuf_EnumValueOptions *msg, google_protobuf_FeatureSet* value) {
4805
5124
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4806
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5125
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5126
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4807
5127
  }
4808
5128
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_mutable_features(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
4809
5129
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_EnumValueOptions_features(msg);
@@ -4815,10 +5135,24 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_EnumValueOptions_m
4815
5135
  }
4816
5136
  UPB_INLINE void google_protobuf_EnumValueOptions_set_debug_redact(google_protobuf_EnumValueOptions *msg, bool value) {
4817
5137
  const upb_MiniTableField field = {3, UPB_SIZE(16, 10), 66, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4818
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5138
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5139
+ }
5140
+ UPB_INLINE void google_protobuf_EnumValueOptions_set_feature_support(google_protobuf_EnumValueOptions *msg, google_protobuf_FieldOptions_FeatureSupport* value) {
5141
+ 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)};
5142
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FieldOptions__FeatureSupport_msg_init);
5143
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5144
+ }
5145
+ UPB_INLINE struct google_protobuf_FieldOptions_FeatureSupport* google_protobuf_EnumValueOptions_mutable_feature_support(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
5146
+ struct google_protobuf_FieldOptions_FeatureSupport* sub = (struct google_protobuf_FieldOptions_FeatureSupport*)google_protobuf_EnumValueOptions_feature_support(msg);
5147
+ if (sub == NULL) {
5148
+ sub = (struct google_protobuf_FieldOptions_FeatureSupport*)_upb_Message_New(&google__protobuf__FieldOptions__FeatureSupport_msg_init, arena);
5149
+ if (sub) google_protobuf_EnumValueOptions_set_feature_support(msg, sub);
5150
+ }
5151
+ return sub;
4819
5152
  }
4820
5153
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t* size) {
4821
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5154
+ 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)};
5155
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4822
5156
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4823
5157
  if (arr) {
4824
5158
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4829,12 +5163,13 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOption
4829
5163
  }
4830
5164
  }
4831
5165
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions* msg, size_t size, upb_Arena* arena) {
4832
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5166
+ 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)};
4833
5167
  return (google_protobuf_UninterpretedOption**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
4834
5168
  &field, size, arena);
4835
5169
  }
4836
5170
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions* msg, upb_Arena* arena) {
4837
- upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5171
+ 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)};
5172
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4838
5173
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4839
5174
  UPB_UPCAST(msg), &field, arena);
4840
5175
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -4908,6 +5243,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_ServiceOptions_feat
4908
5243
  const google_protobuf_FeatureSet* default_val = NULL;
4909
5244
  const google_protobuf_FeatureSet* ret;
4910
5245
  const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5246
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
4911
5247
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4912
5248
  &default_val, &ret);
4913
5249
  return ret;
@@ -4922,6 +5258,7 @@ UPB_INLINE void google_protobuf_ServiceOptions_clear_uninterpreted_option(google
4922
5258
  }
4923
5259
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions* msg, size_t* size) {
4924
5260
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5261
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4925
5262
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4926
5263
  if (arr) {
4927
5264
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4933,6 +5270,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Ser
4933
5270
  }
4934
5271
  UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_upb_array(const google_protobuf_ServiceOptions* msg, size_t* size) {
4935
5272
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5273
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4936
5274
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
4937
5275
  if (size) {
4938
5276
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -4941,6 +5279,7 @@ UPB_INLINE const upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option
4941
5279
  }
4942
5280
  UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutable_upb_array(google_protobuf_ServiceOptions* msg, size_t* size, upb_Arena* arena) {
4943
5281
  const upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5282
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4944
5283
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
4945
5284
  &field, arena);
4946
5285
  if (size) {
@@ -4951,11 +5290,12 @@ UPB_INLINE upb_Array* _google_protobuf_ServiceOptions_uninterpreted_option_mutab
4951
5290
 
4952
5291
  UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
4953
5292
  const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4954
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5293
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4955
5294
  }
4956
5295
  UPB_INLINE void google_protobuf_ServiceOptions_set_features(google_protobuf_ServiceOptions *msg, google_protobuf_FeatureSet* value) {
4957
5296
  const upb_MiniTableField field = {34, UPB_SIZE(12, 16), 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4958
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5297
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5298
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4959
5299
  }
4960
5300
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mutable_features(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
4961
5301
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_ServiceOptions_features(msg);
@@ -4967,6 +5307,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_ServiceOptions_mut
4967
5307
  }
4968
5308
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions* msg, size_t* size) {
4969
5309
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5310
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4970
5311
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
4971
5312
  if (arr) {
4972
5313
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -4983,6 +5324,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_
4983
5324
  }
4984
5325
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions* msg, upb_Arena* arena) {
4985
5326
  upb_MiniTableField field = {999, UPB_SIZE(16, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5327
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
4986
5328
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
4987
5329
  UPB_UPCAST(msg), &field, arena);
4988
5330
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5072,6 +5414,7 @@ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_MethodOptions_featu
5072
5414
  const google_protobuf_FeatureSet* default_val = NULL;
5073
5415
  const google_protobuf_FeatureSet* ret;
5074
5416
  const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5417
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5075
5418
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5076
5419
  &default_val, &ret);
5077
5420
  return ret;
@@ -5086,6 +5429,7 @@ UPB_INLINE void google_protobuf_MethodOptions_clear_uninterpreted_option(google_
5086
5429
  }
5087
5430
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions* msg, size_t* size) {
5088
5431
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5432
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5089
5433
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5090
5434
  if (arr) {
5091
5435
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5097,6 +5441,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_Met
5097
5441
  }
5098
5442
  UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_upb_array(const google_protobuf_MethodOptions* msg, size_t* size) {
5099
5443
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5444
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5100
5445
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5101
5446
  if (size) {
5102
5447
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5105,6 +5450,7 @@ UPB_INLINE const upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_
5105
5450
  }
5106
5451
  UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutable_upb_array(google_protobuf_MethodOptions* msg, size_t* size, upb_Arena* arena) {
5107
5452
  const upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5453
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5108
5454
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5109
5455
  &field, arena);
5110
5456
  if (size) {
@@ -5115,15 +5461,16 @@ UPB_INLINE upb_Array* _google_protobuf_MethodOptions_uninterpreted_option_mutabl
5115
5461
 
5116
5462
  UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
5117
5463
  const upb_MiniTableField field = {33, 9, 64, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5118
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5464
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5119
5465
  }
5120
5466
  UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) {
5121
5467
  const upb_MiniTableField field = {34, 12, 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5122
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5468
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5123
5469
  }
5124
5470
  UPB_INLINE void google_protobuf_MethodOptions_set_features(google_protobuf_MethodOptions *msg, google_protobuf_FeatureSet* value) {
5125
5471
  const upb_MiniTableField field = {35, 16, 66, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5126
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5472
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5473
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5127
5474
  }
5128
5475
  UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_mutable_features(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
5129
5476
  struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_MethodOptions_features(msg);
@@ -5135,6 +5482,7 @@ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_MethodOptions_muta
5135
5482
  }
5136
5483
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions* msg, size_t* size) {
5137
5484
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5485
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5138
5486
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5139
5487
  if (arr) {
5140
5488
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5151,6 +5499,7 @@ UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_r
5151
5499
  }
5152
5500
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions* msg, upb_Arena* arena) {
5153
5501
  upb_MiniTableField field = {999, UPB_SIZE(20, 24), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5502
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption_msg_init);
5154
5503
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5155
5504
  UPB_UPCAST(msg), &field, arena);
5156
5505
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5206,6 +5555,7 @@ UPB_INLINE void google_protobuf_UninterpretedOption_clear_name(google_protobuf_U
5206
5555
  }
5207
5556
  UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5208
5557
  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)};
5558
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5209
5559
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5210
5560
  if (arr) {
5211
5561
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5217,6 +5567,7 @@ UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_pro
5217
5567
  }
5218
5568
  UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(const google_protobuf_UninterpretedOption* msg, size_t* size) {
5219
5569
  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)};
5570
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5220
5571
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5221
5572
  if (size) {
5222
5573
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5225,6 +5576,7 @@ UPB_INLINE const upb_Array* _google_protobuf_UninterpretedOption_name_upb_array(
5225
5576
  }
5226
5577
  UPB_INLINE upb_Array* _google_protobuf_UninterpretedOption_name_mutable_upb_array(google_protobuf_UninterpretedOption* msg, size_t* size, upb_Arena* arena) {
5227
5578
  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)};
5579
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5228
5580
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5229
5581
  &field, arena);
5230
5582
  if (size) {
@@ -5331,6 +5683,7 @@ UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const go
5331
5683
 
5332
5684
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption* msg, size_t* size) {
5333
5685
  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)};
5686
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5334
5687
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5335
5688
  if (arr) {
5336
5689
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5347,6 +5700,7 @@ UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_Uninte
5347
5700
  }
5348
5701
  UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption* msg, upb_Arena* arena) {
5349
5702
  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)};
5703
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UninterpretedOption__NamePart_msg_init);
5350
5704
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5351
5705
  UPB_UPCAST(msg), &field, arena);
5352
5706
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5361,27 +5715,27 @@ UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_
5361
5715
  }
5362
5716
  UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5363
5717
  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)};
5364
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5718
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5365
5719
  }
5366
5720
  UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
5367
5721
  const upb_MiniTableField field = {4, UPB_SIZE(24, 40), 65, kUpb_NoSub, 4, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5368
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5722
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5369
5723
  }
5370
5724
  UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
5371
5725
  const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 66, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5372
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5726
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5373
5727
  }
5374
5728
  UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
5375
5729
  const upb_MiniTableField field = {6, UPB_SIZE(40, 56), 67, kUpb_NoSub, 1, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
5376
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5730
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5377
5731
  }
5378
5732
  UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5379
5733
  const upb_MiniTableField field = {7, UPB_SIZE(48, 64), 68, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5380
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5734
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5381
5735
  }
5382
5736
  UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_StringView value) {
5383
5737
  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)};
5384
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5738
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5385
5739
  }
5386
5740
 
5387
5741
  /* google.protobuf.UninterpretedOption.NamePart */
@@ -5455,11 +5809,11 @@ UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(co
5455
5809
 
5456
5810
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_StringView value) {
5457
5811
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, kUpb_NoSub, 12, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5458
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5812
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5459
5813
  }
5460
5814
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) {
5461
5815
  const upb_MiniTableField field = {2, 9, 65, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5462
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5816
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5463
5817
  }
5464
5818
 
5465
5819
  /* google.protobuf.FeatureSet */
@@ -5597,27 +5951,27 @@ UPB_INLINE bool google_protobuf_FeatureSet_has_json_format(const google_protobuf
5597
5951
 
5598
5952
  UPB_INLINE void google_protobuf_FeatureSet_set_field_presence(google_protobuf_FeatureSet *msg, int32_t value) {
5599
5953
  const upb_MiniTableField field = {1, 12, 64, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5600
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5954
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5601
5955
  }
5602
5956
  UPB_INLINE void google_protobuf_FeatureSet_set_enum_type(google_protobuf_FeatureSet *msg, int32_t value) {
5603
5957
  const upb_MiniTableField field = {2, 16, 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5604
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5958
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5605
5959
  }
5606
5960
  UPB_INLINE void google_protobuf_FeatureSet_set_repeated_field_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
5607
5961
  const upb_MiniTableField field = {3, 20, 66, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5608
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5962
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5609
5963
  }
5610
5964
  UPB_INLINE void google_protobuf_FeatureSet_set_utf8_validation(google_protobuf_FeatureSet *msg, int32_t value) {
5611
5965
  const upb_MiniTableField field = {4, 24, 67, 3, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5612
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5966
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5613
5967
  }
5614
5968
  UPB_INLINE void google_protobuf_FeatureSet_set_message_encoding(google_protobuf_FeatureSet *msg, int32_t value) {
5615
5969
  const upb_MiniTableField field = {5, 28, 68, 4, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5616
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5970
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5617
5971
  }
5618
5972
  UPB_INLINE void google_protobuf_FeatureSet_set_json_format(google_protobuf_FeatureSet *msg, int32_t value) {
5619
5973
  const upb_MiniTableField field = {6, 32, 69, 5, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5620
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5974
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5621
5975
  }
5622
5976
 
5623
5977
  /* google.protobuf.FeatureSetDefaults */
@@ -5662,6 +6016,7 @@ UPB_INLINE void google_protobuf_FeatureSetDefaults_clear_defaults(google_protobu
5662
6016
  }
5663
6017
  UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* const* google_protobuf_FeatureSetDefaults_defaults(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5664
6018
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6019
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5665
6020
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5666
6021
  if (arr) {
5667
6022
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5673,6 +6028,7 @@ UPB_INLINE const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* co
5673
6028
  }
5674
6029
  UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_array(const google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5675
6030
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6031
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5676
6032
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5677
6033
  if (size) {
5678
6034
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5681,6 +6037,7 @@ UPB_INLINE const upb_Array* _google_protobuf_FeatureSetDefaults_defaults_upb_arr
5681
6037
  }
5682
6038
  UPB_INLINE upb_Array* _google_protobuf_FeatureSetDefaults_defaults_mutable_upb_array(google_protobuf_FeatureSetDefaults* msg, size_t* size, upb_Arena* arena) {
5683
6039
  const upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6040
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5684
6041
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5685
6042
  &field, arena);
5686
6043
  if (size) {
@@ -5723,6 +6080,7 @@ UPB_INLINE bool google_protobuf_FeatureSetDefaults_has_maximum_edition(const goo
5723
6080
 
5724
6081
  UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_protobuf_FeatureSetDefaults_mutable_defaults(google_protobuf_FeatureSetDefaults* msg, size_t* size) {
5725
6082
  upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6083
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5726
6084
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5727
6085
  if (arr) {
5728
6086
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5739,6 +6097,7 @@ UPB_INLINE google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault** google_
5739
6097
  }
5740
6098
  UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* google_protobuf_FeatureSetDefaults_add_defaults(google_protobuf_FeatureSetDefaults* msg, upb_Arena* arena) {
5741
6099
  upb_MiniTableField field = {1, UPB_SIZE(12, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6100
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init);
5742
6101
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5743
6102
  UPB_UPCAST(msg), &field, arena);
5744
6103
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -5753,11 +6112,11 @@ UPB_INLINE struct google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* g
5753
6112
  }
5754
6113
  UPB_INLINE void google_protobuf_FeatureSetDefaults_set_minimum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
5755
6114
  const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 64, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5756
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6115
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5757
6116
  }
5758
6117
  UPB_INLINE void google_protobuf_FeatureSetDefaults_set_maximum_edition(google_protobuf_FeatureSetDefaults *msg, int32_t value) {
5759
6118
  const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 65, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5760
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6119
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5761
6120
  }
5762
6121
 
5763
6122
  /* google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault */
@@ -5796,54 +6155,86 @@ UPB_INLINE char* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_ser
5796
6155
  (void)upb_Encode(UPB_UPCAST(msg), &google__protobuf__FeatureSetDefaults__FeatureSetEditionDefault_msg_init, options, arena, &ptr, len);
5797
6156
  return ptr;
5798
6157
  }
5799
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5800
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6158
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6159
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6160
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
6161
+ }
6162
+ UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6163
+ int32_t default_val = 0;
6164
+ int32_t ret;
6165
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6166
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
6167
+ &default_val, &ret);
6168
+ return ret;
6169
+ }
6170
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6171
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6172
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
6173
+ }
6174
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6175
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5801
6176
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5802
6177
  }
5803
- UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6178
+ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5804
6179
  const google_protobuf_FeatureSet* default_val = NULL;
5805
6180
  const google_protobuf_FeatureSet* ret;
5806
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6181
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6182
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5807
6183
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5808
6184
  &default_val, &ret);
5809
6185
  return ret;
5810
6186
  }
5811
- UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5812
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6187
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_overridable_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6188
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5813
6189
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5814
6190
  }
5815
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5816
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6191
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_clear_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6192
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5817
6193
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
5818
6194
  }
5819
- UPB_INLINE int32_t google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5820
- int32_t default_val = 0;
5821
- int32_t ret;
5822
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6195
+ UPB_INLINE const google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6196
+ const google_protobuf_FeatureSet* default_val = NULL;
6197
+ const google_protobuf_FeatureSet* ret;
6198
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6199
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
5823
6200
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
5824
6201
  &default_val, &ret);
5825
6202
  return ret;
5826
6203
  }
5827
- UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_edition(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
5828
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6204
+ UPB_INLINE bool google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_has_fixed_features(const google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg) {
6205
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5829
6206
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
5830
6207
  }
5831
6208
 
5832
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
5833
- const upb_MiniTableField field = {2, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5834
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6209
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) {
6210
+ const upb_MiniTableField field = {3, 12, 64, 2, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6211
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6212
+ }
6213
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6214
+ const upb_MiniTableField field = {4, 16, 65, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6215
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
6216
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5835
6217
  }
5836
- UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
5837
- struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_features(msg);
6218
+ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_overridable_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
6219
+ struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_overridable_features(msg);
5838
6220
  if (sub == NULL) {
5839
6221
  sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
5840
- if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_features(msg, sub);
6222
+ if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_overridable_features(msg, sub);
5841
6223
  }
5842
6224
  return sub;
5843
6225
  }
5844
- UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_edition(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, int32_t value) {
5845
- const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, 1, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
5846
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6226
+ UPB_INLINE void google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault *msg, google_protobuf_FeatureSet* value) {
6227
+ const upb_MiniTableField field = {5, UPB_SIZE(20, 24), 66, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6228
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__FeatureSet_msg_init);
6229
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6230
+ }
6231
+ UPB_INLINE struct google_protobuf_FeatureSet* google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_mutable_fixed_features(google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault* msg, upb_Arena* arena) {
6232
+ struct google_protobuf_FeatureSet* sub = (struct google_protobuf_FeatureSet*)google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_fixed_features(msg);
6233
+ if (sub == NULL) {
6234
+ sub = (struct google_protobuf_FeatureSet*)_upb_Message_New(&google__protobuf__FeatureSet_msg_init, arena);
6235
+ if (sub) google_protobuf_FeatureSetDefaults_FeatureSetEditionDefault_set_fixed_features(msg, sub);
6236
+ }
6237
+ return sub;
5847
6238
  }
5848
6239
 
5849
6240
  /* google.protobuf.SourceCodeInfo */
@@ -5888,6 +6279,7 @@ UPB_INLINE void google_protobuf_SourceCodeInfo_clear_location(google_protobuf_So
5888
6279
  }
5889
6280
  UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
5890
6281
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6282
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5891
6283
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5892
6284
  if (arr) {
5893
6285
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5899,6 +6291,7 @@ UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf
5899
6291
  }
5900
6292
  UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(const google_protobuf_SourceCodeInfo* msg, size_t* size) {
5901
6293
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6294
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5902
6295
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
5903
6296
  if (size) {
5904
6297
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -5907,6 +6300,7 @@ UPB_INLINE const upb_Array* _google_protobuf_SourceCodeInfo_location_upb_array(c
5907
6300
  }
5908
6301
  UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array(google_protobuf_SourceCodeInfo* msg, size_t* size, upb_Arena* arena) {
5909
6302
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6303
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5910
6304
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
5911
6305
  &field, arena);
5912
6306
  if (size) {
@@ -5917,6 +6311,7 @@ UPB_INLINE upb_Array* _google_protobuf_SourceCodeInfo_location_mutable_upb_array
5917
6311
 
5918
6312
  UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo* msg, size_t* size) {
5919
6313
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6314
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5920
6315
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
5921
6316
  if (arr) {
5922
6317
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -5933,6 +6328,7 @@ UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeI
5933
6328
  }
5934
6329
  UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo* msg, upb_Arena* arena) {
5935
6330
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6331
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__SourceCodeInfo__Location_msg_init);
5936
6332
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
5937
6333
  UPB_UPCAST(msg), &field, arena);
5938
6334
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6169,11 +6565,11 @@ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf
6169
6565
  }
6170
6566
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6171
6567
  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)};
6172
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6568
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6173
6569
  }
6174
6570
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_StringView value) {
6175
6571
  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)};
6176
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6572
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6177
6573
  }
6178
6574
  UPB_INLINE upb_StringView* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location* msg, size_t* size) {
6179
6575
  upb_MiniTableField field = {6, UPB_SIZE(20, 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)};
@@ -6246,6 +6642,7 @@ UPB_INLINE void google_protobuf_GeneratedCodeInfo_clear_annotation(google_protob
6246
6642
  }
6247
6643
  UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6248
6644
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6645
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6249
6646
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6250
6647
  if (arr) {
6251
6648
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6257,6 +6654,7 @@ UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_pro
6257
6654
  }
6258
6655
  UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_array(const google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6259
6656
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6657
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6260
6658
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
6261
6659
  if (size) {
6262
6660
  *size = arr ? arr->UPB_PRIVATE(size) : 0;
@@ -6265,6 +6663,7 @@ UPB_INLINE const upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_upb_ar
6265
6663
  }
6266
6664
  UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_array(google_protobuf_GeneratedCodeInfo* msg, size_t* size, upb_Arena* arena) {
6267
6665
  const upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6666
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6268
6667
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
6269
6668
  &field, arena);
6270
6669
  if (size) {
@@ -6275,6 +6674,7 @@ UPB_INLINE upb_Array* _google_protobuf_GeneratedCodeInfo_annotation_mutable_upb_
6275
6674
 
6276
6675
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo* msg, size_t* size) {
6277
6676
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6677
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6278
6678
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
6279
6679
  if (arr) {
6280
6680
  if (size) *size = arr->UPB_PRIVATE(size);
@@ -6291,6 +6691,7 @@ UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_Genera
6291
6691
  }
6292
6692
  UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo* msg, upb_Arena* arena) {
6293
6693
  upb_MiniTableField field = {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6694
+ UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__GeneratedCodeInfo__Annotation_msg_init);
6294
6695
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
6295
6696
  UPB_UPCAST(msg), &field, arena);
6296
6697
  if (!arr || !UPB_PRIVATE(_upb_Array_ResizeUninitialized)(
@@ -6467,19 +6868,19 @@ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_pro
6467
6868
  }
6468
6869
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_StringView value) {
6469
6870
  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)};
6470
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6871
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6471
6872
  }
6472
6873
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6473
6874
  const upb_MiniTableField field = {3, UPB_SIZE(16, 12), 65, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6474
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6875
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6475
6876
  }
6476
6877
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6477
6878
  const upb_MiniTableField field = {4, UPB_SIZE(20, 16), 66, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6478
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6879
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6479
6880
  }
6480
6881
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_semantic(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
6481
6882
  const upb_MiniTableField field = {5, UPB_SIZE(24, 20), 67, 0, 14, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6482
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6883
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6483
6884
  }
6484
6885
 
6485
6886
  /* Max size 32 is google.protobuf.FileOptions */