grpc 1.30.2 → 1.35.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (1231) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1055 -18213
  3. data/etc/roots.pem +257 -573
  4. data/include/grpc/compression.h +1 -1
  5. data/include/grpc/grpc.h +15 -7
  6. data/include/grpc/grpc_security.h +254 -186
  7. data/include/grpc/grpc_security_constants.h +3 -0
  8. data/include/grpc/impl/codegen/README.md +22 -0
  9. data/include/grpc/impl/codegen/atm_windows.h +4 -0
  10. data/include/grpc/impl/codegen/byte_buffer.h +1 -1
  11. data/include/grpc/impl/codegen/grpc_types.h +16 -12
  12. data/include/grpc/impl/codegen/log.h +0 -2
  13. data/include/grpc/impl/codegen/port_platform.h +28 -88
  14. data/include/grpc/impl/codegen/sync_windows.h +4 -0
  15. data/include/grpc/slice_buffer.h +3 -3
  16. data/include/grpc/support/sync.h +3 -3
  17. data/include/grpc/support/time.h +7 -7
  18. data/src/core/ext/filters/client_channel/backend_metric.cc +14 -13
  19. data/src/core/ext/filters/client_channel/backup_poller.cc +3 -2
  20. data/src/core/ext/filters/client_channel/client_channel.cc +2991 -1559
  21. data/src/core/ext/filters/client_channel/client_channel.h +1 -5
  22. data/src/core/ext/filters/client_channel/client_channel_channelz.h +0 -3
  23. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
  24. data/src/core/ext/filters/client_channel/config_selector.cc +58 -0
  25. data/src/core/ext/filters/client_channel/config_selector.h +125 -0
  26. data/src/core/ext/filters/client_channel/dynamic_filters.cc +186 -0
  27. data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
  28. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
  29. data/src/core/ext/filters/client_channel/health/health_check_client.cc +18 -8
  30. data/src/core/ext/filters/client_channel/health/health_check_client.h +4 -4
  31. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +13 -14
  32. data/src/core/ext/filters/client_channel/http_proxy.cc +27 -24
  33. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +48 -35
  34. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
  35. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +10 -7
  36. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +1 -1
  37. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +248 -214
  38. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +0 -13
  39. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +0 -3
  40. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -37
  41. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -1
  42. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
  43. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  44. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +23 -17
  45. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +79 -30
  46. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +10 -9
  47. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +14 -36
  48. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +29 -19
  49. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +350 -130
  50. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +52 -24
  51. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +24 -0
  52. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +812 -0
  53. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +722 -0
  54. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1262 -0
  55. data/src/core/ext/filters/client_channel/lb_policy.cc +6 -2
  56. data/src/core/ext/filters/client_channel/lb_policy.h +10 -7
  57. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +12 -6
  58. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +14 -18
  59. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -32
  60. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +8 -6
  61. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +10 -8
  62. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +7 -5
  63. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +488 -65
  64. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -0
  65. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
  66. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  67. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +13 -12
  68. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +4 -4
  69. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +1 -1
  70. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +35 -28
  71. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +673 -69
  72. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +28 -0
  73. data/src/core/ext/filters/client_channel/resolver.cc +3 -1
  74. data/src/core/ext/filters/client_channel/resolver.h +4 -1
  75. data/src/core/ext/filters/client_channel/resolver_factory.h +6 -6
  76. data/src/core/ext/filters/client_channel/resolver_registry.cc +49 -49
  77. data/src/core/ext/filters/client_channel/resolver_registry.h +2 -2
  78. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +35 -81
  79. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +12 -11
  80. data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -3
  81. data/src/core/ext/filters/client_channel/retry_throttle.h +4 -2
  82. data/src/core/ext/filters/client_channel/server_address.cc +120 -7
  83. data/src/core/ext/filters/client_channel/server_address.h +44 -21
  84. data/src/core/ext/filters/client_channel/service_config.cc +18 -13
  85. data/src/core/ext/filters/client_channel/service_config.h +8 -5
  86. data/src/core/ext/filters/client_channel/service_config_call_data.h +19 -1
  87. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -0
  88. data/src/core/ext/filters/client_channel/service_config_parser.cc +8 -6
  89. data/src/core/ext/filters/client_channel/service_config_parser.h +8 -5
  90. data/src/core/ext/filters/client_channel/subchannel.cc +116 -88
  91. data/src/core/ext/filters/client_channel/subchannel.h +30 -24
  92. data/src/core/ext/filters/client_channel/subchannel_interface.h +41 -5
  93. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +6 -2
  94. data/src/core/ext/filters/deadline/deadline_filter.cc +87 -79
  95. data/src/core/ext/filters/deadline/deadline_filter.h +7 -11
  96. data/src/core/ext/filters/http/client/http_client_filter.cc +6 -6
  97. data/src/core/ext/filters/http/client_authority_filter.cc +6 -6
  98. data/src/core/ext/filters/http/http_filters_plugin.cc +8 -4
  99. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +74 -33
  100. data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +3 -1
  101. data/src/core/ext/filters/http/server/http_server_filter.cc +3 -3
  102. data/src/core/ext/filters/max_age/max_age_filter.cc +3 -2
  103. data/src/core/ext/filters/message_size/message_size_filter.cc +59 -82
  104. data/src/core/ext/filters/message_size/message_size_filter.h +8 -1
  105. data/src/core/ext/filters/workarounds/workaround_utils.cc +1 -1
  106. data/src/core/ext/transport/chttp2/client/authority.cc +3 -3
  107. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -31
  108. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +19 -2
  109. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +20 -8
  110. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +21 -10
  111. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +34 -47
  112. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +478 -342
  113. data/src/core/ext/transport/chttp2/server/chttp2_server.h +7 -2
  114. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +3 -3
  115. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +19 -18
  116. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +9 -9
  117. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +7 -7
  118. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +284 -321
  119. data/src/core/ext/transport/chttp2/transport/flow_control.cc +33 -30
  120. data/src/core/ext/transport/chttp2/transport/flow_control.h +27 -19
  121. data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
  122. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -7
  123. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
  124. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
  125. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +8 -9
  126. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -1
  127. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +15 -18
  128. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +37 -37
  129. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
  130. data/src/core/ext/transport/chttp2/transport/internal.h +23 -2
  131. data/src/core/ext/transport/chttp2/transport/parsing.cc +52 -74
  132. data/src/core/ext/transport/chttp2/transport/writing.cc +17 -22
  133. data/src/core/ext/transport/inproc/inproc_transport.cc +87 -33
  134. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +1 -1
  135. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
  136. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +10 -4
  137. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +244 -0
  138. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +865 -0
  139. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -0
  140. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +253 -0
  141. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +458 -0
  142. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1818 -0
  143. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +35 -0
  144. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +77 -0
  145. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +55 -0
  146. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +349 -0
  147. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +124 -0
  148. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +428 -0
  149. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +35 -0
  150. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +88 -0
  151. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +310 -0
  152. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +991 -0
  153. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +103 -0
  154. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +388 -0
  155. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +34 -0
  156. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +78 -0
  157. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +53 -0
  158. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +149 -0
  159. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +241 -0
  160. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +839 -0
  161. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +170 -0
  162. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +752 -0
  163. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +36 -0
  164. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +88 -0
  165. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +176 -0
  166. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +730 -0
  167. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +28 -0
  168. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +65 -0
  169. data/src/core/ext/upb-generated/envoy/{api/v2/core → config/core/v3}/socket_option.upb.c +8 -8
  170. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +95 -0
  171. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +36 -0
  172. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +92 -0
  173. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +91 -0
  174. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +243 -0
  175. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +91 -0
  176. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +305 -0
  177. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +112 -0
  178. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +367 -0
  179. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +33 -0
  180. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +73 -0
  181. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +128 -0
  182. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +512 -0
  183. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +155 -0
  184. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +591 -0
  185. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +41 -0
  186. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +107 -0
  187. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +178 -0
  188. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +662 -0
  189. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +63 -0
  190. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +220 -0
  191. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +900 -0
  192. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3640 -0
  193. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +60 -0
  194. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +159 -0
  195. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +50 -0
  196. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +122 -0
  197. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +364 -0
  198. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1475 -0
  199. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +20 -0
  200. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +35 -0
  201. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +110 -0
  202. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +426 -0
  203. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +76 -0
  204. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +236 -0
  205. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +147 -0
  206. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +621 -0
  207. data/src/core/ext/upb-generated/envoy/{api/v2 → service/cluster/v3}/cds.upb.c +6 -7
  208. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +56 -0
  209. data/src/core/ext/upb-generated/envoy/service/discovery/{v2 → v3}/ads.upb.c +6 -5
  210. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +56 -0
  211. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +139 -0
  212. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +487 -0
  213. data/src/core/ext/upb-generated/envoy/{api/v2 → service/endpoint/v3}/eds.upb.c +6 -7
  214. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +56 -0
  215. data/src/core/ext/upb-generated/envoy/{api/v2 → service/listener/v3}/lds.upb.c +6 -7
  216. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +56 -0
  217. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +55 -0
  218. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +151 -0
  219. data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/rds.upb.c +6 -7
  220. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +56 -0
  221. data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/srds.upb.c +6 -7
  222. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +56 -0
  223. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +47 -0
  224. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +128 -0
  225. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +35 -0
  226. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +84 -0
  227. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +34 -0
  228. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +78 -0
  229. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +64 -0
  230. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +166 -0
  231. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +54 -0
  232. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +146 -0
  233. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +63 -0
  234. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +207 -0
  235. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +88 -0
  236. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +301 -0
  237. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +90 -0
  238. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +283 -0
  239. data/src/core/ext/upb-generated/envoy/type/{http.upb.c → v3/http.upb.c} +2 -2
  240. data/src/core/ext/upb-generated/envoy/type/{http.upb.h → v3/http.upb.h} +9 -9
  241. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +40 -0
  242. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +99 -0
  243. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +51 -0
  244. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +130 -0
  245. data/src/core/ext/upb-generated/envoy/type/{semantic_version.upb.c → v3/semantic_version.upb.c} +7 -6
  246. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +68 -0
  247. data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
  248. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +242 -0
  249. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +830 -0
  250. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +234 -0
  251. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +842 -0
  252. data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
  253. data/src/core/ext/upb-generated/google/api/http.upb.h +52 -32
  254. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
  255. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +12 -6
  256. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +106 -106
  257. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +688 -499
  258. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
  259. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +12 -6
  260. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
  261. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +8 -2
  262. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +5 -5
  263. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +55 -57
  264. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
  265. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +12 -6
  266. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +9 -9
  267. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +82 -28
  268. data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
  269. data/src/core/ext/upb-generated/google/rpc/status.upb.h +17 -10
  270. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +5 -5
  271. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +40 -45
  272. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +43 -43
  273. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +236 -184
  274. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +5 -5
  275. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +29 -13
  276. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
  277. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +19 -7
  278. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +17 -17
  279. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +122 -62
  280. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
  281. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +30 -12
  282. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +31 -0
  283. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +64 -0
  284. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +1 -1
  285. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +2 -2
  286. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +12 -6
  287. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +27 -0
  288. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +60 -0
  289. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.c +28 -0
  290. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +60 -0
  291. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +52 -0
  292. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +143 -0
  293. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +42 -0
  294. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +84 -0
  295. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.c +36 -0
  296. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +94 -0
  297. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +54 -0
  298. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +173 -0
  299. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +36 -0
  300. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +92 -0
  301. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +9 -9
  302. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +48 -68
  303. data/src/core/ext/upb-generated/validate/validate.upb.c +68 -68
  304. data/src/core/ext/upb-generated/validate/validate.upb.h +727 -587
  305. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +38 -0
  306. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +30 -0
  307. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +41 -0
  308. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +35 -0
  309. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +254 -0
  310. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +105 -0
  311. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +100 -0
  312. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +45 -0
  313. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +558 -0
  314. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +145 -0
  315. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +53 -0
  316. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +35 -0
  317. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +133 -0
  318. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +35 -0
  319. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +127 -0
  320. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +65 -0
  321. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +56 -0
  322. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +35 -0
  323. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +266 -0
  324. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +125 -0
  325. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +143 -0
  326. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +55 -0
  327. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +56 -0
  328. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +35 -0
  329. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +66 -0
  330. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +40 -0
  331. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +263 -0
  332. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +100 -0
  333. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +233 -0
  334. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +70 -0
  335. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +56 -0
  336. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +35 -0
  337. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +228 -0
  338. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +80 -0
  339. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +46 -0
  340. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +35 -0
  341. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +59 -0
  342. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +35 -0
  343. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +55 -0
  344. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +35 -0
  345. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +110 -0
  346. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +50 -0
  347. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +113 -0
  348. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +50 -0
  349. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +146 -0
  350. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +55 -0
  351. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +50 -0
  352. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +35 -0
  353. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +190 -0
  354. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +55 -0
  355. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +185 -0
  356. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +65 -0
  357. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +62 -0
  358. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +40 -0
  359. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +97 -0
  360. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +40 -0
  361. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +915 -0
  362. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +280 -0
  363. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +71 -0
  364. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +45 -0
  365. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +64 -0
  366. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +40 -0
  367. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +511 -0
  368. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +115 -0
  369. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -0
  370. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +30 -0
  371. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +166 -0
  372. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +55 -0
  373. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +105 -0
  374. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +45 -0
  375. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +249 -0
  376. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +60 -0
  377. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +72 -0
  378. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +35 -0
  379. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +60 -0
  380. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +35 -0
  381. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +152 -0
  382. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +60 -0
  383. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +83 -0
  384. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +35 -0
  385. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +82 -0
  386. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +35 -0
  387. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +83 -0
  388. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +40 -0
  389. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +86 -0
  390. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +35 -0
  391. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +74 -0
  392. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +35 -0
  393. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +64 -0
  394. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +40 -0
  395. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +54 -0
  396. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +35 -0
  397. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +53 -0
  398. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +35 -0
  399. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +73 -0
  400. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +45 -0
  401. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +72 -0
  402. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +40 -0
  403. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +81 -0
  404. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +45 -0
  405. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +92 -0
  406. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +65 -0
  407. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +95 -0
  408. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +55 -0
  409. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +34 -0
  410. data/src/core/ext/{upb-generated/gogoproto/gogo.upb.h → upbdefs-generated/envoy/type/v3/http.upbdefs.h} +10 -10
  411. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +59 -0
  412. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +40 -0
  413. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +54 -0
  414. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +45 -0
  415. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +47 -0
  416. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +35 -0
  417. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +40 -0
  418. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +30 -0
  419. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +61 -0
  420. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +45 -0
  421. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +39 -0
  422. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +35 -0
  423. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +386 -0
  424. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +165 -0
  425. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +40 -0
  426. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +35 -0
  427. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +37 -0
  428. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +35 -0
  429. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +65 -0
  430. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +50 -0
  431. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +40 -0
  432. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +35 -0
  433. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +66 -0
  434. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +75 -0
  435. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +42 -0
  436. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +35 -0
  437. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +70 -0
  438. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +45 -0
  439. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +56 -0
  440. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +35 -0
  441. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +33 -0
  442. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +30 -0
  443. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +49 -0
  444. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +35 -0
  445. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +43 -0
  446. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +35 -0
  447. data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.c +42 -0
  448. data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.h +35 -0
  449. data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.c +62 -0
  450. data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.h +40 -0
  451. data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.c +45 -0
  452. data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.h +40 -0
  453. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.c +49 -0
  454. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.h +35 -0
  455. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.c +68 -0
  456. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.h +40 -0
  457. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.c +51 -0
  458. data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.h +35 -0
  459. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +307 -0
  460. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +145 -0
  461. data/src/core/ext/xds/certificate_provider_factory.h +61 -0
  462. data/src/core/ext/xds/certificate_provider_registry.cc +103 -0
  463. data/src/core/ext/xds/certificate_provider_registry.h +57 -0
  464. data/src/core/ext/xds/certificate_provider_store.cc +87 -0
  465. data/src/core/ext/xds/certificate_provider_store.h +112 -0
  466. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +144 -0
  467. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +69 -0
  468. data/src/core/ext/xds/xds_api.cc +2308 -0
  469. data/src/core/ext/xds/xds_api.h +469 -0
  470. data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.cc +220 -42
  471. data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.h +31 -11
  472. data/src/core/ext/xds/xds_certificate_provider.cc +299 -0
  473. data/src/core/ext/xds/xds_certificate_provider.h +112 -0
  474. data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel_args.h +9 -6
  475. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.cc +661 -791
  476. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.h +126 -99
  477. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.cc +61 -18
  478. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.h +48 -20
  479. data/src/core/ext/xds/xds_server_config_fetcher.cc +131 -0
  480. data/src/core/lib/channel/channel_args.cc +9 -8
  481. data/src/core/lib/channel/channel_args.h +0 -1
  482. data/src/core/lib/channel/channel_trace.cc +6 -8
  483. data/src/core/lib/channel/channel_trace.h +1 -1
  484. data/src/core/lib/channel/channelz.cc +41 -88
  485. data/src/core/lib/channel/channelz.h +14 -23
  486. data/src/core/lib/channel/channelz_registry.cc +15 -12
  487. data/src/core/lib/channel/channelz_registry.h +3 -1
  488. data/src/core/lib/channel/handshaker.cc +2 -2
  489. data/src/core/lib/channel/handshaker.h +2 -2
  490. data/src/core/lib/compression/compression.cc +8 -4
  491. data/src/core/lib/compression/compression_args.cc +3 -2
  492. data/src/core/lib/compression/compression_internal.cc +10 -5
  493. data/src/core/lib/compression/compression_internal.h +2 -1
  494. data/src/core/lib/compression/stream_compression_identity.cc +1 -3
  495. data/src/core/lib/debug/stats.h +2 -2
  496. data/src/core/lib/debug/stats_data.cc +1 -0
  497. data/src/core/lib/debug/stats_data.h +13 -13
  498. data/src/core/lib/gpr/alloc.cc +3 -2
  499. data/src/core/lib/gpr/cpu_iphone.cc +10 -2
  500. data/src/core/lib/gpr/log.cc +53 -16
  501. data/src/core/lib/gpr/log_linux.cc +23 -9
  502. data/src/core/lib/gpr/log_posix.cc +19 -7
  503. data/src/core/lib/gpr/log_windows.cc +18 -4
  504. data/src/core/lib/gpr/murmur_hash.cc +1 -1
  505. data/src/core/lib/gpr/spinlock.h +10 -2
  506. data/src/core/lib/gpr/string.cc +33 -31
  507. data/src/core/lib/gpr/string.h +9 -8
  508. data/src/core/lib/gpr/sync.cc +4 -4
  509. data/src/core/lib/gpr/sync_posix.cc +2 -8
  510. data/src/core/lib/gpr/time.cc +12 -12
  511. data/src/core/lib/gpr/time_precise.cc +5 -2
  512. data/src/core/lib/gpr/time_precise.h +6 -2
  513. data/src/core/lib/gpr/tls.h +4 -0
  514. data/src/core/lib/gpr/tls_msvc.h +2 -0
  515. data/src/core/lib/gpr/tls_stdcpp.h +48 -0
  516. data/src/core/lib/gpr/useful.h +5 -4
  517. data/src/core/lib/gprpp/arena.h +3 -2
  518. data/src/core/lib/gprpp/dual_ref_counted.h +331 -0
  519. data/src/core/lib/gprpp/examine_stack.cc +43 -0
  520. data/src/core/lib/gprpp/examine_stack.h +46 -0
  521. data/src/core/lib/gprpp/fork.cc +2 -2
  522. data/src/core/lib/gprpp/global_config_env.cc +8 -6
  523. data/src/core/lib/gprpp/manual_constructor.h +1 -1
  524. data/src/core/lib/gprpp/orphanable.h +4 -8
  525. data/src/core/lib/gprpp/ref_counted.h +91 -68
  526. data/src/core/lib/gprpp/ref_counted_ptr.h +166 -7
  527. data/src/core/lib/gprpp/stat.h +38 -0
  528. data/src/core/lib/gprpp/stat_posix.cc +49 -0
  529. data/src/core/lib/gprpp/stat_windows.cc +48 -0
  530. data/src/core/lib/gprpp/thd.h +2 -2
  531. data/src/core/lib/gprpp/thd_posix.cc +42 -37
  532. data/src/core/lib/gprpp/thd_windows.cc +3 -1
  533. data/src/core/lib/http/httpcli.cc +14 -11
  534. data/src/core/lib/http/httpcli.h +2 -3
  535. data/src/core/lib/http/httpcli_security_connector.cc +6 -6
  536. data/src/core/lib/http/parser.cc +47 -27
  537. data/src/core/lib/iomgr/call_combiner.cc +8 -5
  538. data/src/core/lib/iomgr/cfstream_handle.cc +1 -0
  539. data/src/core/lib/iomgr/combiner.cc +2 -1
  540. data/src/core/lib/iomgr/endpoint.cc +5 -1
  541. data/src/core/lib/iomgr/endpoint.h +8 -4
  542. data/src/core/lib/iomgr/endpoint_cfstream.cc +36 -11
  543. data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
  544. data/src/core/lib/iomgr/error.cc +17 -12
  545. data/src/core/lib/iomgr/error_cfstream.cc +9 -8
  546. data/src/core/lib/iomgr/error_internal.h +1 -1
  547. data/src/core/lib/iomgr/ev_epoll1_linux.cc +25 -19
  548. data/src/core/lib/iomgr/ev_epollex_linux.cc +40 -38
  549. data/src/core/lib/iomgr/ev_poll_posix.cc +15 -12
  550. data/src/core/lib/iomgr/exec_ctx.cc +1 -1
  551. data/src/core/lib/iomgr/exec_ctx.h +16 -12
  552. data/src/core/lib/iomgr/executor/mpmcqueue.h +5 -5
  553. data/src/core/lib/iomgr/executor/threadpool.h +4 -4
  554. data/src/core/lib/iomgr/executor.cc +2 -1
  555. data/src/core/lib/iomgr/executor.h +1 -1
  556. data/src/core/lib/iomgr/iomgr.cc +1 -1
  557. data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
  558. data/src/core/lib/iomgr/load_file.h +1 -1
  559. data/src/core/lib/iomgr/lockfree_event.cc +19 -14
  560. data/src/core/lib/iomgr/lockfree_event.h +2 -2
  561. data/src/core/{ext/filters/client_channel → lib/iomgr}/parse_address.cc +128 -44
  562. data/src/core/lib/iomgr/parse_address.h +77 -0
  563. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +2 -1
  564. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +1 -1
  565. data/src/core/lib/iomgr/pollset_set_custom.cc +1 -1
  566. data/src/core/lib/iomgr/port.h +1 -21
  567. data/src/core/lib/iomgr/python_util.h +4 -4
  568. data/src/core/lib/iomgr/resolve_address.cc +4 -4
  569. data/src/core/lib/iomgr/resolve_address_custom.cc +13 -18
  570. data/src/core/lib/iomgr/resolve_address_posix.cc +1 -5
  571. data/src/core/lib/iomgr/resolve_address_windows.cc +8 -8
  572. data/src/core/lib/iomgr/resource_quota.cc +34 -31
  573. data/src/core/lib/iomgr/sockaddr_utils.cc +19 -16
  574. data/src/core/lib/iomgr/sockaddr_utils.h +4 -3
  575. data/src/core/lib/iomgr/socket_factory_posix.cc +3 -2
  576. data/src/core/lib/iomgr/socket_mutator.cc +3 -2
  577. data/src/core/lib/iomgr/socket_utils_common_posix.cc +95 -55
  578. data/src/core/lib/iomgr/socket_windows.cc +4 -5
  579. data/src/core/lib/iomgr/tcp_client.cc +3 -3
  580. data/src/core/lib/iomgr/tcp_client_cfstream.cc +9 -11
  581. data/src/core/lib/iomgr/tcp_client_custom.cc +13 -15
  582. data/src/core/lib/iomgr/tcp_client_posix.cc +27 -36
  583. data/src/core/lib/iomgr/tcp_client_windows.cc +9 -9
  584. data/src/core/lib/iomgr/tcp_custom.cc +54 -33
  585. data/src/core/lib/iomgr/tcp_custom.h +1 -1
  586. data/src/core/lib/iomgr/tcp_posix.cc +43 -21
  587. data/src/core/lib/iomgr/tcp_server.cc +3 -4
  588. data/src/core/lib/iomgr/tcp_server.h +7 -5
  589. data/src/core/lib/iomgr/tcp_server_custom.cc +34 -36
  590. data/src/core/lib/iomgr/tcp_server_posix.cc +34 -41
  591. data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
  592. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -7
  593. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -9
  594. data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
  595. data/src/core/lib/iomgr/tcp_windows.cc +26 -10
  596. data/src/core/lib/iomgr/timer_custom.cc +5 -5
  597. data/src/core/lib/iomgr/timer_generic.cc +16 -15
  598. data/src/core/lib/iomgr/timer_manager.cc +2 -2
  599. data/src/core/lib/iomgr/udp_server.cc +25 -25
  600. data/src/core/lib/iomgr/udp_server.h +6 -4
  601. data/src/core/lib/iomgr/unix_sockets_posix.cc +36 -30
  602. data/src/core/lib/iomgr/unix_sockets_posix.h +8 -1
  603. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +12 -2
  604. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -2
  605. data/src/core/lib/json/json.h +12 -2
  606. data/src/core/lib/json/json_reader.cc +28 -25
  607. data/src/core/lib/json/json_util.cc +58 -0
  608. data/src/core/lib/json/json_util.h +204 -0
  609. data/src/core/lib/json/json_writer.cc +2 -1
  610. data/src/core/lib/security/authorization/authorization_engine.cc +177 -0
  611. data/src/core/lib/security/authorization/authorization_engine.h +84 -0
  612. data/src/core/lib/security/authorization/evaluate_args.cc +148 -0
  613. data/src/core/lib/security/authorization/evaluate_args.h +59 -0
  614. data/src/core/lib/security/authorization/mock_cel/activation.h +57 -0
  615. data/src/core/lib/security/authorization/mock_cel/cel_expr_builder_factory.h +44 -0
  616. data/src/core/lib/security/authorization/mock_cel/cel_expression.h +69 -0
  617. data/src/core/lib/security/authorization/mock_cel/cel_value.h +97 -0
  618. data/src/core/lib/security/authorization/mock_cel/evaluator_core.h +67 -0
  619. data/src/core/lib/security/authorization/mock_cel/flat_expr_builder.h +57 -0
  620. data/src/core/lib/security/context/security_context.cc +4 -3
  621. data/src/core/lib/security/context/security_context.h +3 -1
  622. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
  623. data/src/core/lib/security/credentials/credentials.cc +7 -7
  624. data/src/core/lib/security/credentials/credentials.h +8 -6
  625. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +413 -0
  626. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +80 -0
  627. data/src/core/lib/security/credentials/external/aws_request_signer.cc +213 -0
  628. data/src/core/lib/security/credentials/external/aws_request_signer.h +72 -0
  629. data/src/core/lib/security/credentials/external/external_account_credentials.cc +497 -0
  630. data/src/core/lib/security/credentials/external/external_account_credentials.h +120 -0
  631. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +135 -0
  632. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +48 -0
  633. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +213 -0
  634. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +58 -0
  635. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -1
  636. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
  637. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +82 -55
  638. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +64 -0
  639. data/src/core/lib/security/credentials/jwt/json_token.cc +6 -3
  640. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
  641. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +4 -3
  642. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +8 -4
  643. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +58 -74
  644. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -4
  645. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +7 -7
  646. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +25 -5
  647. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +11 -1
  648. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +346 -0
  649. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +213 -0
  650. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +399 -0
  651. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +138 -0
  652. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +78 -150
  653. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +65 -185
  654. data/src/core/lib/security/credentials/tls/tls_credentials.cc +16 -12
  655. data/src/core/lib/security/credentials/tls/tls_credentials.h +2 -2
  656. data/src/core/lib/security/credentials/tls/tls_utils.cc +91 -0
  657. data/src/core/lib/security/credentials/tls/tls_utils.h +38 -0
  658. data/src/core/lib/security/credentials/xds/xds_credentials.cc +175 -0
  659. data/src/core/lib/security/credentials/xds/xds_credentials.h +69 -0
  660. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -1
  661. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +20 -25
  662. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +121 -0
  663. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +87 -0
  664. data/src/core/lib/security/security_connector/load_system_roots.h +4 -0
  665. data/src/core/lib/security/security_connector/load_system_roots_linux.h +2 -0
  666. data/src/core/lib/security/security_connector/local/local_security_connector.cc +3 -3
  667. data/src/core/lib/security/security_connector/security_connector.cc +6 -3
  668. data/src/core/lib/security/security_connector/security_connector.h +5 -3
  669. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +22 -15
  670. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +5 -0
  671. data/src/core/lib/security/security_connector/ssl_utils.cc +46 -25
  672. data/src/core/lib/security/security_connector/ssl_utils.h +25 -21
  673. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +359 -293
  674. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +105 -61
  675. data/src/core/lib/security/transport/client_auth_filter.cc +10 -9
  676. data/src/core/lib/security/transport/secure_endpoint.cc +9 -3
  677. data/src/core/lib/security/transport/security_handshaker.cc +3 -3
  678. data/src/core/lib/security/transport/server_auth_filter.cc +2 -1
  679. data/src/core/lib/security/util/json_util.cc +12 -13
  680. data/src/core/lib/security/util/json_util.h +1 -0
  681. data/src/core/lib/slice/slice.cc +45 -5
  682. data/src/core/lib/slice/slice_buffer.cc +2 -1
  683. data/src/core/lib/slice/slice_intern.cc +6 -7
  684. data/src/core/lib/slice/slice_internal.h +3 -2
  685. data/src/core/lib/surface/call.cc +93 -85
  686. data/src/core/lib/surface/call.h +2 -1
  687. data/src/core/lib/surface/call_details.cc +8 -8
  688. data/src/core/lib/surface/channel.cc +53 -61
  689. data/src/core/lib/surface/channel.h +21 -5
  690. data/src/core/lib/surface/channel_init.cc +1 -1
  691. data/src/core/lib/surface/completion_queue.cc +30 -29
  692. data/src/core/lib/surface/completion_queue.h +16 -16
  693. data/src/core/lib/surface/init.cc +32 -14
  694. data/src/core/lib/surface/lame_client.cc +20 -46
  695. data/src/core/lib/surface/lame_client.h +4 -0
  696. data/src/core/lib/surface/server.cc +1144 -1343
  697. data/src/core/lib/surface/server.h +400 -70
  698. data/src/core/lib/surface/validate_metadata.h +3 -0
  699. data/src/core/lib/surface/version.cc +2 -2
  700. data/src/core/lib/transport/authority_override.cc +40 -0
  701. data/src/core/lib/transport/authority_override.h +37 -0
  702. data/src/core/lib/transport/bdp_estimator.cc +1 -1
  703. data/src/core/lib/transport/bdp_estimator.h +2 -1
  704. data/src/core/lib/transport/byte_stream.h +3 -3
  705. data/src/core/lib/transport/connectivity_state.cc +18 -13
  706. data/src/core/lib/transport/connectivity_state.h +26 -12
  707. data/src/core/lib/transport/error_utils.cc +13 -0
  708. data/src/core/lib/transport/error_utils.h +7 -1
  709. data/src/core/lib/transport/metadata.cc +11 -1
  710. data/src/core/lib/transport/metadata.h +2 -2
  711. data/src/core/lib/transport/metadata_batch.h +4 -4
  712. data/src/core/lib/transport/static_metadata.cc +296 -277
  713. data/src/core/lib/transport/static_metadata.h +80 -73
  714. data/src/core/lib/transport/status_metadata.cc +4 -3
  715. data/src/core/lib/transport/timeout_encoding.cc +4 -4
  716. data/src/core/lib/transport/transport.cc +5 -3
  717. data/src/core/lib/transport/transport.h +21 -8
  718. data/src/core/lib/uri/uri_parser.cc +135 -258
  719. data/src/core/lib/uri/uri_parser.h +58 -20
  720. data/src/core/plugin_registry/grpc_plugin_registry.cc +45 -20
  721. data/src/core/tsi/alts/crypt/gsec.cc +5 -4
  722. data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -6
  723. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +24 -14
  724. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +51 -26
  725. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
  726. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
  727. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +4 -4
  728. data/src/core/tsi/fake_transport_security.cc +6 -3
  729. data/src/core/tsi/local_transport_security.cc +5 -1
  730. data/src/core/tsi/local_transport_security.h +6 -7
  731. data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -0
  732. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
  733. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -1
  734. data/src/core/tsi/ssl_transport_security.cc +177 -66
  735. data/src/core/tsi/ssl_transport_security.h +23 -8
  736. data/src/core/tsi/transport_security.cc +10 -8
  737. data/src/core/tsi/transport_security_interface.h +6 -1
  738. data/src/ruby/bin/math_services_pb.rb +4 -4
  739. data/src/ruby/ext/grpc/extconf.rb +6 -3
  740. data/src/ruby/ext/grpc/rb_call.c +3 -2
  741. data/src/ruby/ext/grpc/rb_call.h +4 -0
  742. data/src/ruby/ext/grpc/rb_call_credentials.c +54 -10
  743. data/src/ruby/ext/grpc/rb_channel_credentials.c +9 -0
  744. data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
  745. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +38 -18
  746. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +74 -44
  747. data/src/ruby/lib/grpc/generic/client_stub.rb +1 -1
  748. data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
  749. data/src/ruby/lib/grpc/version.rb +1 -1
  750. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +2 -2
  751. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +33 -0
  752. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +46 -12
  753. data/src/ruby/spec/channel_credentials_spec.rb +10 -0
  754. data/src/ruby/spec/generic/active_call_spec.rb +19 -8
  755. data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
  756. data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
  757. data/src/ruby/spec/pb/codegen/package_option_spec.rb +22 -6
  758. data/src/ruby/spec/user_agent_spec.rb +74 -0
  759. data/third_party/abseil-cpp/absl/algorithm/container.h +1764 -0
  760. data/third_party/abseil-cpp/absl/base/attributes.h +99 -38
  761. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  762. data/third_party/abseil-cpp/absl/base/casts.h +9 -6
  763. data/third_party/abseil-cpp/absl/base/config.h +60 -17
  764. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +428 -335
  765. data/third_party/abseil-cpp/absl/base/internal/bits.h +17 -16
  766. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +166 -0
  767. data/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
  768. data/third_party/abseil-cpp/absl/base/internal/exponential_biased.cc +93 -0
  769. data/third_party/abseil-cpp/absl/base/internal/exponential_biased.h +130 -0
  770. data/third_party/abseil-cpp/absl/base/internal/invoke.h +4 -4
  771. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +620 -0
  772. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +126 -0
  773. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +29 -1
  774. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +2 -2
  775. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +7 -5
  776. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +25 -38
  777. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +19 -25
  778. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +8 -0
  779. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +28 -5
  780. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +8 -0
  781. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +3 -1
  782. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +2 -2
  783. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +3 -3
  784. data/third_party/abseil-cpp/absl/base/macros.h +36 -109
  785. data/third_party/abseil-cpp/absl/base/optimization.h +61 -1
  786. data/third_party/abseil-cpp/absl/base/options.h +31 -4
  787. data/third_party/abseil-cpp/absl/base/policy_checks.h +1 -1
  788. data/third_party/abseil-cpp/absl/base/thread_annotations.h +94 -39
  789. data/third_party/abseil-cpp/absl/container/fixed_array.h +532 -0
  790. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
  791. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +504 -0
  792. data/third_party/abseil-cpp/absl/container/inlined_vector.h +33 -36
  793. data/third_party/abseil-cpp/absl/container/internal/common.h +206 -0
  794. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +33 -8
  795. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +460 -0
  796. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +161 -0
  797. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +208 -0
  798. data/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
  799. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +270 -0
  800. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +321 -0
  801. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +30 -0
  802. data/third_party/abseil-cpp/absl/container/internal/have_sse.h +50 -0
  803. data/third_party/abseil-cpp/absl/container/internal/layout.h +743 -0
  804. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +197 -0
  805. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +48 -0
  806. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1903 -0
  807. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +139 -0
  808. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
  809. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1945 -0
  810. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +71 -0
  811. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +382 -0
  812. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +134 -0
  813. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +196 -0
  814. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +134 -0
  815. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +89 -0
  816. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
  817. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +248 -0
  818. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
  819. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +93 -0
  820. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +346 -0
  821. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +149 -0
  822. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +173 -0
  823. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
  824. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +140 -0
  825. data/third_party/abseil-cpp/absl/debugging/stacktrace.h +231 -0
  826. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +36 -0
  827. data/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
  828. data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +101 -0
  829. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1560 -0
  830. data/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
  831. data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +81 -0
  832. data/third_party/abseil-cpp/absl/functional/bind_front.h +184 -0
  833. data/third_party/abseil-cpp/absl/functional/function_ref.h +139 -0
  834. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +95 -0
  835. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +106 -0
  836. data/third_party/abseil-cpp/absl/hash/hash.h +325 -0
  837. data/third_party/abseil-cpp/absl/hash/internal/city.cc +346 -0
  838. data/third_party/abseil-cpp/absl/hash/internal/city.h +96 -0
  839. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +55 -0
  840. data/third_party/abseil-cpp/absl/hash/internal/hash.h +996 -0
  841. data/third_party/abseil-cpp/absl/memory/memory.h +4 -0
  842. data/third_party/abseil-cpp/absl/meta/type_traits.h +2 -8
  843. data/third_party/abseil-cpp/absl/numeric/int128.cc +13 -27
  844. data/third_party/abseil-cpp/absl/numeric/int128.h +16 -15
  845. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +51 -0
  846. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +399 -0
  847. data/third_party/abseil-cpp/absl/status/status.cc +445 -0
  848. data/third_party/abseil-cpp/absl/status/status.h +817 -0
  849. data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +38 -0
  850. data/third_party/abseil-cpp/absl/status/status_payload_printer.h +51 -0
  851. data/third_party/abseil-cpp/absl/status/statusor.cc +71 -0
  852. data/third_party/abseil-cpp/absl/status/statusor.h +760 -0
  853. data/third_party/abseil-cpp/absl/strings/charconv.cc +2 -2
  854. data/third_party/abseil-cpp/absl/strings/cord.cc +1998 -0
  855. data/third_party/abseil-cpp/absl/strings/cord.h +1276 -0
  856. data/third_party/abseil-cpp/absl/strings/escaping.cc +9 -9
  857. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +1 -1
  858. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
  859. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +2 -2
  860. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +2 -2
  861. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +173 -0
  862. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +222 -136
  863. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +136 -64
  864. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +1 -1
  865. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +14 -21
  866. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +7 -14
  867. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +31 -7
  868. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +147 -135
  869. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +999 -87
  870. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +3 -3
  871. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +4 -12
  872. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +8 -6
  873. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +13 -11
  874. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +2 -2
  875. data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
  876. data/third_party/abseil-cpp/absl/strings/str_cat.h +1 -1
  877. data/third_party/abseil-cpp/absl/strings/str_format.h +289 -13
  878. data/third_party/abseil-cpp/absl/strings/str_split.cc +2 -2
  879. data/third_party/abseil-cpp/absl/strings/str_split.h +1 -0
  880. data/third_party/abseil-cpp/absl/strings/string_view.h +26 -19
  881. data/third_party/abseil-cpp/absl/strings/substitute.cc +5 -5
  882. data/third_party/abseil-cpp/absl/strings/substitute.h +32 -29
  883. data/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
  884. data/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
  885. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +57 -0
  886. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +99 -0
  887. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +140 -0
  888. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +60 -0
  889. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +697 -0
  890. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +141 -0
  891. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +155 -0
  892. data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +249 -0
  893. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
  894. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +115 -0
  895. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +492 -0
  896. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +159 -0
  897. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +2739 -0
  898. data/third_party/abseil-cpp/absl/synchronization/mutex.h +1065 -0
  899. data/third_party/abseil-cpp/absl/synchronization/notification.cc +78 -0
  900. data/third_party/abseil-cpp/absl/synchronization/notification.h +123 -0
  901. data/third_party/abseil-cpp/absl/time/civil_time.cc +9 -9
  902. data/third_party/abseil-cpp/absl/time/clock.cc +3 -3
  903. data/third_party/abseil-cpp/absl/time/duration.cc +90 -59
  904. data/third_party/abseil-cpp/absl/time/format.cc +43 -36
  905. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +26 -16
  906. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +4 -2
  907. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +1 -1
  908. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +136 -29
  909. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +13 -21
  910. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +1 -1
  911. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +136 -129
  912. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +4 -5
  913. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +8 -7
  914. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -6
  915. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -1
  916. data/third_party/abseil-cpp/absl/time/time.h +15 -16
  917. data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +64 -0
  918. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +82 -0
  919. data/third_party/abseil-cpp/absl/types/internal/variant.h +1646 -0
  920. data/third_party/abseil-cpp/absl/types/optional.h +9 -9
  921. data/third_party/abseil-cpp/absl/types/span.h +49 -36
  922. data/third_party/abseil-cpp/absl/types/variant.h +861 -0
  923. data/third_party/abseil-cpp/absl/utility/utility.h +2 -2
  924. data/third_party/address_sorting/include/address_sorting/address_sorting.h +2 -0
  925. data/third_party/boringssl-with-bazel/err_data.c +482 -464
  926. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
  927. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
  928. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
  929. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
  930. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
  931. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
  932. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -7
  933. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
  934. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
  935. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
  936. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
  937. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -0
  938. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
  939. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +9 -43
  940. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +55 -4
  941. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +34 -0
  942. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +12 -52
  943. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -22
  944. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +4 -0
  945. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +159 -0
  946. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +6 -2
  947. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
  948. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +11 -1
  949. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +173 -35
  950. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
  951. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +2 -1
  952. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +13 -11
  953. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +24 -23
  954. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +20 -16
  955. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -2
  956. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
  957. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +4 -0
  958. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +30 -10
  959. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +56 -22
  960. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +70 -2
  961. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +543 -0
  962. data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +237 -0
  963. data/third_party/boringssl-with-bazel/src/crypto/mem.c +29 -15
  964. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
  965. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
  966. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +110 -70
  967. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +348 -423
  968. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +217 -79
  969. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +766 -0
  970. data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +7 -7
  971. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +10 -0
  972. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
  973. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +3 -3
  974. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -1
  975. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
  976. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +20 -8
  977. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +21 -18
  978. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -1
  979. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
  980. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +65 -3
  981. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +7 -4
  982. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +67 -67
  983. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +3 -3
  984. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +57 -44
  985. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +38 -2
  986. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +9 -8
  987. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +10 -10
  988. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +37 -15
  989. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +28 -40
  990. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
  991. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +20 -0
  992. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +30 -6
  993. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +1 -4
  994. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
  995. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +5 -3
  996. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +14 -14
  997. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +7 -3
  998. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +2 -2
  999. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +1 -1
  1000. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +1 -1
  1001. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +126 -40
  1002. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -1
  1003. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +24 -0
  1004. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
  1005. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +54 -0
  1006. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -23
  1007. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +7 -4
  1008. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +4 -0
  1009. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +6 -0
  1010. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +1 -1
  1011. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +6 -0
  1012. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +12 -0
  1013. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +9 -0
  1014. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +73 -1
  1015. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +3 -0
  1016. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +202 -134
  1017. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +136 -26
  1018. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +5 -2
  1019. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +43 -24
  1020. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +942 -747
  1021. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +482 -432
  1022. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +18 -5
  1023. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +38 -3
  1024. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +27 -20
  1025. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +4 -5
  1026. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +10 -1
  1027. data/third_party/boringssl-with-bazel/src/ssl/internal.h +66 -24
  1028. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +48 -7
  1029. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +3 -6
  1030. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +8 -9
  1031. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +105 -0
  1032. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +11 -34
  1033. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
  1034. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -24
  1035. data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +250 -20
  1036. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -2
  1037. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +88 -40
  1038. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +152 -50
  1039. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +5 -3
  1040. data/third_party/re2/re2/bitmap256.h +117 -0
  1041. data/third_party/re2/re2/bitstate.cc +385 -0
  1042. data/third_party/re2/re2/compile.cc +1279 -0
  1043. data/third_party/re2/re2/dfa.cc +2130 -0
  1044. data/third_party/re2/re2/filtered_re2.cc +121 -0
  1045. data/third_party/re2/re2/filtered_re2.h +109 -0
  1046. data/third_party/re2/re2/mimics_pcre.cc +197 -0
  1047. data/third_party/re2/re2/nfa.cc +713 -0
  1048. data/third_party/re2/re2/onepass.cc +623 -0
  1049. data/third_party/re2/re2/parse.cc +2464 -0
  1050. data/third_party/re2/re2/perl_groups.cc +119 -0
  1051. data/third_party/re2/re2/pod_array.h +55 -0
  1052. data/third_party/re2/re2/prefilter.cc +710 -0
  1053. data/third_party/re2/re2/prefilter.h +108 -0
  1054. data/third_party/re2/re2/prefilter_tree.cc +407 -0
  1055. data/third_party/re2/re2/prefilter_tree.h +139 -0
  1056. data/third_party/re2/re2/prog.cc +988 -0
  1057. data/third_party/re2/re2/prog.h +436 -0
  1058. data/third_party/re2/re2/re2.cc +1362 -0
  1059. data/third_party/re2/re2/re2.h +1002 -0
  1060. data/third_party/re2/re2/regexp.cc +980 -0
  1061. data/third_party/re2/re2/regexp.h +659 -0
  1062. data/third_party/re2/re2/set.cc +154 -0
  1063. data/third_party/re2/re2/set.h +80 -0
  1064. data/third_party/re2/re2/simplify.cc +657 -0
  1065. data/third_party/re2/re2/sparse_array.h +392 -0
  1066. data/third_party/re2/re2/sparse_set.h +264 -0
  1067. data/third_party/re2/re2/stringpiece.cc +65 -0
  1068. data/third_party/re2/re2/stringpiece.h +210 -0
  1069. data/third_party/re2/re2/tostring.cc +351 -0
  1070. data/third_party/re2/re2/unicode_casefold.cc +582 -0
  1071. data/third_party/re2/re2/unicode_casefold.h +78 -0
  1072. data/third_party/re2/re2/unicode_groups.cc +6269 -0
  1073. data/third_party/re2/re2/unicode_groups.h +67 -0
  1074. data/third_party/re2/re2/walker-inl.h +246 -0
  1075. data/third_party/re2/util/benchmark.h +156 -0
  1076. data/third_party/re2/util/flags.h +26 -0
  1077. data/third_party/re2/util/logging.h +109 -0
  1078. data/third_party/re2/util/malloc_counter.h +19 -0
  1079. data/third_party/re2/util/mix.h +41 -0
  1080. data/third_party/re2/util/mutex.h +148 -0
  1081. data/third_party/re2/util/pcre.cc +1025 -0
  1082. data/third_party/re2/util/pcre.h +681 -0
  1083. data/third_party/re2/util/rune.cc +260 -0
  1084. data/third_party/re2/util/strutil.cc +149 -0
  1085. data/third_party/re2/util/strutil.h +21 -0
  1086. data/third_party/re2/util/test.h +50 -0
  1087. data/third_party/re2/util/utf.h +44 -0
  1088. data/third_party/re2/util/util.h +42 -0
  1089. data/third_party/upb/third_party/wyhash/wyhash.h +145 -0
  1090. data/third_party/upb/upb/decode.c +604 -511
  1091. data/third_party/upb/upb/decode.h +20 -1
  1092. data/third_party/upb/upb/decode.int.h +163 -0
  1093. data/third_party/upb/upb/decode_fast.c +1040 -0
  1094. data/third_party/upb/upb/decode_fast.h +126 -0
  1095. data/third_party/upb/upb/def.c +2178 -0
  1096. data/third_party/upb/upb/def.h +315 -0
  1097. data/third_party/upb/upb/def.hpp +439 -0
  1098. data/third_party/upb/upb/encode.c +311 -211
  1099. data/third_party/upb/upb/encode.h +27 -2
  1100. data/third_party/upb/upb/json_decode.c +1443 -0
  1101. data/third_party/upb/upb/json_decode.h +23 -0
  1102. data/third_party/upb/upb/json_encode.c +713 -0
  1103. data/third_party/upb/upb/json_encode.h +36 -0
  1104. data/third_party/upb/upb/msg.c +215 -70
  1105. data/third_party/upb/upb/msg.h +558 -14
  1106. data/third_party/upb/upb/port_def.inc +105 -63
  1107. data/third_party/upb/upb/port_undef.inc +10 -7
  1108. data/third_party/upb/upb/reflection.c +408 -0
  1109. data/third_party/upb/upb/reflection.h +168 -0
  1110. data/third_party/upb/upb/table.c +73 -269
  1111. data/third_party/upb/upb/table.int.h +25 -57
  1112. data/third_party/upb/upb/text_encode.c +421 -0
  1113. data/third_party/upb/upb/text_encode.h +38 -0
  1114. data/third_party/upb/upb/upb.c +138 -135
  1115. data/third_party/upb/upb/upb.h +119 -146
  1116. data/third_party/upb/upb/upb.hpp +88 -0
  1117. data/third_party/upb/upb/upb.int.h +29 -0
  1118. metadata +560 -166
  1119. data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +0 -938
  1120. data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +0 -528
  1121. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +0 -834
  1122. data/src/core/ext/filters/client_channel/parse_address.h +0 -53
  1123. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -484
  1124. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -68
  1125. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -348
  1126. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -123
  1127. data/src/core/ext/filters/client_channel/xds/xds_api.cc +0 -1906
  1128. data/src/core/ext/filters/client_channel/xds/xds_api.h +0 -280
  1129. data/src/core/ext/filters/client_channel/xds/xds_channel.h +0 -46
  1130. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +0 -106
  1131. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +0 -21
  1132. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -35
  1133. data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +0 -114
  1134. data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +0 -418
  1135. data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +0 -72
  1136. data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +0 -197
  1137. data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +0 -105
  1138. data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +0 -378
  1139. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +0 -53
  1140. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +0 -74
  1141. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +0 -218
  1142. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +0 -35
  1143. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +0 -69
  1144. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +0 -55
  1145. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +0 -305
  1146. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +0 -403
  1147. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +0 -1447
  1148. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +0 -112
  1149. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +0 -328
  1150. data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +0 -35
  1151. data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +0 -78
  1152. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +0 -313
  1153. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +0 -897
  1154. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +0 -96
  1155. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +0 -322
  1156. data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +0 -34
  1157. data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +0 -72
  1158. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +0 -197
  1159. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +0 -642
  1160. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +0 -172
  1161. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +0 -673
  1162. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +0 -36
  1163. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +0 -80
  1164. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +0 -152
  1165. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +0 -518
  1166. data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +0 -89
  1167. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +0 -129
  1168. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +0 -392
  1169. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +0 -53
  1170. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +0 -18
  1171. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -33
  1172. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +0 -91
  1173. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +0 -266
  1174. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +0 -112
  1175. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +0 -324
  1176. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +0 -92
  1177. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +0 -240
  1178. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +0 -53
  1179. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +0 -18
  1180. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -33
  1181. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +0 -145
  1182. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +0 -527
  1183. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +0 -43
  1184. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +0 -112
  1185. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +0 -109
  1186. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +0 -399
  1187. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +0 -53
  1188. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +0 -18
  1189. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -33
  1190. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +0 -815
  1191. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +0 -3032
  1192. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +0 -63
  1193. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +0 -199
  1194. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +0 -59
  1195. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +0 -134
  1196. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +0 -53
  1197. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +0 -228
  1198. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +0 -725
  1199. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +0 -316
  1200. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +0 -1132
  1201. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +0 -33
  1202. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +0 -65
  1203. data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +0 -51
  1204. data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +0 -125
  1205. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +0 -50
  1206. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +0 -54
  1207. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +0 -134
  1208. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +0 -63
  1209. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +0 -144
  1210. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +0 -53
  1211. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +0 -133
  1212. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +0 -88
  1213. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +0 -258
  1214. data/src/core/ext/upb-generated/envoy/type/percent.upb.c +0 -39
  1215. data/src/core/ext/upb-generated/envoy/type/percent.upb.h +0 -87
  1216. data/src/core/ext/upb-generated/envoy/type/range.upb.c +0 -50
  1217. data/src/core/ext/upb-generated/envoy/type/range.upb.h +0 -112
  1218. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +0 -62
  1219. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +0 -89
  1220. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +0 -249
  1221. data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +0 -17
  1222. data/src/core/lib/gprpp/map.h +0 -53
  1223. data/src/core/lib/security/transport/target_authority_table.cc +0 -75
  1224. data/src/core/lib/security/transport/target_authority_table.h +0 -40
  1225. data/src/core/lib/slice/slice_hash_table.h +0 -199
  1226. data/src/core/lib/slice/slice_weak_hash_table.h +0 -102
  1227. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +0 -129
  1228. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +0 -110
  1229. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +0 -274
  1230. data/third_party/upb/upb/generated_util.h +0 -105
  1231. data/third_party/upb/upb/port.c +0 -26
@@ -9,9 +9,9 @@
9
9
  #ifndef GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
10
10
  #define GOOGLE_PROTOBUF_DESCRIPTOR_PROTO_UPB_H_
11
11
 
12
- #include "upb/generated_util.h"
13
12
  #include "upb/msg.h"
14
13
  #include "upb/decode.h"
14
+ #include "upb/decode_fast.h"
15
15
  #include "upb/encode.h"
16
16
 
17
17
  #include "upb/port_def.inc"
@@ -157,29 +157,36 @@ typedef enum {
157
157
  /* google.protobuf.FileDescriptorSet */
158
158
 
159
159
  UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_new(upb_arena *arena) {
160
- return (google_protobuf_FileDescriptorSet *)upb_msg_new(&google_protobuf_FileDescriptorSet_msginit, arena);
160
+ return (google_protobuf_FileDescriptorSet *)_upb_msg_new(&google_protobuf_FileDescriptorSet_msginit, arena);
161
161
  }
162
162
  UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_parse(const char *buf, size_t size,
163
163
  upb_arena *arena) {
164
164
  google_protobuf_FileDescriptorSet *ret = google_protobuf_FileDescriptorSet_new(arena);
165
165
  return (ret && upb_decode(buf, size, ret, &google_protobuf_FileDescriptorSet_msginit, arena)) ? ret : NULL;
166
166
  }
167
+ UPB_INLINE google_protobuf_FileDescriptorSet *google_protobuf_FileDescriptorSet_parse_ex(const char *buf, size_t size,
168
+ upb_arena *arena, int options) {
169
+ google_protobuf_FileDescriptorSet *ret = google_protobuf_FileDescriptorSet_new(arena);
170
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_FileDescriptorSet_msginit, arena, options))
171
+ ? ret : NULL;
172
+ }
167
173
  UPB_INLINE char *google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet *msg, upb_arena *arena, size_t *len) {
168
174
  return upb_encode(msg, &google_protobuf_FileDescriptorSet_msginit, arena, len);
169
175
  }
170
176
 
177
+ UPB_INLINE bool google_protobuf_FileDescriptorSet_has_file(const google_protobuf_FileDescriptorSet *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0)); }
171
178
  UPB_INLINE const google_protobuf_FileDescriptorProto* const* google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet *msg, size_t *len) { return (const google_protobuf_FileDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
172
179
 
173
180
  UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet *msg, size_t *len) {
174
181
  return (google_protobuf_FileDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
175
182
  }
176
183
  UPB_INLINE google_protobuf_FileDescriptorProto** google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) {
177
- return (google_protobuf_FileDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
184
+ return (google_protobuf_FileDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
178
185
  }
179
186
  UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) {
180
- struct google_protobuf_FileDescriptorProto* sub = (struct google_protobuf_FileDescriptorProto*)upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
181
- bool ok = _upb_array_append_accessor(
182
- msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
187
+ struct google_protobuf_FileDescriptorProto* sub = (struct google_protobuf_FileDescriptorProto*)_upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
188
+ bool ok = _upb_array_append_accessor2(
189
+ msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
183
190
  if (!ok) return NULL;
184
191
  return sub;
185
192
  }
@@ -187,63 +194,73 @@ UPB_INLINE struct google_protobuf_FileDescriptorProto* google_protobuf_FileDescr
187
194
  /* google.protobuf.FileDescriptorProto */
188
195
 
189
196
  UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_new(upb_arena *arena) {
190
- return (google_protobuf_FileDescriptorProto *)upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
197
+ return (google_protobuf_FileDescriptorProto *)_upb_msg_new(&google_protobuf_FileDescriptorProto_msginit, arena);
191
198
  }
192
199
  UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_parse(const char *buf, size_t size,
193
200
  upb_arena *arena) {
194
201
  google_protobuf_FileDescriptorProto *ret = google_protobuf_FileDescriptorProto_new(arena);
195
202
  return (ret && upb_decode(buf, size, ret, &google_protobuf_FileDescriptorProto_msginit, arena)) ? ret : NULL;
196
203
  }
204
+ UPB_INLINE google_protobuf_FileDescriptorProto *google_protobuf_FileDescriptorProto_parse_ex(const char *buf, size_t size,
205
+ upb_arena *arena, int options) {
206
+ google_protobuf_FileDescriptorProto *ret = google_protobuf_FileDescriptorProto_new(arena);
207
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_FileDescriptorProto_msginit, arena, options))
208
+ ? ret : NULL;
209
+ }
197
210
  UPB_INLINE char *google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto *msg, upb_arena *arena, size_t *len) {
198
211
  return upb_encode(msg, &google_protobuf_FileDescriptorProto_msginit, arena, len);
199
212
  }
200
213
 
201
- UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 1); }
202
- UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
203
- UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 2); }
204
- UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
214
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
215
+ UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
216
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
217
+ UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview); }
205
218
  UPB_INLINE upb_strview const* google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(36, 72), len); }
219
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_message_type(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(40, 80)); }
206
220
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(40, 80), len); }
221
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_enum_type(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(44, 88)); }
207
222
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(44, 88), len); }
223
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_service(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(48, 96)); }
208
224
  UPB_INLINE const google_protobuf_ServiceDescriptorProto* const* google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_ServiceDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(48, 96), len); }
225
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_extension(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(52, 104)); }
209
226
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(52, 104), len); }
210
- UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 4); }
211
- UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_FileOptions*, UPB_SIZE(28, 56)); }
212
- UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 5); }
213
- UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_SourceCodeInfo*, UPB_SIZE(32, 64)); }
227
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto *msg) { return _upb_hasbit(msg, 3); }
228
+ UPB_INLINE const google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const google_protobuf_FileOptions*); }
229
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return _upb_hasbit(msg, 4); }
230
+ UPB_INLINE const google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(32, 64), const google_protobuf_SourceCodeInfo*); }
214
231
  UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(56, 112), len); }
215
232
  UPB_INLINE int32_t const* google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(60, 120), len); }
216
- UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto *msg) { return _upb_has_field(msg, 3); }
217
- UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)); }
233
+ UPB_INLINE bool google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto *msg) { return _upb_hasbit(msg, 5); }
234
+ UPB_INLINE upb_strview google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_strview); }
218
235
 
219
236
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
220
237
  _upb_sethas(msg, 1);
221
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
238
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
222
239
  }
223
240
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
224
241
  _upb_sethas(msg, 2);
225
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
242
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview) = value;
226
243
  }
227
244
  UPB_INLINE upb_strview* google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) {
228
245
  return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(36, 72), len);
229
246
  }
230
247
  UPB_INLINE upb_strview* google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
231
- return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(36, 72), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
248
+ return (upb_strview*)_upb_array_resize_accessor2(msg, UPB_SIZE(36, 72), len, UPB_SIZE(3, 4), arena);
232
249
  }
233
250
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) {
234
- return _upb_array_append_accessor(
235
- msg, UPB_SIZE(36, 72), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
251
+ return _upb_array_append_accessor2(msg, UPB_SIZE(36, 72), UPB_SIZE(3, 4), &val,
252
+ arena);
236
253
  }
237
254
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto *msg, size_t *len) {
238
255
  return (google_protobuf_DescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(40, 80), len);
239
256
  }
240
257
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
241
- return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(40, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
258
+ return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(40, 80), len, UPB_SIZE(2, 3), arena);
242
259
  }
243
260
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
244
- struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
245
- bool ok = _upb_array_append_accessor(
246
- msg, UPB_SIZE(40, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
261
+ struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
262
+ bool ok = _upb_array_append_accessor2(
263
+ msg, UPB_SIZE(40, 80), UPB_SIZE(2, 3), &sub, arena);
247
264
  if (!ok) return NULL;
248
265
  return sub;
249
266
  }
@@ -251,12 +268,12 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorP
251
268
  return (google_protobuf_EnumDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(44, 88), len);
252
269
  }
253
270
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
254
- return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(44, 88), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
271
+ return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(44, 88), len, UPB_SIZE(2, 3), arena);
255
272
  }
256
273
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
257
- struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
258
- bool ok = _upb_array_append_accessor(
259
- msg, UPB_SIZE(44, 88), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
274
+ struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
275
+ bool ok = _upb_array_append_accessor2(
276
+ msg, UPB_SIZE(44, 88), UPB_SIZE(2, 3), &sub, arena);
260
277
  if (!ok) return NULL;
261
278
  return sub;
262
279
  }
@@ -264,12 +281,12 @@ UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescript
264
281
  return (google_protobuf_ServiceDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(48, 96), len);
265
282
  }
266
283
  UPB_INLINE google_protobuf_ServiceDescriptorProto** google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
267
- return (google_protobuf_ServiceDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(48, 96), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
284
+ return (google_protobuf_ServiceDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(48, 96), len, UPB_SIZE(2, 3), arena);
268
285
  }
269
286
  UPB_INLINE struct google_protobuf_ServiceDescriptorProto* google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
270
- struct google_protobuf_ServiceDescriptorProto* sub = (struct google_protobuf_ServiceDescriptorProto*)upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
271
- bool ok = _upb_array_append_accessor(
272
- msg, UPB_SIZE(48, 96), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
287
+ struct google_protobuf_ServiceDescriptorProto* sub = (struct google_protobuf_ServiceDescriptorProto*)_upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
288
+ bool ok = _upb_array_append_accessor2(
289
+ msg, UPB_SIZE(48, 96), UPB_SIZE(2, 3), &sub, arena);
273
290
  if (!ok) return NULL;
274
291
  return sub;
275
292
  }
@@ -277,36 +294,36 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptor
277
294
  return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(52, 104), len);
278
295
  }
279
296
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
280
- return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(52, 104), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
297
+ return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(52, 104), len, UPB_SIZE(2, 3), arena);
281
298
  }
282
299
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
283
- struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
284
- bool ok = _upb_array_append_accessor(
285
- msg, UPB_SIZE(52, 104), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
300
+ struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
301
+ bool ok = _upb_array_append_accessor2(
302
+ msg, UPB_SIZE(52, 104), UPB_SIZE(2, 3), &sub, arena);
286
303
  if (!ok) return NULL;
287
304
  return sub;
288
305
  }
289
306
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) {
290
- _upb_sethas(msg, 4);
291
- UPB_FIELD_AT(msg, google_protobuf_FileOptions*, UPB_SIZE(28, 56)) = value;
307
+ _upb_sethas(msg, 3);
308
+ *UPB_PTR_AT(msg, UPB_SIZE(28, 56), google_protobuf_FileOptions*) = value;
292
309
  }
293
310
  UPB_INLINE struct google_protobuf_FileOptions* google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
294
311
  struct google_protobuf_FileOptions* sub = (struct google_protobuf_FileOptions*)google_protobuf_FileDescriptorProto_options(msg);
295
312
  if (sub == NULL) {
296
- sub = (struct google_protobuf_FileOptions*)upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
313
+ sub = (struct google_protobuf_FileOptions*)_upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
297
314
  if (!sub) return NULL;
298
315
  google_protobuf_FileDescriptorProto_set_options(msg, sub);
299
316
  }
300
317
  return sub;
301
318
  }
302
319
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) {
303
- _upb_sethas(msg, 5);
304
- UPB_FIELD_AT(msg, google_protobuf_SourceCodeInfo*, UPB_SIZE(32, 64)) = value;
320
+ _upb_sethas(msg, 4);
321
+ *UPB_PTR_AT(msg, UPB_SIZE(32, 64), google_protobuf_SourceCodeInfo*) = value;
305
322
  }
306
323
  UPB_INLINE struct google_protobuf_SourceCodeInfo* google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) {
307
324
  struct google_protobuf_SourceCodeInfo* sub = (struct google_protobuf_SourceCodeInfo*)google_protobuf_FileDescriptorProto_source_code_info(msg);
308
325
  if (sub == NULL) {
309
- sub = (struct google_protobuf_SourceCodeInfo*)upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
326
+ sub = (struct google_protobuf_SourceCodeInfo*)_upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
310
327
  if (!sub) return NULL;
311
328
  google_protobuf_FileDescriptorProto_set_source_code_info(msg, sub);
312
329
  }
@@ -316,68 +333,81 @@ UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_public_dependenc
316
333
  return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 112), len);
317
334
  }
318
335
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
319
- return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(56, 112), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
336
+ return (int32_t*)_upb_array_resize_accessor2(msg, UPB_SIZE(56, 112), len, 2, arena);
320
337
  }
321
338
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) {
322
- return _upb_array_append_accessor(
323
- msg, UPB_SIZE(56, 112), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
339
+ return _upb_array_append_accessor2(msg, UPB_SIZE(56, 112), 2, &val,
340
+ arena);
324
341
  }
325
342
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) {
326
343
  return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(60, 120), len);
327
344
  }
328
345
  UPB_INLINE int32_t* google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) {
329
- return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(60, 120), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
346
+ return (int32_t*)_upb_array_resize_accessor2(msg, UPB_SIZE(60, 120), len, 2, arena);
330
347
  }
331
348
  UPB_INLINE bool google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) {
332
- return _upb_array_append_accessor(
333
- msg, UPB_SIZE(60, 120), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
349
+ return _upb_array_append_accessor2(msg, UPB_SIZE(60, 120), 2, &val,
350
+ arena);
334
351
  }
335
352
  UPB_INLINE void google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_strview value) {
336
- _upb_sethas(msg, 3);
337
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)) = value;
353
+ _upb_sethas(msg, 5);
354
+ *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_strview) = value;
338
355
  }
339
356
 
340
357
  /* google.protobuf.DescriptorProto */
341
358
 
342
359
  UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_new(upb_arena *arena) {
343
- return (google_protobuf_DescriptorProto *)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
360
+ return (google_protobuf_DescriptorProto *)_upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
344
361
  }
345
362
  UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_parse(const char *buf, size_t size,
346
363
  upb_arena *arena) {
347
364
  google_protobuf_DescriptorProto *ret = google_protobuf_DescriptorProto_new(arena);
348
365
  return (ret && upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_msginit, arena)) ? ret : NULL;
349
366
  }
367
+ UPB_INLINE google_protobuf_DescriptorProto *google_protobuf_DescriptorProto_parse_ex(const char *buf, size_t size,
368
+ upb_arena *arena, int options) {
369
+ google_protobuf_DescriptorProto *ret = google_protobuf_DescriptorProto_new(arena);
370
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_msginit, arena, options))
371
+ ? ret : NULL;
372
+ }
350
373
  UPB_INLINE char *google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto *msg, upb_arena *arena, size_t *len) {
351
374
  return upb_encode(msg, &google_protobuf_DescriptorProto_msginit, arena, len);
352
375
  }
353
376
 
354
- UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto *msg) { return _upb_has_field(msg, 1); }
355
- UPB_INLINE upb_strview google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
377
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto *msg) { return _upb_hasbit(msg, 1); }
378
+ UPB_INLINE upb_strview google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
379
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_field(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(16, 32)); }
356
380
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
381
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_nested_type(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(20, 40)); }
357
382
  UPB_INLINE const google_protobuf_DescriptorProto* const* google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
383
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_enum_type(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(24, 48)); }
358
384
  UPB_INLINE const google_protobuf_EnumDescriptorProto* const* google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
385
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_extension_range(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(28, 56)); }
359
386
  UPB_INLINE const google_protobuf_DescriptorProto_ExtensionRange* const* google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto_ExtensionRange* const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len); }
387
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_extension(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(32, 64)); }
360
388
  UPB_INLINE const google_protobuf_FieldDescriptorProto* const* google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_FieldDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(32, 64), len); }
361
- UPB_INLINE bool google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto *msg) { return _upb_has_field(msg, 2); }
362
- UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_MessageOptions*, UPB_SIZE(12, 24)); }
389
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto *msg) { return _upb_hasbit(msg, 2); }
390
+ UPB_INLINE const google_protobuf_MessageOptions* google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const google_protobuf_MessageOptions*); }
391
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_oneof_decl(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(36, 72)); }
363
392
  UPB_INLINE const google_protobuf_OneofDescriptorProto* const* google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_OneofDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(36, 72), len); }
393
+ UPB_INLINE bool google_protobuf_DescriptorProto_has_reserved_range(const google_protobuf_DescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(40, 80)); }
364
394
  UPB_INLINE const google_protobuf_DescriptorProto_ReservedRange* const* google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto *msg, size_t *len) { return (const google_protobuf_DescriptorProto_ReservedRange* const*)_upb_array_accessor(msg, UPB_SIZE(40, 80), len); }
365
395
  UPB_INLINE upb_strview const* google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(44, 88), len); }
366
396
 
367
397
  UPB_INLINE void google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_strview value) {
368
398
  _upb_sethas(msg, 1);
369
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
399
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
370
400
  }
371
401
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto *msg, size_t *len) {
372
402
  return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
373
403
  }
374
404
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
375
- return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
405
+ return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(16, 32), len, UPB_SIZE(2, 3), arena);
376
406
  }
377
407
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
378
- struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
379
- bool ok = _upb_array_append_accessor(
380
- msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
408
+ struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
409
+ bool ok = _upb_array_append_accessor2(
410
+ msg, UPB_SIZE(16, 32), UPB_SIZE(2, 3), &sub, arena);
381
411
  if (!ok) return NULL;
382
412
  return sub;
383
413
  }
@@ -385,12 +415,12 @@ UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_mut
385
415
  return (google_protobuf_DescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
386
416
  }
387
417
  UPB_INLINE google_protobuf_DescriptorProto** google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
388
- return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
418
+ return (google_protobuf_DescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(20, 40), len, UPB_SIZE(2, 3), arena);
389
419
  }
390
420
  UPB_INLINE struct google_protobuf_DescriptorProto* google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
391
- struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
392
- bool ok = _upb_array_append_accessor(
393
- msg, UPB_SIZE(20, 40), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
421
+ struct google_protobuf_DescriptorProto* sub = (struct google_protobuf_DescriptorProto*)_upb_msg_new(&google_protobuf_DescriptorProto_msginit, arena);
422
+ bool ok = _upb_array_append_accessor2(
423
+ msg, UPB_SIZE(20, 40), UPB_SIZE(2, 3), &sub, arena);
394
424
  if (!ok) return NULL;
395
425
  return sub;
396
426
  }
@@ -398,12 +428,12 @@ UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto
398
428
  return (google_protobuf_EnumDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
399
429
  }
400
430
  UPB_INLINE google_protobuf_EnumDescriptorProto** google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
401
- return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
431
+ return (google_protobuf_EnumDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(24, 48), len, UPB_SIZE(2, 3), arena);
402
432
  }
403
433
  UPB_INLINE struct google_protobuf_EnumDescriptorProto* google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
404
- struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
405
- bool ok = _upb_array_append_accessor(
406
- msg, UPB_SIZE(24, 48), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
434
+ struct google_protobuf_EnumDescriptorProto* sub = (struct google_protobuf_EnumDescriptorProto*)_upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
435
+ bool ok = _upb_array_append_accessor2(
436
+ msg, UPB_SIZE(24, 48), UPB_SIZE(2, 3), &sub, arena);
407
437
  if (!ok) return NULL;
408
438
  return sub;
409
439
  }
@@ -411,12 +441,12 @@ UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_Desc
411
441
  return (google_protobuf_DescriptorProto_ExtensionRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
412
442
  }
413
443
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange** google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
414
- return (google_protobuf_DescriptorProto_ExtensionRange**)_upb_array_resize_accessor(msg, UPB_SIZE(28, 56), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
444
+ return (google_protobuf_DescriptorProto_ExtensionRange**)_upb_array_resize_accessor2(msg, UPB_SIZE(28, 56), len, UPB_SIZE(2, 3), arena);
415
445
  }
416
446
  UPB_INLINE struct google_protobuf_DescriptorProto_ExtensionRange* google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
417
- struct google_protobuf_DescriptorProto_ExtensionRange* sub = (struct google_protobuf_DescriptorProto_ExtensionRange*)upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
418
- bool ok = _upb_array_append_accessor(
419
- msg, UPB_SIZE(28, 56), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
447
+ struct google_protobuf_DescriptorProto_ExtensionRange* sub = (struct google_protobuf_DescriptorProto_ExtensionRange*)_upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
448
+ bool ok = _upb_array_append_accessor2(
449
+ msg, UPB_SIZE(28, 56), UPB_SIZE(2, 3), &sub, arena);
420
450
  if (!ok) return NULL;
421
451
  return sub;
422
452
  }
@@ -424,23 +454,23 @@ UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProt
424
454
  return (google_protobuf_FieldDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(32, 64), len);
425
455
  }
426
456
  UPB_INLINE google_protobuf_FieldDescriptorProto** google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
427
- return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(32, 64), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
457
+ return (google_protobuf_FieldDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(32, 64), len, UPB_SIZE(2, 3), arena);
428
458
  }
429
459
  UPB_INLINE struct google_protobuf_FieldDescriptorProto* google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
430
- struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
431
- bool ok = _upb_array_append_accessor(
432
- msg, UPB_SIZE(32, 64), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
460
+ struct google_protobuf_FieldDescriptorProto* sub = (struct google_protobuf_FieldDescriptorProto*)_upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
461
+ bool ok = _upb_array_append_accessor2(
462
+ msg, UPB_SIZE(32, 64), UPB_SIZE(2, 3), &sub, arena);
433
463
  if (!ok) return NULL;
434
464
  return sub;
435
465
  }
436
466
  UPB_INLINE void google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) {
437
467
  _upb_sethas(msg, 2);
438
- UPB_FIELD_AT(msg, google_protobuf_MessageOptions*, UPB_SIZE(12, 24)) = value;
468
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), google_protobuf_MessageOptions*) = value;
439
469
  }
440
470
  UPB_INLINE struct google_protobuf_MessageOptions* google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
441
471
  struct google_protobuf_MessageOptions* sub = (struct google_protobuf_MessageOptions*)google_protobuf_DescriptorProto_options(msg);
442
472
  if (sub == NULL) {
443
- sub = (struct google_protobuf_MessageOptions*)upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
473
+ sub = (struct google_protobuf_MessageOptions*)_upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
444
474
  if (!sub) return NULL;
445
475
  google_protobuf_DescriptorProto_set_options(msg, sub);
446
476
  }
@@ -450,12 +480,12 @@ UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProt
450
480
  return (google_protobuf_OneofDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(36, 72), len);
451
481
  }
452
482
  UPB_INLINE google_protobuf_OneofDescriptorProto** google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
453
- return (google_protobuf_OneofDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(36, 72), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
483
+ return (google_protobuf_OneofDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(36, 72), len, UPB_SIZE(2, 3), arena);
454
484
  }
455
485
  UPB_INLINE struct google_protobuf_OneofDescriptorProto* google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
456
- struct google_protobuf_OneofDescriptorProto* sub = (struct google_protobuf_OneofDescriptorProto*)upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
457
- bool ok = _upb_array_append_accessor(
458
- msg, UPB_SIZE(36, 72), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
486
+ struct google_protobuf_OneofDescriptorProto* sub = (struct google_protobuf_OneofDescriptorProto*)_upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
487
+ bool ok = _upb_array_append_accessor2(
488
+ msg, UPB_SIZE(36, 72), UPB_SIZE(2, 3), &sub, arena);
459
489
  if (!ok) return NULL;
460
490
  return sub;
461
491
  }
@@ -463,12 +493,12 @@ UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_Descr
463
493
  return (google_protobuf_DescriptorProto_ReservedRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(40, 80), len);
464
494
  }
465
495
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange** google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
466
- return (google_protobuf_DescriptorProto_ReservedRange**)_upb_array_resize_accessor(msg, UPB_SIZE(40, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
496
+ return (google_protobuf_DescriptorProto_ReservedRange**)_upb_array_resize_accessor2(msg, UPB_SIZE(40, 80), len, UPB_SIZE(2, 3), arena);
467
497
  }
468
498
  UPB_INLINE struct google_protobuf_DescriptorProto_ReservedRange* google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) {
469
- struct google_protobuf_DescriptorProto_ReservedRange* sub = (struct google_protobuf_DescriptorProto_ReservedRange*)upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
470
- bool ok = _upb_array_append_accessor(
471
- msg, UPB_SIZE(40, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
499
+ struct google_protobuf_DescriptorProto_ReservedRange* sub = (struct google_protobuf_DescriptorProto_ReservedRange*)_upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
500
+ bool ok = _upb_array_append_accessor2(
501
+ msg, UPB_SIZE(40, 80), UPB_SIZE(2, 3), &sub, arena);
472
502
  if (!ok) return NULL;
473
503
  return sub;
474
504
  }
@@ -476,50 +506,56 @@ UPB_INLINE upb_strview* google_protobuf_DescriptorProto_mutable_reserved_name(go
476
506
  return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(44, 88), len);
477
507
  }
478
508
  UPB_INLINE upb_strview* google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) {
479
- return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(44, 88), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
509
+ return (upb_strview*)_upb_array_resize_accessor2(msg, UPB_SIZE(44, 88), len, UPB_SIZE(3, 4), arena);
480
510
  }
481
511
  UPB_INLINE bool google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) {
482
- return _upb_array_append_accessor(
483
- msg, UPB_SIZE(44, 88), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
512
+ return _upb_array_append_accessor2(msg, UPB_SIZE(44, 88), UPB_SIZE(3, 4), &val,
513
+ arena);
484
514
  }
485
515
 
486
516
  /* google.protobuf.DescriptorProto.ExtensionRange */
487
517
 
488
518
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_new(upb_arena *arena) {
489
- return (google_protobuf_DescriptorProto_ExtensionRange *)upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
519
+ return (google_protobuf_DescriptorProto_ExtensionRange *)_upb_msg_new(&google_protobuf_DescriptorProto_ExtensionRange_msginit, arena);
490
520
  }
491
521
  UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_parse(const char *buf, size_t size,
492
522
  upb_arena *arena) {
493
523
  google_protobuf_DescriptorProto_ExtensionRange *ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
494
524
  return (ret && upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_ExtensionRange_msginit, arena)) ? ret : NULL;
495
525
  }
526
+ UPB_INLINE google_protobuf_DescriptorProto_ExtensionRange *google_protobuf_DescriptorProto_ExtensionRange_parse_ex(const char *buf, size_t size,
527
+ upb_arena *arena, int options) {
528
+ google_protobuf_DescriptorProto_ExtensionRange *ret = google_protobuf_DescriptorProto_ExtensionRange_new(arena);
529
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_ExtensionRange_msginit, arena, options))
530
+ ? ret : NULL;
531
+ }
496
532
  UPB_INLINE char *google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) {
497
533
  return upb_encode(msg, &google_protobuf_DescriptorProto_ExtensionRange_msginit, arena, len);
498
534
  }
499
535
 
500
- UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 1); }
501
- UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
502
- UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 2); }
503
- UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
504
- UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_has_field(msg, 3); }
505
- UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return UPB_FIELD_AT(msg, const google_protobuf_ExtensionRangeOptions*, UPB_SIZE(12, 16)); }
536
+ UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_hasbit(msg, 1); }
537
+ UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
538
+ UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_hasbit(msg, 2); }
539
+ UPB_INLINE int32_t google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
540
+ UPB_INLINE bool google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return _upb_hasbit(msg, 3); }
541
+ UPB_INLINE const google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 16), const google_protobuf_ExtensionRangeOptions*); }
506
542
 
507
543
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
508
544
  _upb_sethas(msg, 1);
509
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
545
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
510
546
  }
511
547
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) {
512
548
  _upb_sethas(msg, 2);
513
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
549
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
514
550
  }
515
551
  UPB_INLINE void google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) {
516
552
  _upb_sethas(msg, 3);
517
- UPB_FIELD_AT(msg, google_protobuf_ExtensionRangeOptions*, UPB_SIZE(12, 16)) = value;
553
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 16), google_protobuf_ExtensionRangeOptions*) = value;
518
554
  }
519
555
  UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) {
520
556
  struct google_protobuf_ExtensionRangeOptions* sub = (struct google_protobuf_ExtensionRangeOptions*)google_protobuf_DescriptorProto_ExtensionRange_options(msg);
521
557
  if (sub == NULL) {
522
- sub = (struct google_protobuf_ExtensionRangeOptions*)upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
558
+ sub = (struct google_protobuf_ExtensionRangeOptions*)_upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
523
559
  if (!sub) return NULL;
524
560
  google_protobuf_DescriptorProto_ExtensionRange_set_options(msg, sub);
525
561
  }
@@ -529,57 +565,70 @@ UPB_INLINE struct google_protobuf_ExtensionRangeOptions* google_protobuf_Descrip
529
565
  /* google.protobuf.DescriptorProto.ReservedRange */
530
566
 
531
567
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_new(upb_arena *arena) {
532
- return (google_protobuf_DescriptorProto_ReservedRange *)upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
568
+ return (google_protobuf_DescriptorProto_ReservedRange *)_upb_msg_new(&google_protobuf_DescriptorProto_ReservedRange_msginit, arena);
533
569
  }
534
570
  UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_parse(const char *buf, size_t size,
535
571
  upb_arena *arena) {
536
572
  google_protobuf_DescriptorProto_ReservedRange *ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
537
573
  return (ret && upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_ReservedRange_msginit, arena)) ? ret : NULL;
538
574
  }
575
+ UPB_INLINE google_protobuf_DescriptorProto_ReservedRange *google_protobuf_DescriptorProto_ReservedRange_parse_ex(const char *buf, size_t size,
576
+ upb_arena *arena, int options) {
577
+ google_protobuf_DescriptorProto_ReservedRange *ret = google_protobuf_DescriptorProto_ReservedRange_new(arena);
578
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_DescriptorProto_ReservedRange_msginit, arena, options))
579
+ ? ret : NULL;
580
+ }
539
581
  UPB_INLINE char *google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange *msg, upb_arena *arena, size_t *len) {
540
582
  return upb_encode(msg, &google_protobuf_DescriptorProto_ReservedRange_msginit, arena, len);
541
583
  }
542
584
 
543
- UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_has_field(msg, 1); }
544
- UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
545
- UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_has_field(msg, 2); }
546
- UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
585
+ UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_hasbit(msg, 1); }
586
+ UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
587
+ UPB_INLINE bool google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return _upb_hasbit(msg, 2); }
588
+ UPB_INLINE int32_t google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
547
589
 
548
590
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
549
591
  _upb_sethas(msg, 1);
550
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
592
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
551
593
  }
552
594
  UPB_INLINE void google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) {
553
595
  _upb_sethas(msg, 2);
554
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
596
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
555
597
  }
556
598
 
557
599
  /* google.protobuf.ExtensionRangeOptions */
558
600
 
559
601
  UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_new(upb_arena *arena) {
560
- return (google_protobuf_ExtensionRangeOptions *)upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
602
+ return (google_protobuf_ExtensionRangeOptions *)_upb_msg_new(&google_protobuf_ExtensionRangeOptions_msginit, arena);
561
603
  }
562
604
  UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_parse(const char *buf, size_t size,
563
605
  upb_arena *arena) {
564
606
  google_protobuf_ExtensionRangeOptions *ret = google_protobuf_ExtensionRangeOptions_new(arena);
565
607
  return (ret && upb_decode(buf, size, ret, &google_protobuf_ExtensionRangeOptions_msginit, arena)) ? ret : NULL;
566
608
  }
609
+ UPB_INLINE google_protobuf_ExtensionRangeOptions *google_protobuf_ExtensionRangeOptions_parse_ex(const char *buf, size_t size,
610
+ upb_arena *arena, int options) {
611
+ google_protobuf_ExtensionRangeOptions *ret = google_protobuf_ExtensionRangeOptions_new(arena);
612
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_ExtensionRangeOptions_msginit, arena, options))
613
+ ? ret : NULL;
614
+ }
567
615
  UPB_INLINE char *google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena, size_t *len) {
568
616
  return upb_encode(msg, &google_protobuf_ExtensionRangeOptions_msginit, arena, len);
569
617
  }
570
618
 
619
+ UPB_INLINE bool google_protobuf_ExtensionRangeOptions_has_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0)); }
571
620
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
572
621
 
573
622
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t *len) {
574
623
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
575
624
  }
576
625
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) {
577
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
626
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
578
627
  }
579
628
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) {
580
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
581
- bool ok = _upb_array_append_accessor(
582
- msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
629
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
630
+ bool ok = _upb_array_append_accessor2(
631
+ msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
583
632
  if (!ok) return NULL;
584
633
  return sub;
585
634
  }
@@ -587,125 +636,137 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_Extension
587
636
  /* google.protobuf.FieldDescriptorProto */
588
637
 
589
638
  UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_new(upb_arena *arena) {
590
- return (google_protobuf_FieldDescriptorProto *)upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
639
+ return (google_protobuf_FieldDescriptorProto *)_upb_msg_new(&google_protobuf_FieldDescriptorProto_msginit, arena);
591
640
  }
592
641
  UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_parse(const char *buf, size_t size,
593
642
  upb_arena *arena) {
594
643
  google_protobuf_FieldDescriptorProto *ret = google_protobuf_FieldDescriptorProto_new(arena);
595
644
  return (ret && upb_decode(buf, size, ret, &google_protobuf_FieldDescriptorProto_msginit, arena)) ? ret : NULL;
596
645
  }
646
+ UPB_INLINE google_protobuf_FieldDescriptorProto *google_protobuf_FieldDescriptorProto_parse_ex(const char *buf, size_t size,
647
+ upb_arena *arena, int options) {
648
+ google_protobuf_FieldDescriptorProto *ret = google_protobuf_FieldDescriptorProto_new(arena);
649
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_FieldDescriptorProto_msginit, arena, options))
650
+ ? ret : NULL;
651
+ }
597
652
  UPB_INLINE char *google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto *msg, upb_arena *arena, size_t *len) {
598
653
  return upb_encode(msg, &google_protobuf_FieldDescriptorProto_msginit, arena, len);
599
654
  }
600
655
 
601
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 6); }
602
- UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 40)); }
603
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 7); }
604
- UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 56)); }
605
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 3); }
606
- UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(24, 24)); }
607
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 1); }
608
- UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
609
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 2); }
610
- UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(16, 16)); }
611
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 8); }
612
- UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 72)); }
613
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 9); }
614
- UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 88)); }
615
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 11); }
616
- UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_FieldOptions*, UPB_SIZE(76, 120)); }
617
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 4); }
618
- UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(28, 28)); }
619
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 10); }
620
- UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 104)); }
621
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) { return _upb_has_field(msg, 5); }
622
- UPB_INLINE bool google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(32, 32)); }
656
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
657
+ UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), upb_strview); }
658
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
659
+ UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(32, 40), upb_strview); }
660
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 3); }
661
+ UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), int32_t); }
662
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 4); }
663
+ UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
664
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 5); }
665
+ UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
666
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 6); }
667
+ UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(40, 56), upb_strview); }
668
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 7); }
669
+ UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(48, 72), upb_strview); }
670
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 8); }
671
+ UPB_INLINE const google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(64, 104), const google_protobuf_FieldOptions*); }
672
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 9); }
673
+ UPB_INLINE int32_t google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int32_t); }
674
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 10); }
675
+ UPB_INLINE upb_strview google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(56, 88), upb_strview); }
676
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) { return _upb_hasbit(msg, 11); }
677
+ UPB_INLINE bool google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 20), bool); }
623
678
 
624
679
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
625
- _upb_sethas(msg, 6);
626
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 40)) = value;
680
+ _upb_sethas(msg, 1);
681
+ *UPB_PTR_AT(msg, UPB_SIZE(24, 24), upb_strview) = value;
627
682
  }
628
683
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
629
- _upb_sethas(msg, 7);
630
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 56)) = value;
684
+ _upb_sethas(msg, 2);
685
+ *UPB_PTR_AT(msg, UPB_SIZE(32, 40), upb_strview) = value;
631
686
  }
632
687
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
633
688
  _upb_sethas(msg, 3);
634
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(24, 24)) = value;
689
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 12), int32_t) = value;
635
690
  }
636
691
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
637
- _upb_sethas(msg, 1);
638
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
692
+ _upb_sethas(msg, 4);
693
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
639
694
  }
640
695
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
641
- _upb_sethas(msg, 2);
642
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(16, 16)) = value;
696
+ _upb_sethas(msg, 5);
697
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
643
698
  }
644
699
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
645
- _upb_sethas(msg, 8);
646
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 72)) = value;
700
+ _upb_sethas(msg, 6);
701
+ *UPB_PTR_AT(msg, UPB_SIZE(40, 56), upb_strview) = value;
647
702
  }
648
703
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
649
- _upb_sethas(msg, 9);
650
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 88)) = value;
704
+ _upb_sethas(msg, 7);
705
+ *UPB_PTR_AT(msg, UPB_SIZE(48, 72), upb_strview) = value;
651
706
  }
652
707
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) {
653
- _upb_sethas(msg, 11);
654
- UPB_FIELD_AT(msg, google_protobuf_FieldOptions*, UPB_SIZE(76, 120)) = value;
708
+ _upb_sethas(msg, 8);
709
+ *UPB_PTR_AT(msg, UPB_SIZE(64, 104), google_protobuf_FieldOptions*) = value;
655
710
  }
656
711
  UPB_INLINE struct google_protobuf_FieldOptions* google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) {
657
712
  struct google_protobuf_FieldOptions* sub = (struct google_protobuf_FieldOptions*)google_protobuf_FieldDescriptorProto_options(msg);
658
713
  if (sub == NULL) {
659
- sub = (struct google_protobuf_FieldOptions*)upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
714
+ sub = (struct google_protobuf_FieldOptions*)_upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
660
715
  if (!sub) return NULL;
661
716
  google_protobuf_FieldDescriptorProto_set_options(msg, sub);
662
717
  }
663
718
  return sub;
664
719
  }
665
720
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) {
666
- _upb_sethas(msg, 4);
667
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(28, 28)) = value;
721
+ _upb_sethas(msg, 9);
722
+ *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int32_t) = value;
668
723
  }
669
724
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) {
670
725
  _upb_sethas(msg, 10);
671
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 104)) = value;
726
+ *UPB_PTR_AT(msg, UPB_SIZE(56, 88), upb_strview) = value;
672
727
  }
673
728
  UPB_INLINE void google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) {
674
- _upb_sethas(msg, 5);
675
- UPB_FIELD_AT(msg, bool, UPB_SIZE(32, 32)) = value;
729
+ _upb_sethas(msg, 11);
730
+ *UPB_PTR_AT(msg, UPB_SIZE(20, 20), bool) = value;
676
731
  }
677
732
 
678
733
  /* google.protobuf.OneofDescriptorProto */
679
734
 
680
735
  UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_new(upb_arena *arena) {
681
- return (google_protobuf_OneofDescriptorProto *)upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
736
+ return (google_protobuf_OneofDescriptorProto *)_upb_msg_new(&google_protobuf_OneofDescriptorProto_msginit, arena);
682
737
  }
683
738
  UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_parse(const char *buf, size_t size,
684
739
  upb_arena *arena) {
685
740
  google_protobuf_OneofDescriptorProto *ret = google_protobuf_OneofDescriptorProto_new(arena);
686
741
  return (ret && upb_decode(buf, size, ret, &google_protobuf_OneofDescriptorProto_msginit, arena)) ? ret : NULL;
687
742
  }
743
+ UPB_INLINE google_protobuf_OneofDescriptorProto *google_protobuf_OneofDescriptorProto_parse_ex(const char *buf, size_t size,
744
+ upb_arena *arena, int options) {
745
+ google_protobuf_OneofDescriptorProto *ret = google_protobuf_OneofDescriptorProto_new(arena);
746
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_OneofDescriptorProto_msginit, arena, options))
747
+ ? ret : NULL;
748
+ }
688
749
  UPB_INLINE char *google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto *msg, upb_arena *arena, size_t *len) {
689
750
  return upb_encode(msg, &google_protobuf_OneofDescriptorProto_msginit, arena, len);
690
751
  }
691
752
 
692
- UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto *msg) { return _upb_has_field(msg, 1); }
693
- UPB_INLINE upb_strview google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
694
- UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto *msg) { return _upb_has_field(msg, 2); }
695
- UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_OneofOptions*, UPB_SIZE(12, 24)); }
753
+ UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
754
+ UPB_INLINE upb_strview google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
755
+ UPB_INLINE bool google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
756
+ UPB_INLINE const google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const google_protobuf_OneofOptions*); }
696
757
 
697
758
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_strview value) {
698
759
  _upb_sethas(msg, 1);
699
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
760
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
700
761
  }
701
762
  UPB_INLINE void google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) {
702
763
  _upb_sethas(msg, 2);
703
- UPB_FIELD_AT(msg, google_protobuf_OneofOptions*, UPB_SIZE(12, 24)) = value;
764
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), google_protobuf_OneofOptions*) = value;
704
765
  }
705
766
  UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) {
706
767
  struct google_protobuf_OneofOptions* sub = (struct google_protobuf_OneofOptions*)google_protobuf_OneofDescriptorProto_options(msg);
707
768
  if (sub == NULL) {
708
- sub = (struct google_protobuf_OneofOptions*)upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
769
+ sub = (struct google_protobuf_OneofOptions*)_upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
709
770
  if (!sub) return NULL;
710
771
  google_protobuf_OneofDescriptorProto_set_options(msg, sub);
711
772
  }
@@ -715,50 +776,58 @@ UPB_INLINE struct google_protobuf_OneofOptions* google_protobuf_OneofDescriptorP
715
776
  /* google.protobuf.EnumDescriptorProto */
716
777
 
717
778
  UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_new(upb_arena *arena) {
718
- return (google_protobuf_EnumDescriptorProto *)upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
779
+ return (google_protobuf_EnumDescriptorProto *)_upb_msg_new(&google_protobuf_EnumDescriptorProto_msginit, arena);
719
780
  }
720
781
  UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_parse(const char *buf, size_t size,
721
782
  upb_arena *arena) {
722
783
  google_protobuf_EnumDescriptorProto *ret = google_protobuf_EnumDescriptorProto_new(arena);
723
784
  return (ret && upb_decode(buf, size, ret, &google_protobuf_EnumDescriptorProto_msginit, arena)) ? ret : NULL;
724
785
  }
786
+ UPB_INLINE google_protobuf_EnumDescriptorProto *google_protobuf_EnumDescriptorProto_parse_ex(const char *buf, size_t size,
787
+ upb_arena *arena, int options) {
788
+ google_protobuf_EnumDescriptorProto *ret = google_protobuf_EnumDescriptorProto_new(arena);
789
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_EnumDescriptorProto_msginit, arena, options))
790
+ ? ret : NULL;
791
+ }
725
792
  UPB_INLINE char *google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto *msg, upb_arena *arena, size_t *len) {
726
793
  return upb_encode(msg, &google_protobuf_EnumDescriptorProto_msginit, arena, len);
727
794
  }
728
795
 
729
- UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_field(msg, 1); }
730
- UPB_INLINE upb_strview google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
796
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
797
+ UPB_INLINE upb_strview google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
798
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_value(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(16, 32)); }
731
799
  UPB_INLINE const google_protobuf_EnumValueDescriptorProto* const* google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumValueDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
732
- UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_field(msg, 2); }
733
- UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_EnumOptions*, UPB_SIZE(12, 24)); }
800
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
801
+ UPB_INLINE const google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const google_protobuf_EnumOptions*); }
802
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_has_reserved_range(const google_protobuf_EnumDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(20, 40)); }
734
803
  UPB_INLINE const google_protobuf_EnumDescriptorProto_EnumReservedRange* const* google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (const google_protobuf_EnumDescriptorProto_EnumReservedRange* const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
735
804
  UPB_INLINE upb_strview const* google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
736
805
 
737
806
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_strview value) {
738
807
  _upb_sethas(msg, 1);
739
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
808
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
740
809
  }
741
810
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto *msg, size_t *len) {
742
811
  return (google_protobuf_EnumValueDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
743
812
  }
744
813
  UPB_INLINE google_protobuf_EnumValueDescriptorProto** google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
745
- return (google_protobuf_EnumValueDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
814
+ return (google_protobuf_EnumValueDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(16, 32), len, UPB_SIZE(2, 3), arena);
746
815
  }
747
816
  UPB_INLINE struct google_protobuf_EnumValueDescriptorProto* google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
748
- struct google_protobuf_EnumValueDescriptorProto* sub = (struct google_protobuf_EnumValueDescriptorProto*)upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
749
- bool ok = _upb_array_append_accessor(
750
- msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
817
+ struct google_protobuf_EnumValueDescriptorProto* sub = (struct google_protobuf_EnumValueDescriptorProto*)_upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
818
+ bool ok = _upb_array_append_accessor2(
819
+ msg, UPB_SIZE(16, 32), UPB_SIZE(2, 3), &sub, arena);
751
820
  if (!ok) return NULL;
752
821
  return sub;
753
822
  }
754
823
  UPB_INLINE void google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) {
755
824
  _upb_sethas(msg, 2);
756
- UPB_FIELD_AT(msg, google_protobuf_EnumOptions*, UPB_SIZE(12, 24)) = value;
825
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), google_protobuf_EnumOptions*) = value;
757
826
  }
758
827
  UPB_INLINE struct google_protobuf_EnumOptions* google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
759
828
  struct google_protobuf_EnumOptions* sub = (struct google_protobuf_EnumOptions*)google_protobuf_EnumDescriptorProto_options(msg);
760
829
  if (sub == NULL) {
761
- sub = (struct google_protobuf_EnumOptions*)upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
830
+ sub = (struct google_protobuf_EnumOptions*)_upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
762
831
  if (!sub) return NULL;
763
832
  google_protobuf_EnumDescriptorProto_set_options(msg, sub);
764
833
  }
@@ -768,12 +837,12 @@ UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protob
768
837
  return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
769
838
  }
770
839
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange** google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
771
- return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
840
+ return (google_protobuf_EnumDescriptorProto_EnumReservedRange**)_upb_array_resize_accessor2(msg, UPB_SIZE(20, 40), len, UPB_SIZE(2, 3), arena);
772
841
  }
773
842
  UPB_INLINE struct google_protobuf_EnumDescriptorProto_EnumReservedRange* google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) {
774
- struct google_protobuf_EnumDescriptorProto_EnumReservedRange* sub = (struct google_protobuf_EnumDescriptorProto_EnumReservedRange*)upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
775
- bool ok = _upb_array_append_accessor(
776
- msg, UPB_SIZE(20, 40), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
843
+ struct google_protobuf_EnumDescriptorProto_EnumReservedRange* sub = (struct google_protobuf_EnumDescriptorProto_EnumReservedRange*)_upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
844
+ bool ok = _upb_array_append_accessor2(
845
+ msg, UPB_SIZE(20, 40), UPB_SIZE(2, 3), &sub, arena);
777
846
  if (!ok) return NULL;
778
847
  return sub;
779
848
  }
@@ -781,78 +850,90 @@ UPB_INLINE upb_strview* google_protobuf_EnumDescriptorProto_mutable_reserved_nam
781
850
  return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
782
851
  }
783
852
  UPB_INLINE upb_strview* google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) {
784
- return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
853
+ return (upb_strview*)_upb_array_resize_accessor2(msg, UPB_SIZE(24, 48), len, UPB_SIZE(3, 4), arena);
785
854
  }
786
855
  UPB_INLINE bool google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) {
787
- return _upb_array_append_accessor(
788
- msg, UPB_SIZE(24, 48), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
856
+ return _upb_array_append_accessor2(msg, UPB_SIZE(24, 48), UPB_SIZE(3, 4), &val,
857
+ arena);
789
858
  }
790
859
 
791
860
  /* google.protobuf.EnumDescriptorProto.EnumReservedRange */
792
861
 
793
862
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_new(upb_arena *arena) {
794
- return (google_protobuf_EnumDescriptorProto_EnumReservedRange *)upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
863
+ return (google_protobuf_EnumDescriptorProto_EnumReservedRange *)_upb_msg_new(&google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena);
795
864
  }
796
865
  UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_parse(const char *buf, size_t size,
797
866
  upb_arena *arena) {
798
867
  google_protobuf_EnumDescriptorProto_EnumReservedRange *ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
799
868
  return (ret && upb_decode(buf, size, ret, &google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena)) ? ret : NULL;
800
869
  }
870
+ UPB_INLINE google_protobuf_EnumDescriptorProto_EnumReservedRange *google_protobuf_EnumDescriptorProto_EnumReservedRange_parse_ex(const char *buf, size_t size,
871
+ upb_arena *arena, int options) {
872
+ google_protobuf_EnumDescriptorProto_EnumReservedRange *ret = google_protobuf_EnumDescriptorProto_EnumReservedRange_new(arena);
873
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena, options))
874
+ ? ret : NULL;
875
+ }
801
876
  UPB_INLINE char *google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, upb_arena *arena, size_t *len) {
802
877
  return upb_encode(msg, &google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit, arena, len);
803
878
  }
804
879
 
805
- UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_has_field(msg, 1); }
806
- UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
807
- UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_has_field(msg, 2); }
808
- UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
880
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_hasbit(msg, 1); }
881
+ UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
882
+ UPB_INLINE bool google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return _upb_hasbit(msg, 2); }
883
+ UPB_INLINE int32_t google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
809
884
 
810
885
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
811
886
  _upb_sethas(msg, 1);
812
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
887
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
813
888
  }
814
889
  UPB_INLINE void google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) {
815
890
  _upb_sethas(msg, 2);
816
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
891
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
817
892
  }
818
893
 
819
894
  /* google.protobuf.EnumValueDescriptorProto */
820
895
 
821
896
  UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_new(upb_arena *arena) {
822
- return (google_protobuf_EnumValueDescriptorProto *)upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
897
+ return (google_protobuf_EnumValueDescriptorProto *)_upb_msg_new(&google_protobuf_EnumValueDescriptorProto_msginit, arena);
823
898
  }
824
899
  UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_parse(const char *buf, size_t size,
825
900
  upb_arena *arena) {
826
901
  google_protobuf_EnumValueDescriptorProto *ret = google_protobuf_EnumValueDescriptorProto_new(arena);
827
902
  return (ret && upb_decode(buf, size, ret, &google_protobuf_EnumValueDescriptorProto_msginit, arena)) ? ret : NULL;
828
903
  }
904
+ UPB_INLINE google_protobuf_EnumValueDescriptorProto *google_protobuf_EnumValueDescriptorProto_parse_ex(const char *buf, size_t size,
905
+ upb_arena *arena, int options) {
906
+ google_protobuf_EnumValueDescriptorProto *ret = google_protobuf_EnumValueDescriptorProto_new(arena);
907
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_EnumValueDescriptorProto_msginit, arena, options))
908
+ ? ret : NULL;
909
+ }
829
910
  UPB_INLINE char *google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena, size_t *len) {
830
911
  return upb_encode(msg, &google_protobuf_EnumValueDescriptorProto_msginit, arena, len);
831
912
  }
832
913
 
833
- UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 2); }
834
- UPB_INLINE upb_strview google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)); }
835
- UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 1); }
836
- UPB_INLINE int32_t google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
837
- UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_has_field(msg, 3); }
838
- UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_EnumValueOptions*, UPB_SIZE(16, 24)); }
914
+ UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
915
+ UPB_INLINE upb_strview google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), upb_strview); }
916
+ UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
917
+ UPB_INLINE int32_t google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
918
+ UPB_INLINE bool google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto *msg) { return _upb_hasbit(msg, 3); }
919
+ UPB_INLINE const google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 24), const google_protobuf_EnumValueOptions*); }
839
920
 
840
921
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_strview value) {
841
- _upb_sethas(msg, 2);
842
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(8, 8)) = value;
922
+ _upb_sethas(msg, 1);
923
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), upb_strview) = value;
843
924
  }
844
925
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) {
845
- _upb_sethas(msg, 1);
846
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
926
+ _upb_sethas(msg, 2);
927
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
847
928
  }
848
929
  UPB_INLINE void google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) {
849
930
  _upb_sethas(msg, 3);
850
- UPB_FIELD_AT(msg, google_protobuf_EnumValueOptions*, UPB_SIZE(16, 24)) = value;
931
+ *UPB_PTR_AT(msg, UPB_SIZE(16, 24), google_protobuf_EnumValueOptions*) = value;
851
932
  }
852
933
  UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) {
853
934
  struct google_protobuf_EnumValueOptions* sub = (struct google_protobuf_EnumValueOptions*)google_protobuf_EnumValueDescriptorProto_options(msg);
854
935
  if (sub == NULL) {
855
- sub = (struct google_protobuf_EnumValueOptions*)upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
936
+ sub = (struct google_protobuf_EnumValueOptions*)_upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
856
937
  if (!sub) return NULL;
857
938
  google_protobuf_EnumValueDescriptorProto_set_options(msg, sub);
858
939
  }
@@ -862,48 +943,55 @@ UPB_INLINE struct google_protobuf_EnumValueOptions* google_protobuf_EnumValueDes
862
943
  /* google.protobuf.ServiceDescriptorProto */
863
944
 
864
945
  UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_new(upb_arena *arena) {
865
- return (google_protobuf_ServiceDescriptorProto *)upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
946
+ return (google_protobuf_ServiceDescriptorProto *)_upb_msg_new(&google_protobuf_ServiceDescriptorProto_msginit, arena);
866
947
  }
867
948
  UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_parse(const char *buf, size_t size,
868
949
  upb_arena *arena) {
869
950
  google_protobuf_ServiceDescriptorProto *ret = google_protobuf_ServiceDescriptorProto_new(arena);
870
951
  return (ret && upb_decode(buf, size, ret, &google_protobuf_ServiceDescriptorProto_msginit, arena)) ? ret : NULL;
871
952
  }
953
+ UPB_INLINE google_protobuf_ServiceDescriptorProto *google_protobuf_ServiceDescriptorProto_parse_ex(const char *buf, size_t size,
954
+ upb_arena *arena, int options) {
955
+ google_protobuf_ServiceDescriptorProto *ret = google_protobuf_ServiceDescriptorProto_new(arena);
956
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_ServiceDescriptorProto_msginit, arena, options))
957
+ ? ret : NULL;
958
+ }
872
959
  UPB_INLINE char *google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena, size_t *len) {
873
960
  return upb_encode(msg, &google_protobuf_ServiceDescriptorProto_msginit, arena, len);
874
961
  }
875
962
 
876
- UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_has_field(msg, 1); }
877
- UPB_INLINE upb_strview google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
963
+ UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
964
+ UPB_INLINE upb_strview google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
965
+ UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_method(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(16, 32)); }
878
966
  UPB_INLINE const google_protobuf_MethodDescriptorProto* const* google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto *msg, size_t *len) { return (const google_protobuf_MethodDescriptorProto* const*)_upb_array_accessor(msg, UPB_SIZE(16, 32), len); }
879
- UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_has_field(msg, 2); }
880
- UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_ServiceOptions*, UPB_SIZE(12, 24)); }
967
+ UPB_INLINE bool google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
968
+ UPB_INLINE const google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), const google_protobuf_ServiceOptions*); }
881
969
 
882
970
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_strview value) {
883
971
  _upb_sethas(msg, 1);
884
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
972
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
885
973
  }
886
974
  UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto *msg, size_t *len) {
887
975
  return (google_protobuf_MethodDescriptorProto**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 32), len);
888
976
  }
889
977
  UPB_INLINE google_protobuf_MethodDescriptorProto** google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) {
890
- return (google_protobuf_MethodDescriptorProto**)_upb_array_resize_accessor(msg, UPB_SIZE(16, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
978
+ return (google_protobuf_MethodDescriptorProto**)_upb_array_resize_accessor2(msg, UPB_SIZE(16, 32), len, UPB_SIZE(2, 3), arena);
891
979
  }
892
980
  UPB_INLINE struct google_protobuf_MethodDescriptorProto* google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) {
893
- struct google_protobuf_MethodDescriptorProto* sub = (struct google_protobuf_MethodDescriptorProto*)upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
894
- bool ok = _upb_array_append_accessor(
895
- msg, UPB_SIZE(16, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
981
+ struct google_protobuf_MethodDescriptorProto* sub = (struct google_protobuf_MethodDescriptorProto*)_upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
982
+ bool ok = _upb_array_append_accessor2(
983
+ msg, UPB_SIZE(16, 32), UPB_SIZE(2, 3), &sub, arena);
896
984
  if (!ok) return NULL;
897
985
  return sub;
898
986
  }
899
987
  UPB_INLINE void google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) {
900
988
  _upb_sethas(msg, 2);
901
- UPB_FIELD_AT(msg, google_protobuf_ServiceOptions*, UPB_SIZE(12, 24)) = value;
989
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), google_protobuf_ServiceOptions*) = value;
902
990
  }
903
991
  UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) {
904
992
  struct google_protobuf_ServiceOptions* sub = (struct google_protobuf_ServiceOptions*)google_protobuf_ServiceDescriptorProto_options(msg);
905
993
  if (sub == NULL) {
906
- sub = (struct google_protobuf_ServiceOptions*)upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
994
+ sub = (struct google_protobuf_ServiceOptions*)_upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
907
995
  if (!sub) return NULL;
908
996
  google_protobuf_ServiceDescriptorProto_set_options(msg, sub);
909
997
  }
@@ -913,210 +1001,223 @@ UPB_INLINE struct google_protobuf_ServiceOptions* google_protobuf_ServiceDescrip
913
1001
  /* google.protobuf.MethodDescriptorProto */
914
1002
 
915
1003
  UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_new(upb_arena *arena) {
916
- return (google_protobuf_MethodDescriptorProto *)upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
1004
+ return (google_protobuf_MethodDescriptorProto *)_upb_msg_new(&google_protobuf_MethodDescriptorProto_msginit, arena);
917
1005
  }
918
1006
  UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_parse(const char *buf, size_t size,
919
1007
  upb_arena *arena) {
920
1008
  google_protobuf_MethodDescriptorProto *ret = google_protobuf_MethodDescriptorProto_new(arena);
921
1009
  return (ret && upb_decode(buf, size, ret, &google_protobuf_MethodDescriptorProto_msginit, arena)) ? ret : NULL;
922
1010
  }
1011
+ UPB_INLINE google_protobuf_MethodDescriptorProto *google_protobuf_MethodDescriptorProto_parse_ex(const char *buf, size_t size,
1012
+ upb_arena *arena, int options) {
1013
+ google_protobuf_MethodDescriptorProto *ret = google_protobuf_MethodDescriptorProto_new(arena);
1014
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_MethodDescriptorProto_msginit, arena, options))
1015
+ ? ret : NULL;
1016
+ }
923
1017
  UPB_INLINE char *google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto *msg, upb_arena *arena, size_t *len) {
924
1018
  return upb_encode(msg, &google_protobuf_MethodDescriptorProto_msginit, arena, len);
925
1019
  }
926
1020
 
927
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 3); }
928
- UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
929
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 4); }
930
- UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
931
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 5); }
932
- UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)); }
933
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 6); }
934
- UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, const google_protobuf_MethodOptions*, UPB_SIZE(28, 56)); }
935
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 1); }
936
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
937
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_has_field(msg, 2); }
938
- UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
1021
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 1); }
1022
+ UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
1023
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 2); }
1024
+ UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview); }
1025
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 3); }
1026
+ UPB_INLINE upb_strview google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_strview); }
1027
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 4); }
1028
+ UPB_INLINE const google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 56), const google_protobuf_MethodOptions*); }
1029
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 5); }
1030
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1031
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return _upb_hasbit(msg, 6); }
1032
+ UPB_INLINE bool google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool); }
939
1033
 
940
1034
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
941
- _upb_sethas(msg, 3);
942
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
1035
+ _upb_sethas(msg, 1);
1036
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
943
1037
  }
944
1038
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
945
- _upb_sethas(msg, 4);
946
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
1039
+ _upb_sethas(msg, 2);
1040
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview) = value;
947
1041
  }
948
1042
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) {
949
- _upb_sethas(msg, 5);
950
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(20, 40)) = value;
1043
+ _upb_sethas(msg, 3);
1044
+ *UPB_PTR_AT(msg, UPB_SIZE(20, 40), upb_strview) = value;
951
1045
  }
952
1046
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) {
953
- _upb_sethas(msg, 6);
954
- UPB_FIELD_AT(msg, google_protobuf_MethodOptions*, UPB_SIZE(28, 56)) = value;
1047
+ _upb_sethas(msg, 4);
1048
+ *UPB_PTR_AT(msg, UPB_SIZE(28, 56), google_protobuf_MethodOptions*) = value;
955
1049
  }
956
1050
  UPB_INLINE struct google_protobuf_MethodOptions* google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) {
957
1051
  struct google_protobuf_MethodOptions* sub = (struct google_protobuf_MethodOptions*)google_protobuf_MethodDescriptorProto_options(msg);
958
1052
  if (sub == NULL) {
959
- sub = (struct google_protobuf_MethodOptions*)upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
1053
+ sub = (struct google_protobuf_MethodOptions*)_upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
960
1054
  if (!sub) return NULL;
961
1055
  google_protobuf_MethodDescriptorProto_set_options(msg, sub);
962
1056
  }
963
1057
  return sub;
964
1058
  }
965
1059
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
966
- _upb_sethas(msg, 1);
967
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1060
+ _upb_sethas(msg, 5);
1061
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
968
1062
  }
969
1063
  UPB_INLINE void google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) {
970
- _upb_sethas(msg, 2);
971
- UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
1064
+ _upb_sethas(msg, 6);
1065
+ *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool) = value;
972
1066
  }
973
1067
 
974
1068
  /* google.protobuf.FileOptions */
975
1069
 
976
1070
  UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_new(upb_arena *arena) {
977
- return (google_protobuf_FileOptions *)upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
1071
+ return (google_protobuf_FileOptions *)_upb_msg_new(&google_protobuf_FileOptions_msginit, arena);
978
1072
  }
979
1073
  UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_parse(const char *buf, size_t size,
980
1074
  upb_arena *arena) {
981
1075
  google_protobuf_FileOptions *ret = google_protobuf_FileOptions_new(arena);
982
1076
  return (ret && upb_decode(buf, size, ret, &google_protobuf_FileOptions_msginit, arena)) ? ret : NULL;
983
1077
  }
1078
+ UPB_INLINE google_protobuf_FileOptions *google_protobuf_FileOptions_parse_ex(const char *buf, size_t size,
1079
+ upb_arena *arena, int options) {
1080
+ google_protobuf_FileOptions *ret = google_protobuf_FileOptions_new(arena);
1081
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_FileOptions_msginit, arena, options))
1082
+ ? ret : NULL;
1083
+ }
984
1084
  UPB_INLINE char *google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions *msg, upb_arena *arena, size_t *len) {
985
1085
  return upb_encode(msg, &google_protobuf_FileOptions_msginit, arena, len);
986
1086
  }
987
1087
 
988
- UPB_INLINE bool google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 11); }
989
- UPB_INLINE upb_strview google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(28, 32)); }
990
- UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 12); }
991
- UPB_INLINE upb_strview google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 48)); }
992
- UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 1); }
993
- UPB_INLINE int32_t google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
994
- UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 2); }
995
- UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)); }
996
- UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 13); }
997
- UPB_INLINE upb_strview google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 64)); }
998
- UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 3); }
999
- UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(17, 17)); }
1000
- UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 4); }
1001
- UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(18, 18)); }
1002
- UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 5); }
1003
- UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(19, 19)); }
1004
- UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 6); }
1005
- UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(20, 20)); }
1006
- UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 7); }
1007
- UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(21, 21)); }
1008
- UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 8); }
1009
- UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(22, 22)); }
1010
- UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 9); }
1011
- UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(23, 23)); }
1012
- UPB_INLINE bool google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 14); }
1013
- UPB_INLINE upb_strview google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 80)); }
1014
- UPB_INLINE bool google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 15); }
1015
- UPB_INLINE upb_strview google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 96)); }
1016
- UPB_INLINE bool google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 16); }
1017
- UPB_INLINE upb_strview google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 112)); }
1018
- UPB_INLINE bool google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 17); }
1019
- UPB_INLINE upb_strview google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(76, 128)); }
1020
- UPB_INLINE bool google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 18); }
1021
- UPB_INLINE upb_strview google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(84, 144)); }
1022
- UPB_INLINE bool google_protobuf_FileOptions_has_php_generic_services(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 10); }
1023
- UPB_INLINE bool google_protobuf_FileOptions_php_generic_services(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)); }
1024
- UPB_INLINE bool google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 19); }
1025
- UPB_INLINE upb_strview google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(92, 160)); }
1026
- UPB_INLINE bool google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions *msg) { return _upb_has_field(msg, 20); }
1027
- UPB_INLINE upb_strview google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(100, 176)); }
1028
- UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(108, 192), len); }
1088
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 1); }
1089
+ UPB_INLINE upb_strview google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(20, 24), upb_strview); }
1090
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 2); }
1091
+ UPB_INLINE upb_strview google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(28, 40), upb_strview); }
1092
+ UPB_INLINE bool google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 3); }
1093
+ UPB_INLINE int32_t google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
1094
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 4); }
1095
+ UPB_INLINE bool google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool); }
1096
+ UPB_INLINE bool google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 5); }
1097
+ UPB_INLINE upb_strview google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(36, 56), upb_strview); }
1098
+ UPB_INLINE bool google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 6); }
1099
+ UPB_INLINE bool google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(9, 9), bool); }
1100
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 7); }
1101
+ UPB_INLINE bool google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(10, 10), bool); }
1102
+ UPB_INLINE bool google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 8); }
1103
+ UPB_INLINE bool google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(11, 11), bool); }
1104
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 9); }
1105
+ UPB_INLINE bool google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), bool); }
1106
+ UPB_INLINE bool google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 10); }
1107
+ UPB_INLINE bool google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(13, 13), bool); }
1108
+ UPB_INLINE bool google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 11); }
1109
+ UPB_INLINE bool google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(14, 14), bool); }
1110
+ UPB_INLINE bool google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 12); }
1111
+ UPB_INLINE bool google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(15, 15), bool); }
1112
+ UPB_INLINE bool google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 13); }
1113
+ UPB_INLINE upb_strview google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(44, 72), upb_strview); }
1114
+ UPB_INLINE bool google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 14); }
1115
+ UPB_INLINE upb_strview google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(52, 88), upb_strview); }
1116
+ UPB_INLINE bool google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 15); }
1117
+ UPB_INLINE upb_strview google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(60, 104), upb_strview); }
1118
+ UPB_INLINE bool google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 16); }
1119
+ UPB_INLINE upb_strview google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(68, 120), upb_strview); }
1120
+ UPB_INLINE bool google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 17); }
1121
+ UPB_INLINE upb_strview google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(76, 136), upb_strview); }
1122
+ UPB_INLINE bool google_protobuf_FileOptions_has_php_generic_services(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 18); }
1123
+ UPB_INLINE bool google_protobuf_FileOptions_php_generic_services(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), bool); }
1124
+ UPB_INLINE bool google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 19); }
1125
+ UPB_INLINE upb_strview google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(84, 152), upb_strview); }
1126
+ UPB_INLINE bool google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions *msg) { return _upb_hasbit(msg, 20); }
1127
+ UPB_INLINE upb_strview google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(92, 168), upb_strview); }
1128
+ UPB_INLINE bool google_protobuf_FileOptions_has_uninterpreted_option(const google_protobuf_FileOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(100, 184)); }
1129
+ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(100, 184), len); }
1029
1130
 
1030
1131
  UPB_INLINE void google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_strview value) {
1031
- _upb_sethas(msg, 11);
1032
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(28, 32)) = value;
1132
+ _upb_sethas(msg, 1);
1133
+ *UPB_PTR_AT(msg, UPB_SIZE(20, 24), upb_strview) = value;
1033
1134
  }
1034
1135
  UPB_INLINE void google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_strview value) {
1035
- _upb_sethas(msg, 12);
1036
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(36, 48)) = value;
1136
+ _upb_sethas(msg, 2);
1137
+ *UPB_PTR_AT(msg, UPB_SIZE(28, 40), upb_strview) = value;
1037
1138
  }
1038
1139
  UPB_INLINE void google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) {
1039
- _upb_sethas(msg, 1);
1040
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
1140
+ _upb_sethas(msg, 3);
1141
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
1041
1142
  }
1042
1143
  UPB_INLINE void google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) {
1043
- _upb_sethas(msg, 2);
1044
- UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)) = value;
1144
+ _upb_sethas(msg, 4);
1145
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool) = value;
1045
1146
  }
1046
1147
  UPB_INLINE void google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_strview value) {
1047
- _upb_sethas(msg, 13);
1048
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(44, 64)) = value;
1148
+ _upb_sethas(msg, 5);
1149
+ *UPB_PTR_AT(msg, UPB_SIZE(36, 56), upb_strview) = value;
1049
1150
  }
1050
1151
  UPB_INLINE void google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) {
1051
- _upb_sethas(msg, 3);
1052
- UPB_FIELD_AT(msg, bool, UPB_SIZE(17, 17)) = value;
1152
+ _upb_sethas(msg, 6);
1153
+ *UPB_PTR_AT(msg, UPB_SIZE(9, 9), bool) = value;
1053
1154
  }
1054
1155
  UPB_INLINE void google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) {
1055
- _upb_sethas(msg, 4);
1056
- UPB_FIELD_AT(msg, bool, UPB_SIZE(18, 18)) = value;
1156
+ _upb_sethas(msg, 7);
1157
+ *UPB_PTR_AT(msg, UPB_SIZE(10, 10), bool) = value;
1057
1158
  }
1058
1159
  UPB_INLINE void google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) {
1059
- _upb_sethas(msg, 5);
1060
- UPB_FIELD_AT(msg, bool, UPB_SIZE(19, 19)) = value;
1160
+ _upb_sethas(msg, 8);
1161
+ *UPB_PTR_AT(msg, UPB_SIZE(11, 11), bool) = value;
1061
1162
  }
1062
1163
  UPB_INLINE void google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) {
1063
- _upb_sethas(msg, 6);
1064
- UPB_FIELD_AT(msg, bool, UPB_SIZE(20, 20)) = value;
1164
+ _upb_sethas(msg, 9);
1165
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 12), bool) = value;
1065
1166
  }
1066
1167
  UPB_INLINE void google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) {
1067
- _upb_sethas(msg, 7);
1068
- UPB_FIELD_AT(msg, bool, UPB_SIZE(21, 21)) = value;
1168
+ _upb_sethas(msg, 10);
1169
+ *UPB_PTR_AT(msg, UPB_SIZE(13, 13), bool) = value;
1069
1170
  }
1070
1171
  UPB_INLINE void google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) {
1071
- _upb_sethas(msg, 8);
1072
- UPB_FIELD_AT(msg, bool, UPB_SIZE(22, 22)) = value;
1172
+ _upb_sethas(msg, 11);
1173
+ *UPB_PTR_AT(msg, UPB_SIZE(14, 14), bool) = value;
1073
1174
  }
1074
1175
  UPB_INLINE void google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) {
1075
- _upb_sethas(msg, 9);
1076
- UPB_FIELD_AT(msg, bool, UPB_SIZE(23, 23)) = value;
1176
+ _upb_sethas(msg, 12);
1177
+ *UPB_PTR_AT(msg, UPB_SIZE(15, 15), bool) = value;
1077
1178
  }
1078
1179
  UPB_INLINE void google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
1079
- _upb_sethas(msg, 14);
1080
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(52, 80)) = value;
1180
+ _upb_sethas(msg, 13);
1181
+ *UPB_PTR_AT(msg, UPB_SIZE(44, 72), upb_strview) = value;
1081
1182
  }
1082
1183
  UPB_INLINE void google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_strview value) {
1083
- _upb_sethas(msg, 15);
1084
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(60, 96)) = value;
1184
+ _upb_sethas(msg, 14);
1185
+ *UPB_PTR_AT(msg, UPB_SIZE(52, 88), upb_strview) = value;
1085
1186
  }
1086
1187
  UPB_INLINE void google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
1087
- _upb_sethas(msg, 16);
1088
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(68, 112)) = value;
1188
+ _upb_sethas(msg, 15);
1189
+ *UPB_PTR_AT(msg, UPB_SIZE(60, 104), upb_strview) = value;
1089
1190
  }
1090
1191
  UPB_INLINE void google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) {
1091
- _upb_sethas(msg, 17);
1092
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(76, 128)) = value;
1192
+ _upb_sethas(msg, 16);
1193
+ *UPB_PTR_AT(msg, UPB_SIZE(68, 120), upb_strview) = value;
1093
1194
  }
1094
1195
  UPB_INLINE void google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_strview value) {
1095
- _upb_sethas(msg, 18);
1096
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(84, 144)) = value;
1196
+ _upb_sethas(msg, 17);
1197
+ *UPB_PTR_AT(msg, UPB_SIZE(76, 136), upb_strview) = value;
1097
1198
  }
1098
1199
  UPB_INLINE void google_protobuf_FileOptions_set_php_generic_services(google_protobuf_FileOptions *msg, bool value) {
1099
- _upb_sethas(msg, 10);
1100
- UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)) = value;
1200
+ _upb_sethas(msg, 18);
1201
+ *UPB_PTR_AT(msg, UPB_SIZE(16, 16), bool) = value;
1101
1202
  }
1102
1203
  UPB_INLINE void google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_strview value) {
1103
1204
  _upb_sethas(msg, 19);
1104
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(92, 160)) = value;
1205
+ *UPB_PTR_AT(msg, UPB_SIZE(84, 152), upb_strview) = value;
1105
1206
  }
1106
1207
  UPB_INLINE void google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_strview value) {
1107
1208
  _upb_sethas(msg, 20);
1108
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(100, 176)) = value;
1209
+ *UPB_PTR_AT(msg, UPB_SIZE(92, 168), upb_strview) = value;
1109
1210
  }
1110
1211
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions *msg, size_t *len) {
1111
- return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(108, 192), len);
1212
+ return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(100, 184), len);
1112
1213
  }
1113
1214
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) {
1114
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(108, 192), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1215
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(100, 184), len, UPB_SIZE(2, 3), arena);
1115
1216
  }
1116
1217
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) {
1117
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1118
- bool ok = _upb_array_append_accessor(
1119
- msg, UPB_SIZE(108, 192), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1218
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1219
+ bool ok = _upb_array_append_accessor2(
1220
+ msg, UPB_SIZE(100, 184), UPB_SIZE(2, 3), &sub, arena);
1120
1221
  if (!ok) return NULL;
1121
1222
  return sub;
1122
1223
  }
@@ -1124,53 +1225,60 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FileOptio
1124
1225
  /* google.protobuf.MessageOptions */
1125
1226
 
1126
1227
  UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_new(upb_arena *arena) {
1127
- return (google_protobuf_MessageOptions *)upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
1228
+ return (google_protobuf_MessageOptions *)_upb_msg_new(&google_protobuf_MessageOptions_msginit, arena);
1128
1229
  }
1129
1230
  UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_parse(const char *buf, size_t size,
1130
1231
  upb_arena *arena) {
1131
1232
  google_protobuf_MessageOptions *ret = google_protobuf_MessageOptions_new(arena);
1132
1233
  return (ret && upb_decode(buf, size, ret, &google_protobuf_MessageOptions_msginit, arena)) ? ret : NULL;
1133
1234
  }
1235
+ UPB_INLINE google_protobuf_MessageOptions *google_protobuf_MessageOptions_parse_ex(const char *buf, size_t size,
1236
+ upb_arena *arena, int options) {
1237
+ google_protobuf_MessageOptions *ret = google_protobuf_MessageOptions_new(arena);
1238
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_MessageOptions_msginit, arena, options))
1239
+ ? ret : NULL;
1240
+ }
1134
1241
  UPB_INLINE char *google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions *msg, upb_arena *arena, size_t *len) {
1135
1242
  return upb_encode(msg, &google_protobuf_MessageOptions_msginit, arena, len);
1136
1243
  }
1137
1244
 
1138
- UPB_INLINE bool google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 1); }
1139
- UPB_INLINE bool google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
1140
- UPB_INLINE bool google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 2); }
1141
- UPB_INLINE bool google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
1142
- UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 3); }
1143
- UPB_INLINE bool google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(3, 3)); }
1144
- UPB_INLINE bool google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions *msg) { return _upb_has_field(msg, 4); }
1145
- UPB_INLINE bool google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(4, 4)); }
1245
+ UPB_INLINE bool google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return _upb_hasbit(msg, 1); }
1246
+ UPB_INLINE bool google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1247
+ UPB_INLINE bool google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return _upb_hasbit(msg, 2); }
1248
+ UPB_INLINE bool google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool); }
1249
+ UPB_INLINE bool google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions *msg) { return _upb_hasbit(msg, 3); }
1250
+ UPB_INLINE bool google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool); }
1251
+ UPB_INLINE bool google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions *msg) { return _upb_hasbit(msg, 4); }
1252
+ UPB_INLINE bool google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool); }
1253
+ UPB_INLINE bool google_protobuf_MessageOptions_has_uninterpreted_option(const google_protobuf_MessageOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(8, 8)); }
1146
1254
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(8, 8), len); }
1147
1255
 
1148
1256
  UPB_INLINE void google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) {
1149
1257
  _upb_sethas(msg, 1);
1150
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1258
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
1151
1259
  }
1152
1260
  UPB_INLINE void google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) {
1153
1261
  _upb_sethas(msg, 2);
1154
- UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
1262
+ *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool) = value;
1155
1263
  }
1156
1264
  UPB_INLINE void google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) {
1157
1265
  _upb_sethas(msg, 3);
1158
- UPB_FIELD_AT(msg, bool, UPB_SIZE(3, 3)) = value;
1266
+ *UPB_PTR_AT(msg, UPB_SIZE(3, 3), bool) = value;
1159
1267
  }
1160
1268
  UPB_INLINE void google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) {
1161
1269
  _upb_sethas(msg, 4);
1162
- UPB_FIELD_AT(msg, bool, UPB_SIZE(4, 4)) = value;
1270
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), bool) = value;
1163
1271
  }
1164
1272
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t *len) {
1165
1273
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(8, 8), len);
1166
1274
  }
1167
1275
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) {
1168
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(8, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1276
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(8, 8), len, UPB_SIZE(2, 3), arena);
1169
1277
  }
1170
1278
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) {
1171
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1172
- bool ok = _upb_array_append_accessor(
1173
- msg, UPB_SIZE(8, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1279
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1280
+ bool ok = _upb_array_append_accessor2(
1281
+ msg, UPB_SIZE(8, 8), UPB_SIZE(2, 3), &sub, arena);
1174
1282
  if (!ok) return NULL;
1175
1283
  return sub;
1176
1284
  }
@@ -1178,65 +1286,72 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MessageOp
1178
1286
  /* google.protobuf.FieldOptions */
1179
1287
 
1180
1288
  UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_new(upb_arena *arena) {
1181
- return (google_protobuf_FieldOptions *)upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
1289
+ return (google_protobuf_FieldOptions *)_upb_msg_new(&google_protobuf_FieldOptions_msginit, arena);
1182
1290
  }
1183
1291
  UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_parse(const char *buf, size_t size,
1184
1292
  upb_arena *arena) {
1185
1293
  google_protobuf_FieldOptions *ret = google_protobuf_FieldOptions_new(arena);
1186
1294
  return (ret && upb_decode(buf, size, ret, &google_protobuf_FieldOptions_msginit, arena)) ? ret : NULL;
1187
1295
  }
1296
+ UPB_INLINE google_protobuf_FieldOptions *google_protobuf_FieldOptions_parse_ex(const char *buf, size_t size,
1297
+ upb_arena *arena, int options) {
1298
+ google_protobuf_FieldOptions *ret = google_protobuf_FieldOptions_new(arena);
1299
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_FieldOptions_msginit, arena, options))
1300
+ ? ret : NULL;
1301
+ }
1188
1302
  UPB_INLINE char *google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions *msg, upb_arena *arena, size_t *len) {
1189
1303
  return upb_encode(msg, &google_protobuf_FieldOptions_msginit, arena, len);
1190
1304
  }
1191
1305
 
1192
- UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 1); }
1193
- UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
1194
- UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 3); }
1195
- UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)); }
1196
- UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 4); }
1197
- UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(25, 25)); }
1198
- UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 5); }
1199
- UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(26, 26)); }
1200
- UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 2); }
1201
- UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(16, 16)); }
1202
- UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions *msg) { return _upb_has_field(msg, 6); }
1203
- UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(27, 27)); }
1204
- UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(28, 32), len); }
1306
+ UPB_INLINE bool google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 1); }
1307
+ UPB_INLINE int32_t google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
1308
+ UPB_INLINE bool google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 2); }
1309
+ UPB_INLINE bool google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 12), bool); }
1310
+ UPB_INLINE bool google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 3); }
1311
+ UPB_INLINE bool google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(13, 13), bool); }
1312
+ UPB_INLINE bool google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 4); }
1313
+ UPB_INLINE bool google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(14, 14), bool); }
1314
+ UPB_INLINE bool google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 5); }
1315
+ UPB_INLINE int32_t google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
1316
+ UPB_INLINE bool google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions *msg) { return _upb_hasbit(msg, 6); }
1317
+ UPB_INLINE bool google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(15, 15), bool); }
1318
+ UPB_INLINE bool google_protobuf_FieldOptions_has_uninterpreted_option(const google_protobuf_FieldOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(16, 16)); }
1319
+ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(16, 16), len); }
1205
1320
 
1206
1321
  UPB_INLINE void google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) {
1207
1322
  _upb_sethas(msg, 1);
1208
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
1323
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
1209
1324
  }
1210
1325
  UPB_INLINE void google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) {
1211
- _upb_sethas(msg, 3);
1212
- UPB_FIELD_AT(msg, bool, UPB_SIZE(24, 24)) = value;
1326
+ _upb_sethas(msg, 2);
1327
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 12), bool) = value;
1213
1328
  }
1214
1329
  UPB_INLINE void google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) {
1215
- _upb_sethas(msg, 4);
1216
- UPB_FIELD_AT(msg, bool, UPB_SIZE(25, 25)) = value;
1330
+ _upb_sethas(msg, 3);
1331
+ *UPB_PTR_AT(msg, UPB_SIZE(13, 13), bool) = value;
1217
1332
  }
1218
1333
  UPB_INLINE void google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) {
1219
- _upb_sethas(msg, 5);
1220
- UPB_FIELD_AT(msg, bool, UPB_SIZE(26, 26)) = value;
1334
+ _upb_sethas(msg, 4);
1335
+ *UPB_PTR_AT(msg, UPB_SIZE(14, 14), bool) = value;
1221
1336
  }
1222
1337
  UPB_INLINE void google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) {
1223
- _upb_sethas(msg, 2);
1224
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(16, 16)) = value;
1338
+ _upb_sethas(msg, 5);
1339
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
1225
1340
  }
1226
1341
  UPB_INLINE void google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) {
1227
1342
  _upb_sethas(msg, 6);
1228
- UPB_FIELD_AT(msg, bool, UPB_SIZE(27, 27)) = value;
1343
+ *UPB_PTR_AT(msg, UPB_SIZE(15, 15), bool) = value;
1229
1344
  }
1230
1345
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t *len) {
1231
- return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 32), len);
1346
+ return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(16, 16), len);
1232
1347
  }
1233
1348
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) {
1234
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(28, 32), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1349
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(16, 16), len, UPB_SIZE(2, 3), arena);
1235
1350
  }
1236
1351
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) {
1237
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1238
- bool ok = _upb_array_append_accessor(
1239
- msg, UPB_SIZE(28, 32), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1352
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1353
+ bool ok = _upb_array_append_accessor2(
1354
+ msg, UPB_SIZE(16, 16), UPB_SIZE(2, 3), &sub, arena);
1240
1355
  if (!ok) return NULL;
1241
1356
  return sub;
1242
1357
  }
@@ -1244,29 +1359,36 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_FieldOpti
1244
1359
  /* google.protobuf.OneofOptions */
1245
1360
 
1246
1361
  UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_new(upb_arena *arena) {
1247
- return (google_protobuf_OneofOptions *)upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
1362
+ return (google_protobuf_OneofOptions *)_upb_msg_new(&google_protobuf_OneofOptions_msginit, arena);
1248
1363
  }
1249
1364
  UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_parse(const char *buf, size_t size,
1250
1365
  upb_arena *arena) {
1251
1366
  google_protobuf_OneofOptions *ret = google_protobuf_OneofOptions_new(arena);
1252
1367
  return (ret && upb_decode(buf, size, ret, &google_protobuf_OneofOptions_msginit, arena)) ? ret : NULL;
1253
1368
  }
1369
+ UPB_INLINE google_protobuf_OneofOptions *google_protobuf_OneofOptions_parse_ex(const char *buf, size_t size,
1370
+ upb_arena *arena, int options) {
1371
+ google_protobuf_OneofOptions *ret = google_protobuf_OneofOptions_new(arena);
1372
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_OneofOptions_msginit, arena, options))
1373
+ ? ret : NULL;
1374
+ }
1254
1375
  UPB_INLINE char *google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions *msg, upb_arena *arena, size_t *len) {
1255
1376
  return upb_encode(msg, &google_protobuf_OneofOptions_msginit, arena, len);
1256
1377
  }
1257
1378
 
1379
+ UPB_INLINE bool google_protobuf_OneofOptions_has_uninterpreted_option(const google_protobuf_OneofOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0)); }
1258
1380
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
1259
1381
 
1260
1382
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t *len) {
1261
1383
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
1262
1384
  }
1263
1385
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) {
1264
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1386
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
1265
1387
  }
1266
1388
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) {
1267
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1268
- bool ok = _upb_array_append_accessor(
1269
- msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1389
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1390
+ bool ok = _upb_array_append_accessor2(
1391
+ msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
1270
1392
  if (!ok) return NULL;
1271
1393
  return sub;
1272
1394
  }
@@ -1274,41 +1396,48 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_OneofOpti
1274
1396
  /* google.protobuf.EnumOptions */
1275
1397
 
1276
1398
  UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_new(upb_arena *arena) {
1277
- return (google_protobuf_EnumOptions *)upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
1399
+ return (google_protobuf_EnumOptions *)_upb_msg_new(&google_protobuf_EnumOptions_msginit, arena);
1278
1400
  }
1279
1401
  UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_parse(const char *buf, size_t size,
1280
1402
  upb_arena *arena) {
1281
1403
  google_protobuf_EnumOptions *ret = google_protobuf_EnumOptions_new(arena);
1282
1404
  return (ret && upb_decode(buf, size, ret, &google_protobuf_EnumOptions_msginit, arena)) ? ret : NULL;
1283
1405
  }
1406
+ UPB_INLINE google_protobuf_EnumOptions *google_protobuf_EnumOptions_parse_ex(const char *buf, size_t size,
1407
+ upb_arena *arena, int options) {
1408
+ google_protobuf_EnumOptions *ret = google_protobuf_EnumOptions_new(arena);
1409
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_EnumOptions_msginit, arena, options))
1410
+ ? ret : NULL;
1411
+ }
1284
1412
  UPB_INLINE char *google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions *msg, upb_arena *arena, size_t *len) {
1285
1413
  return upb_encode(msg, &google_protobuf_EnumOptions_msginit, arena, len);
1286
1414
  }
1287
1415
 
1288
- UPB_INLINE bool google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions *msg) { return _upb_has_field(msg, 1); }
1289
- UPB_INLINE bool google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
1290
- UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions *msg) { return _upb_has_field(msg, 2); }
1291
- UPB_INLINE bool google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)); }
1416
+ UPB_INLINE bool google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions *msg) { return _upb_hasbit(msg, 1); }
1417
+ UPB_INLINE bool google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1418
+ UPB_INLINE bool google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions *msg) { return _upb_hasbit(msg, 2); }
1419
+ UPB_INLINE bool google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool); }
1420
+ UPB_INLINE bool google_protobuf_EnumOptions_has_uninterpreted_option(const google_protobuf_EnumOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(4, 8)); }
1292
1421
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
1293
1422
 
1294
1423
  UPB_INLINE void google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) {
1295
1424
  _upb_sethas(msg, 1);
1296
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1425
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
1297
1426
  }
1298
1427
  UPB_INLINE void google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) {
1299
1428
  _upb_sethas(msg, 2);
1300
- UPB_FIELD_AT(msg, bool, UPB_SIZE(2, 2)) = value;
1429
+ *UPB_PTR_AT(msg, UPB_SIZE(2, 2), bool) = value;
1301
1430
  }
1302
1431
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t *len) {
1303
1432
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
1304
1433
  }
1305
1434
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) {
1306
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1435
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(4, 8), len, UPB_SIZE(2, 3), arena);
1307
1436
  }
1308
1437
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) {
1309
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1310
- bool ok = _upb_array_append_accessor(
1311
- msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1438
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1439
+ bool ok = _upb_array_append_accessor2(
1440
+ msg, UPB_SIZE(4, 8), UPB_SIZE(2, 3), &sub, arena);
1312
1441
  if (!ok) return NULL;
1313
1442
  return sub;
1314
1443
  }
@@ -1316,35 +1445,42 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumOptio
1316
1445
  /* google.protobuf.EnumValueOptions */
1317
1446
 
1318
1447
  UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_new(upb_arena *arena) {
1319
- return (google_protobuf_EnumValueOptions *)upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
1448
+ return (google_protobuf_EnumValueOptions *)_upb_msg_new(&google_protobuf_EnumValueOptions_msginit, arena);
1320
1449
  }
1321
1450
  UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_parse(const char *buf, size_t size,
1322
1451
  upb_arena *arena) {
1323
1452
  google_protobuf_EnumValueOptions *ret = google_protobuf_EnumValueOptions_new(arena);
1324
1453
  return (ret && upb_decode(buf, size, ret, &google_protobuf_EnumValueOptions_msginit, arena)) ? ret : NULL;
1325
1454
  }
1455
+ UPB_INLINE google_protobuf_EnumValueOptions *google_protobuf_EnumValueOptions_parse_ex(const char *buf, size_t size,
1456
+ upb_arena *arena, int options) {
1457
+ google_protobuf_EnumValueOptions *ret = google_protobuf_EnumValueOptions_new(arena);
1458
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_EnumValueOptions_msginit, arena, options))
1459
+ ? ret : NULL;
1460
+ }
1326
1461
  UPB_INLINE char *google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions *msg, upb_arena *arena, size_t *len) {
1327
1462
  return upb_encode(msg, &google_protobuf_EnumValueOptions_msginit, arena, len);
1328
1463
  }
1329
1464
 
1330
- UPB_INLINE bool google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions *msg) { return _upb_has_field(msg, 1); }
1331
- UPB_INLINE bool google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
1465
+ UPB_INLINE bool google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions *msg) { return _upb_hasbit(msg, 1); }
1466
+ UPB_INLINE bool google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1467
+ UPB_INLINE bool google_protobuf_EnumValueOptions_has_uninterpreted_option(const google_protobuf_EnumValueOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(4, 8)); }
1332
1468
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
1333
1469
 
1334
1470
  UPB_INLINE void google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) {
1335
1471
  _upb_sethas(msg, 1);
1336
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1472
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
1337
1473
  }
1338
1474
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t *len) {
1339
1475
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
1340
1476
  }
1341
1477
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) {
1342
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1478
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(4, 8), len, UPB_SIZE(2, 3), arena);
1343
1479
  }
1344
1480
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) {
1345
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1346
- bool ok = _upb_array_append_accessor(
1347
- msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1481
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1482
+ bool ok = _upb_array_append_accessor2(
1483
+ msg, UPB_SIZE(4, 8), UPB_SIZE(2, 3), &sub, arena);
1348
1484
  if (!ok) return NULL;
1349
1485
  return sub;
1350
1486
  }
@@ -1352,35 +1488,42 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_EnumValue
1352
1488
  /* google.protobuf.ServiceOptions */
1353
1489
 
1354
1490
  UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_new(upb_arena *arena) {
1355
- return (google_protobuf_ServiceOptions *)upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
1491
+ return (google_protobuf_ServiceOptions *)_upb_msg_new(&google_protobuf_ServiceOptions_msginit, arena);
1356
1492
  }
1357
1493
  UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_parse(const char *buf, size_t size,
1358
1494
  upb_arena *arena) {
1359
1495
  google_protobuf_ServiceOptions *ret = google_protobuf_ServiceOptions_new(arena);
1360
1496
  return (ret && upb_decode(buf, size, ret, &google_protobuf_ServiceOptions_msginit, arena)) ? ret : NULL;
1361
1497
  }
1498
+ UPB_INLINE google_protobuf_ServiceOptions *google_protobuf_ServiceOptions_parse_ex(const char *buf, size_t size,
1499
+ upb_arena *arena, int options) {
1500
+ google_protobuf_ServiceOptions *ret = google_protobuf_ServiceOptions_new(arena);
1501
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_ServiceOptions_msginit, arena, options))
1502
+ ? ret : NULL;
1503
+ }
1362
1504
  UPB_INLINE char *google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions *msg, upb_arena *arena, size_t *len) {
1363
1505
  return upb_encode(msg, &google_protobuf_ServiceOptions_msginit, arena, len);
1364
1506
  }
1365
1507
 
1366
- UPB_INLINE bool google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions *msg) { return _upb_has_field(msg, 1); }
1367
- UPB_INLINE bool google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
1508
+ UPB_INLINE bool google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions *msg) { return _upb_hasbit(msg, 1); }
1509
+ UPB_INLINE bool google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1510
+ UPB_INLINE bool google_protobuf_ServiceOptions_has_uninterpreted_option(const google_protobuf_ServiceOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(4, 8)); }
1368
1511
  UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(4, 8), len); }
1369
1512
 
1370
1513
  UPB_INLINE void google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) {
1371
1514
  _upb_sethas(msg, 1);
1372
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1515
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
1373
1516
  }
1374
1517
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t *len) {
1375
1518
  return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(4, 8), len);
1376
1519
  }
1377
1520
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) {
1378
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(4, 8), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1521
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(4, 8), len, UPB_SIZE(2, 3), arena);
1379
1522
  }
1380
1523
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) {
1381
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1382
- bool ok = _upb_array_append_accessor(
1383
- msg, UPB_SIZE(4, 8), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1524
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1525
+ bool ok = _upb_array_append_accessor2(
1526
+ msg, UPB_SIZE(4, 8), UPB_SIZE(2, 3), &sub, arena);
1384
1527
  if (!ok) return NULL;
1385
1528
  return sub;
1386
1529
  }
@@ -1388,41 +1531,48 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_ServiceOp
1388
1531
  /* google.protobuf.MethodOptions */
1389
1532
 
1390
1533
  UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_new(upb_arena *arena) {
1391
- return (google_protobuf_MethodOptions *)upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
1534
+ return (google_protobuf_MethodOptions *)_upb_msg_new(&google_protobuf_MethodOptions_msginit, arena);
1392
1535
  }
1393
1536
  UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_parse(const char *buf, size_t size,
1394
1537
  upb_arena *arena) {
1395
1538
  google_protobuf_MethodOptions *ret = google_protobuf_MethodOptions_new(arena);
1396
1539
  return (ret && upb_decode(buf, size, ret, &google_protobuf_MethodOptions_msginit, arena)) ? ret : NULL;
1397
1540
  }
1541
+ UPB_INLINE google_protobuf_MethodOptions *google_protobuf_MethodOptions_parse_ex(const char *buf, size_t size,
1542
+ upb_arena *arena, int options) {
1543
+ google_protobuf_MethodOptions *ret = google_protobuf_MethodOptions_new(arena);
1544
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_MethodOptions_msginit, arena, options))
1545
+ ? ret : NULL;
1546
+ }
1398
1547
  UPB_INLINE char *google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions *msg, upb_arena *arena, size_t *len) {
1399
1548
  return upb_encode(msg, &google_protobuf_MethodOptions_msginit, arena, len);
1400
1549
  }
1401
1550
 
1402
- UPB_INLINE bool google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions *msg) { return _upb_has_field(msg, 2); }
1403
- UPB_INLINE bool google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)); }
1404
- UPB_INLINE bool google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions *msg) { return _upb_has_field(msg, 1); }
1405
- UPB_INLINE int32_t google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
1406
- UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(20, 24), len); }
1551
+ UPB_INLINE bool google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions *msg) { return _upb_hasbit(msg, 1); }
1552
+ UPB_INLINE bool google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool); }
1553
+ UPB_INLINE bool google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions *msg) { return _upb_hasbit(msg, 2); }
1554
+ UPB_INLINE int32_t google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
1555
+ UPB_INLINE bool google_protobuf_MethodOptions_has_uninterpreted_option(const google_protobuf_MethodOptions *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(12, 16)); }
1556
+ UPB_INLINE const google_protobuf_UninterpretedOption* const* google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions *msg, size_t *len) { return (const google_protobuf_UninterpretedOption* const*)_upb_array_accessor(msg, UPB_SIZE(12, 16), len); }
1407
1557
 
1408
1558
  UPB_INLINE void google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) {
1409
- _upb_sethas(msg, 2);
1410
- UPB_FIELD_AT(msg, bool, UPB_SIZE(16, 16)) = value;
1559
+ _upb_sethas(msg, 1);
1560
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), bool) = value;
1411
1561
  }
1412
1562
  UPB_INLINE void google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) {
1413
- _upb_sethas(msg, 1);
1414
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
1563
+ _upb_sethas(msg, 2);
1564
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
1415
1565
  }
1416
1566
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t *len) {
1417
- return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 24), len);
1567
+ return (google_protobuf_UninterpretedOption**)_upb_array_mutable_accessor(msg, UPB_SIZE(12, 16), len);
1418
1568
  }
1419
1569
  UPB_INLINE google_protobuf_UninterpretedOption** google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) {
1420
- return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor(msg, UPB_SIZE(20, 24), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1570
+ return (google_protobuf_UninterpretedOption**)_upb_array_resize_accessor2(msg, UPB_SIZE(12, 16), len, UPB_SIZE(2, 3), arena);
1421
1571
  }
1422
1572
  UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) {
1423
- struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1424
- bool ok = _upb_array_append_accessor(
1425
- msg, UPB_SIZE(20, 24), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1573
+ struct google_protobuf_UninterpretedOption* sub = (struct google_protobuf_UninterpretedOption*)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1574
+ bool ok = _upb_array_append_accessor2(
1575
+ msg, UPB_SIZE(12, 16), UPB_SIZE(2, 3), &sub, arena);
1426
1576
  if (!ok) return NULL;
1427
1577
  return sub;
1428
1578
  }
@@ -1430,123 +1580,143 @@ UPB_INLINE struct google_protobuf_UninterpretedOption* google_protobuf_MethodOpt
1430
1580
  /* google.protobuf.UninterpretedOption */
1431
1581
 
1432
1582
  UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_new(upb_arena *arena) {
1433
- return (google_protobuf_UninterpretedOption *)upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1583
+ return (google_protobuf_UninterpretedOption *)_upb_msg_new(&google_protobuf_UninterpretedOption_msginit, arena);
1434
1584
  }
1435
1585
  UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_parse(const char *buf, size_t size,
1436
1586
  upb_arena *arena) {
1437
1587
  google_protobuf_UninterpretedOption *ret = google_protobuf_UninterpretedOption_new(arena);
1438
1588
  return (ret && upb_decode(buf, size, ret, &google_protobuf_UninterpretedOption_msginit, arena)) ? ret : NULL;
1439
1589
  }
1590
+ UPB_INLINE google_protobuf_UninterpretedOption *google_protobuf_UninterpretedOption_parse_ex(const char *buf, size_t size,
1591
+ upb_arena *arena, int options) {
1592
+ google_protobuf_UninterpretedOption *ret = google_protobuf_UninterpretedOption_new(arena);
1593
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_UninterpretedOption_msginit, arena, options))
1594
+ ? ret : NULL;
1595
+ }
1440
1596
  UPB_INLINE char *google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption *msg, upb_arena *arena, size_t *len) {
1441
1597
  return upb_encode(msg, &google_protobuf_UninterpretedOption_msginit, arena, len);
1442
1598
  }
1443
1599
 
1600
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_name(const google_protobuf_UninterpretedOption *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(56, 80)); }
1444
1601
  UPB_INLINE const google_protobuf_UninterpretedOption_NamePart* const* google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption *msg, size_t *len) { return (const google_protobuf_UninterpretedOption_NamePart* const*)_upb_array_accessor(msg, UPB_SIZE(56, 80), len); }
1445
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 4); }
1446
- UPB_INLINE upb_strview google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)); }
1447
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 1); }
1448
- UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(8, 8)); }
1449
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 2); }
1450
- UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, int64_t, UPB_SIZE(16, 16)); }
1451
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 3); }
1452
- UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, double, UPB_SIZE(24, 24)); }
1453
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 5); }
1454
- UPB_INLINE upb_strview google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)); }
1455
- UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return _upb_has_field(msg, 6); }
1456
- UPB_INLINE upb_strview google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)); }
1602
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 1); }
1603
+ UPB_INLINE upb_strview google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(32, 32), upb_strview); }
1604
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 2); }
1605
+ UPB_INLINE uint64_t google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t); }
1606
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 3); }
1607
+ UPB_INLINE int64_t google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int64_t); }
1608
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 4); }
1609
+ UPB_INLINE double google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(24, 24), double); }
1610
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 5); }
1611
+ UPB_INLINE upb_strview google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(40, 48), upb_strview); }
1612
+ UPB_INLINE bool google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return _upb_hasbit(msg, 6); }
1613
+ UPB_INLINE upb_strview google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(48, 64), upb_strview); }
1457
1614
 
1458
1615
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption *msg, size_t *len) {
1459
1616
  return (google_protobuf_UninterpretedOption_NamePart**)_upb_array_mutable_accessor(msg, UPB_SIZE(56, 80), len);
1460
1617
  }
1461
1618
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart** google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) {
1462
- return (google_protobuf_UninterpretedOption_NamePart**)_upb_array_resize_accessor(msg, UPB_SIZE(56, 80), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1619
+ return (google_protobuf_UninterpretedOption_NamePart**)_upb_array_resize_accessor2(msg, UPB_SIZE(56, 80), len, UPB_SIZE(2, 3), arena);
1463
1620
  }
1464
1621
  UPB_INLINE struct google_protobuf_UninterpretedOption_NamePart* google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) {
1465
- struct google_protobuf_UninterpretedOption_NamePart* sub = (struct google_protobuf_UninterpretedOption_NamePart*)upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
1466
- bool ok = _upb_array_append_accessor(
1467
- msg, UPB_SIZE(56, 80), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1622
+ struct google_protobuf_UninterpretedOption_NamePart* sub = (struct google_protobuf_UninterpretedOption_NamePart*)_upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
1623
+ bool ok = _upb_array_append_accessor2(
1624
+ msg, UPB_SIZE(56, 80), UPB_SIZE(2, 3), &sub, arena);
1468
1625
  if (!ok) return NULL;
1469
1626
  return sub;
1470
1627
  }
1471
1628
  UPB_INLINE void google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
1472
- _upb_sethas(msg, 4);
1473
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(32, 32)) = value;
1629
+ _upb_sethas(msg, 1);
1630
+ *UPB_PTR_AT(msg, UPB_SIZE(32, 32), upb_strview) = value;
1474
1631
  }
1475
1632
  UPB_INLINE void google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) {
1476
- _upb_sethas(msg, 1);
1477
- UPB_FIELD_AT(msg, uint64_t, UPB_SIZE(8, 8)) = value;
1633
+ _upb_sethas(msg, 2);
1634
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), uint64_t) = value;
1478
1635
  }
1479
1636
  UPB_INLINE void google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) {
1480
- _upb_sethas(msg, 2);
1481
- UPB_FIELD_AT(msg, int64_t, UPB_SIZE(16, 16)) = value;
1637
+ _upb_sethas(msg, 3);
1638
+ *UPB_PTR_AT(msg, UPB_SIZE(16, 16), int64_t) = value;
1482
1639
  }
1483
1640
  UPB_INLINE void google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) {
1484
- _upb_sethas(msg, 3);
1485
- UPB_FIELD_AT(msg, double, UPB_SIZE(24, 24)) = value;
1641
+ _upb_sethas(msg, 4);
1642
+ *UPB_PTR_AT(msg, UPB_SIZE(24, 24), double) = value;
1486
1643
  }
1487
1644
  UPB_INLINE void google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
1488
1645
  _upb_sethas(msg, 5);
1489
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(40, 48)) = value;
1646
+ *UPB_PTR_AT(msg, UPB_SIZE(40, 48), upb_strview) = value;
1490
1647
  }
1491
1648
  UPB_INLINE void google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_strview value) {
1492
1649
  _upb_sethas(msg, 6);
1493
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(48, 64)) = value;
1650
+ *UPB_PTR_AT(msg, UPB_SIZE(48, 64), upb_strview) = value;
1494
1651
  }
1495
1652
 
1496
1653
  /* google.protobuf.UninterpretedOption.NamePart */
1497
1654
 
1498
1655
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_new(upb_arena *arena) {
1499
- return (google_protobuf_UninterpretedOption_NamePart *)upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
1656
+ return (google_protobuf_UninterpretedOption_NamePart *)_upb_msg_new(&google_protobuf_UninterpretedOption_NamePart_msginit, arena);
1500
1657
  }
1501
1658
  UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_parse(const char *buf, size_t size,
1502
1659
  upb_arena *arena) {
1503
1660
  google_protobuf_UninterpretedOption_NamePart *ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
1504
1661
  return (ret && upb_decode(buf, size, ret, &google_protobuf_UninterpretedOption_NamePart_msginit, arena)) ? ret : NULL;
1505
1662
  }
1663
+ UPB_INLINE google_protobuf_UninterpretedOption_NamePart *google_protobuf_UninterpretedOption_NamePart_parse_ex(const char *buf, size_t size,
1664
+ upb_arena *arena, int options) {
1665
+ google_protobuf_UninterpretedOption_NamePart *ret = google_protobuf_UninterpretedOption_NamePart_new(arena);
1666
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_UninterpretedOption_NamePart_msginit, arena, options))
1667
+ ? ret : NULL;
1668
+ }
1506
1669
  UPB_INLINE char *google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart *msg, upb_arena *arena, size_t *len) {
1507
1670
  return upb_encode(msg, &google_protobuf_UninterpretedOption_NamePart_msginit, arena, len);
1508
1671
  }
1509
1672
 
1510
- UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_has_field(msg, 2); }
1511
- UPB_INLINE upb_strview google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
1512
- UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_has_field(msg, 1); }
1513
- UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)); }
1673
+ UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_hasbit(msg, 1); }
1674
+ UPB_INLINE upb_strview google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
1675
+ UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return _upb_hasbit(msg, 2); }
1676
+ UPB_INLINE bool google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool); }
1514
1677
 
1515
1678
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_strview value) {
1516
- _upb_sethas(msg, 2);
1517
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
1679
+ _upb_sethas(msg, 1);
1680
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
1518
1681
  }
1519
1682
  UPB_INLINE void google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) {
1520
- _upb_sethas(msg, 1);
1521
- UPB_FIELD_AT(msg, bool, UPB_SIZE(1, 1)) = value;
1683
+ _upb_sethas(msg, 2);
1684
+ *UPB_PTR_AT(msg, UPB_SIZE(1, 1), bool) = value;
1522
1685
  }
1523
1686
 
1524
1687
  /* google.protobuf.SourceCodeInfo */
1525
1688
 
1526
1689
  UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_new(upb_arena *arena) {
1527
- return (google_protobuf_SourceCodeInfo *)upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
1690
+ return (google_protobuf_SourceCodeInfo *)_upb_msg_new(&google_protobuf_SourceCodeInfo_msginit, arena);
1528
1691
  }
1529
1692
  UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_parse(const char *buf, size_t size,
1530
1693
  upb_arena *arena) {
1531
1694
  google_protobuf_SourceCodeInfo *ret = google_protobuf_SourceCodeInfo_new(arena);
1532
1695
  return (ret && upb_decode(buf, size, ret, &google_protobuf_SourceCodeInfo_msginit, arena)) ? ret : NULL;
1533
1696
  }
1697
+ UPB_INLINE google_protobuf_SourceCodeInfo *google_protobuf_SourceCodeInfo_parse_ex(const char *buf, size_t size,
1698
+ upb_arena *arena, int options) {
1699
+ google_protobuf_SourceCodeInfo *ret = google_protobuf_SourceCodeInfo_new(arena);
1700
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_SourceCodeInfo_msginit, arena, options))
1701
+ ? ret : NULL;
1702
+ }
1534
1703
  UPB_INLINE char *google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo *msg, upb_arena *arena, size_t *len) {
1535
1704
  return upb_encode(msg, &google_protobuf_SourceCodeInfo_msginit, arena, len);
1536
1705
  }
1537
1706
 
1707
+ UPB_INLINE bool google_protobuf_SourceCodeInfo_has_location(const google_protobuf_SourceCodeInfo *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0)); }
1538
1708
  UPB_INLINE const google_protobuf_SourceCodeInfo_Location* const* google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo *msg, size_t *len) { return (const google_protobuf_SourceCodeInfo_Location* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
1539
1709
 
1540
1710
  UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo *msg, size_t *len) {
1541
1711
  return (google_protobuf_SourceCodeInfo_Location**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
1542
1712
  }
1543
1713
  UPB_INLINE google_protobuf_SourceCodeInfo_Location** google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) {
1544
- return (google_protobuf_SourceCodeInfo_Location**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1714
+ return (google_protobuf_SourceCodeInfo_Location**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
1545
1715
  }
1546
1716
  UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) {
1547
- struct google_protobuf_SourceCodeInfo_Location* sub = (struct google_protobuf_SourceCodeInfo_Location*)upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
1548
- bool ok = _upb_array_append_accessor(
1549
- msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1717
+ struct google_protobuf_SourceCodeInfo_Location* sub = (struct google_protobuf_SourceCodeInfo_Location*)_upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
1718
+ bool ok = _upb_array_append_accessor2(
1719
+ msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
1550
1720
  if (!ok) return NULL;
1551
1721
  return sub;
1552
1722
  }
@@ -1554,90 +1724,103 @@ UPB_INLINE struct google_protobuf_SourceCodeInfo_Location* google_protobuf_Sourc
1554
1724
  /* google.protobuf.SourceCodeInfo.Location */
1555
1725
 
1556
1726
  UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_new(upb_arena *arena) {
1557
- return (google_protobuf_SourceCodeInfo_Location *)upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
1727
+ return (google_protobuf_SourceCodeInfo_Location *)_upb_msg_new(&google_protobuf_SourceCodeInfo_Location_msginit, arena);
1558
1728
  }
1559
1729
  UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_parse(const char *buf, size_t size,
1560
1730
  upb_arena *arena) {
1561
1731
  google_protobuf_SourceCodeInfo_Location *ret = google_protobuf_SourceCodeInfo_Location_new(arena);
1562
1732
  return (ret && upb_decode(buf, size, ret, &google_protobuf_SourceCodeInfo_Location_msginit, arena)) ? ret : NULL;
1563
1733
  }
1734
+ UPB_INLINE google_protobuf_SourceCodeInfo_Location *google_protobuf_SourceCodeInfo_Location_parse_ex(const char *buf, size_t size,
1735
+ upb_arena *arena, int options) {
1736
+ google_protobuf_SourceCodeInfo_Location *ret = google_protobuf_SourceCodeInfo_Location_new(arena);
1737
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_SourceCodeInfo_Location_msginit, arena, options))
1738
+ ? ret : NULL;
1739
+ }
1564
1740
  UPB_INLINE char *google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location *msg, upb_arena *arena, size_t *len) {
1565
1741
  return upb_encode(msg, &google_protobuf_SourceCodeInfo_Location_msginit, arena, len);
1566
1742
  }
1567
1743
 
1568
1744
  UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(20, 40), len); }
1569
1745
  UPB_INLINE int32_t const* google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(24, 48), len); }
1570
- UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_has_field(msg, 1); }
1571
- UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)); }
1572
- UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_has_field(msg, 2); }
1573
- UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)); }
1746
+ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_hasbit(msg, 1); }
1747
+ UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview); }
1748
+ UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return _upb_hasbit(msg, 2); }
1749
+ UPB_INLINE upb_strview google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview); }
1574
1750
  UPB_INLINE upb_strview const* google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) { return (upb_strview const*)_upb_array_accessor(msg, UPB_SIZE(28, 56), len); }
1575
1751
 
1576
1752
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
1577
1753
  return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 40), len);
1578
1754
  }
1579
1755
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
1580
- return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(20, 40), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
1756
+ return (int32_t*)_upb_array_resize_accessor2(msg, UPB_SIZE(20, 40), len, 2, arena);
1581
1757
  }
1582
1758
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) {
1583
- return _upb_array_append_accessor(
1584
- msg, UPB_SIZE(20, 40), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
1759
+ return _upb_array_append_accessor2(msg, UPB_SIZE(20, 40), 2, &val,
1760
+ arena);
1585
1761
  }
1586
1762
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
1587
1763
  return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(24, 48), len);
1588
1764
  }
1589
1765
  UPB_INLINE int32_t* google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
1590
- return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(24, 48), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
1766
+ return (int32_t*)_upb_array_resize_accessor2(msg, UPB_SIZE(24, 48), len, 2, arena);
1591
1767
  }
1592
1768
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) {
1593
- return _upb_array_append_accessor(
1594
- msg, UPB_SIZE(24, 48), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
1769
+ return _upb_array_append_accessor2(msg, UPB_SIZE(24, 48), 2, &val,
1770
+ arena);
1595
1771
  }
1596
1772
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) {
1597
1773
  _upb_sethas(msg, 1);
1598
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(4, 8)) = value;
1774
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 8), upb_strview) = value;
1599
1775
  }
1600
1776
  UPB_INLINE void google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) {
1601
1777
  _upb_sethas(msg, 2);
1602
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 24)) = value;
1778
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 24), upb_strview) = value;
1603
1779
  }
1604
1780
  UPB_INLINE upb_strview* google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) {
1605
1781
  return (upb_strview*)_upb_array_mutable_accessor(msg, UPB_SIZE(28, 56), len);
1606
1782
  }
1607
1783
  UPB_INLINE upb_strview* google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) {
1608
- return (upb_strview*)_upb_array_resize_accessor(msg, UPB_SIZE(28, 56), len, UPB_SIZE(8, 16), UPB_TYPE_STRING, arena);
1784
+ return (upb_strview*)_upb_array_resize_accessor2(msg, UPB_SIZE(28, 56), len, UPB_SIZE(3, 4), arena);
1609
1785
  }
1610
1786
  UPB_INLINE bool google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) {
1611
- return _upb_array_append_accessor(
1612
- msg, UPB_SIZE(28, 56), UPB_SIZE(8, 16), UPB_TYPE_STRING, &val, arena);
1787
+ return _upb_array_append_accessor2(msg, UPB_SIZE(28, 56), UPB_SIZE(3, 4), &val,
1788
+ arena);
1613
1789
  }
1614
1790
 
1615
1791
  /* google.protobuf.GeneratedCodeInfo */
1616
1792
 
1617
1793
  UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_new(upb_arena *arena) {
1618
- return (google_protobuf_GeneratedCodeInfo *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_msginit, arena);
1794
+ return (google_protobuf_GeneratedCodeInfo *)_upb_msg_new(&google_protobuf_GeneratedCodeInfo_msginit, arena);
1619
1795
  }
1620
1796
  UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_parse(const char *buf, size_t size,
1621
1797
  upb_arena *arena) {
1622
1798
  google_protobuf_GeneratedCodeInfo *ret = google_protobuf_GeneratedCodeInfo_new(arena);
1623
1799
  return (ret && upb_decode(buf, size, ret, &google_protobuf_GeneratedCodeInfo_msginit, arena)) ? ret : NULL;
1624
1800
  }
1801
+ UPB_INLINE google_protobuf_GeneratedCodeInfo *google_protobuf_GeneratedCodeInfo_parse_ex(const char *buf, size_t size,
1802
+ upb_arena *arena, int options) {
1803
+ google_protobuf_GeneratedCodeInfo *ret = google_protobuf_GeneratedCodeInfo_new(arena);
1804
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_GeneratedCodeInfo_msginit, arena, options))
1805
+ ? ret : NULL;
1806
+ }
1625
1807
  UPB_INLINE char *google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena, size_t *len) {
1626
1808
  return upb_encode(msg, &google_protobuf_GeneratedCodeInfo_msginit, arena, len);
1627
1809
  }
1628
1810
 
1811
+ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_has_annotation(const google_protobuf_GeneratedCodeInfo *msg) { return _upb_has_submsg_nohasbit(msg, UPB_SIZE(0, 0)); }
1629
1812
  UPB_INLINE const google_protobuf_GeneratedCodeInfo_Annotation* const* google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo *msg, size_t *len) { return (const google_protobuf_GeneratedCodeInfo_Annotation* const*)_upb_array_accessor(msg, UPB_SIZE(0, 0), len); }
1630
1813
 
1631
1814
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t *len) {
1632
1815
  return (google_protobuf_GeneratedCodeInfo_Annotation**)_upb_array_mutable_accessor(msg, UPB_SIZE(0, 0), len);
1633
1816
  }
1634
1817
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation** google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) {
1635
- return (google_protobuf_GeneratedCodeInfo_Annotation**)_upb_array_resize_accessor(msg, UPB_SIZE(0, 0), len, UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, arena);
1818
+ return (google_protobuf_GeneratedCodeInfo_Annotation**)_upb_array_resize_accessor2(msg, UPB_SIZE(0, 0), len, UPB_SIZE(2, 3), arena);
1636
1819
  }
1637
1820
  UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) {
1638
- struct google_protobuf_GeneratedCodeInfo_Annotation* sub = (struct google_protobuf_GeneratedCodeInfo_Annotation*)upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
1639
- bool ok = _upb_array_append_accessor(
1640
- msg, UPB_SIZE(0, 0), UPB_SIZE(4, 8), UPB_TYPE_MESSAGE, &sub, arena);
1821
+ struct google_protobuf_GeneratedCodeInfo_Annotation* sub = (struct google_protobuf_GeneratedCodeInfo_Annotation*)_upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
1822
+ bool ok = _upb_array_append_accessor2(
1823
+ msg, UPB_SIZE(0, 0), UPB_SIZE(2, 3), &sub, arena);
1641
1824
  if (!ok) return NULL;
1642
1825
  return sub;
1643
1826
  }
@@ -1645,46 +1828,52 @@ UPB_INLINE struct google_protobuf_GeneratedCodeInfo_Annotation* google_protobuf_
1645
1828
  /* google.protobuf.GeneratedCodeInfo.Annotation */
1646
1829
 
1647
1830
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_new(upb_arena *arena) {
1648
- return (google_protobuf_GeneratedCodeInfo_Annotation *)upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
1831
+ return (google_protobuf_GeneratedCodeInfo_Annotation *)_upb_msg_new(&google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena);
1649
1832
  }
1650
1833
  UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_parse(const char *buf, size_t size,
1651
1834
  upb_arena *arena) {
1652
1835
  google_protobuf_GeneratedCodeInfo_Annotation *ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
1653
1836
  return (ret && upb_decode(buf, size, ret, &google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena)) ? ret : NULL;
1654
1837
  }
1838
+ UPB_INLINE google_protobuf_GeneratedCodeInfo_Annotation *google_protobuf_GeneratedCodeInfo_Annotation_parse_ex(const char *buf, size_t size,
1839
+ upb_arena *arena, int options) {
1840
+ google_protobuf_GeneratedCodeInfo_Annotation *ret = google_protobuf_GeneratedCodeInfo_Annotation_new(arena);
1841
+ return (ret && _upb_decode(buf, size, ret, &google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena, options))
1842
+ ? ret : NULL;
1843
+ }
1655
1844
  UPB_INLINE char *google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_arena *arena, size_t *len) {
1656
1845
  return upb_encode(msg, &google_protobuf_GeneratedCodeInfo_Annotation_msginit, arena, len);
1657
1846
  }
1658
1847
 
1659
1848
  UPB_INLINE int32_t const* google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) { return (int32_t const*)_upb_array_accessor(msg, UPB_SIZE(20, 32), len); }
1660
- UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 3); }
1661
- UPB_INLINE upb_strview google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 16)); }
1662
- UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 1); }
1663
- UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)); }
1664
- UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_has_field(msg, 2); }
1665
- UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)); }
1849
+ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_hasbit(msg, 1); }
1850
+ UPB_INLINE upb_strview google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(12, 16), upb_strview); }
1851
+ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_hasbit(msg, 2); }
1852
+ UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t); }
1853
+ UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return _upb_hasbit(msg, 3); }
1854
+ UPB_INLINE int32_t google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) { return *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t); }
1666
1855
 
1667
1856
  UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) {
1668
1857
  return (int32_t*)_upb_array_mutable_accessor(msg, UPB_SIZE(20, 32), len);
1669
1858
  }
1670
1859
  UPB_INLINE int32_t* google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) {
1671
- return (int32_t*)_upb_array_resize_accessor(msg, UPB_SIZE(20, 32), len, UPB_SIZE(4, 4), UPB_TYPE_INT32, arena);
1860
+ return (int32_t*)_upb_array_resize_accessor2(msg, UPB_SIZE(20, 32), len, 2, arena);
1672
1861
  }
1673
1862
  UPB_INLINE bool google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) {
1674
- return _upb_array_append_accessor(
1675
- msg, UPB_SIZE(20, 32), UPB_SIZE(4, 4), UPB_TYPE_INT32, &val, arena);
1863
+ return _upb_array_append_accessor2(msg, UPB_SIZE(20, 32), 2, &val,
1864
+ arena);
1676
1865
  }
1677
1866
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_strview value) {
1678
- _upb_sethas(msg, 3);
1679
- UPB_FIELD_AT(msg, upb_strview, UPB_SIZE(12, 16)) = value;
1867
+ _upb_sethas(msg, 1);
1868
+ *UPB_PTR_AT(msg, UPB_SIZE(12, 16), upb_strview) = value;
1680
1869
  }
1681
1870
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
1682
- _upb_sethas(msg, 1);
1683
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(4, 4)) = value;
1871
+ _upb_sethas(msg, 2);
1872
+ *UPB_PTR_AT(msg, UPB_SIZE(4, 4), int32_t) = value;
1684
1873
  }
1685
1874
  UPB_INLINE void google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) {
1686
- _upb_sethas(msg, 2);
1687
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
1875
+ _upb_sethas(msg, 3);
1876
+ *UPB_PTR_AT(msg, UPB_SIZE(8, 8), int32_t) = value;
1688
1877
  }
1689
1878
 
1690
1879
  #ifdef __cplusplus