@triniwiz/nativescript-masonkit 1.0.0-alpha.5 → 1.0.0-alpha.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (345) hide show
  1. package/common.d.ts +7 -9
  2. package/common.js +277 -552
  3. package/common.js.map +1 -1
  4. package/helpers.d.ts +32 -10
  5. package/helpers.js +772 -286
  6. package/helpers.js.map +1 -1
  7. package/index.android.d.ts +6 -2
  8. package/index.android.js +21 -3
  9. package/index.android.js.map +1 -1
  10. package/index.d.ts +64 -7
  11. package/index.ios.d.ts +9 -6
  12. package/index.ios.js +39 -25
  13. package/index.ios.js.map +1 -1
  14. package/package.json +1 -1
  15. package/platforms/android/include.gradle +18 -1
  16. package/platforms/android/masonkit-release.aar +0 -0
  17. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +108 -64
  18. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/mason_native.h +47 -20
  19. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Info.plist +0 -0
  20. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
  21. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  22. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +7002 -1194
  23. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +58 -21
  24. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  25. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +58 -21
  26. package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  27. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +216 -128
  28. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/mason_native.h +47 -20
  29. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Info.plist +0 -0
  30. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
  31. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  32. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  33. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +7002 -1194
  34. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +58 -21
  35. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  36. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +58 -21
  37. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +7002 -1194
  38. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +58 -21
  39. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  40. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +58 -21
  41. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +43 -43
  42. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  43. package/platforms/ios/build.xcconfig +1 -2
  44. package/platforms/ios/src/MasonV8Module.h +583 -0
  45. package/platforms/ios/src/MasonV8Module.mm +1005 -0
  46. package/platforms/ios/src/{include → cpp/include}/mason_native.h +47 -20
  47. package/platforms/ios/src/cpp/include/robin_hood.h +2544 -0
  48. package/platforms/ios/src/module.modulemap +2 -2
  49. package/platforms/new_native_src/cpp/Caches.cpp +36 -0
  50. package/platforms/new_native_src/cpp/Caches.h +42 -0
  51. package/platforms/new_native_src/cpp/Common.h +34 -0
  52. package/platforms/new_native_src/cpp/ConcurrentMap.h +57 -0
  53. package/platforms/new_native_src/cpp/Helpers.cpp +101 -0
  54. package/platforms/new_native_src/cpp/Helpers.h +364 -0
  55. package/platforms/new_native_src/cpp/MasonImpl.cpp +68 -0
  56. package/platforms/new_native_src/cpp/MasonImpl.h +40 -0
  57. package/platforms/new_native_src/cpp/MasonNodeImpl.cpp +89 -0
  58. package/platforms/new_native_src/cpp/MasonNodeImpl.h +47 -0
  59. package/platforms/new_native_src/cpp/MasonStyleImpl.cpp +2181 -0
  60. package/platforms/new_native_src/cpp/MasonStyleImpl.h +420 -0
  61. package/platforms/{ios/Mason.xcframework/ios-arm64/Mason.framework/PrivateHeaders → new_native_src/cpp/include}/mason_native.h +464 -168
  62. package/platforms/new_native_src/cpp/include/robin_hood.h +2544 -0
  63. package/pods/Headers/include/APIDesign.md +72 -0
  64. package/pods/Headers/include/DEPS +10 -0
  65. package/pods/Headers/include/DIR_METADATA +11 -0
  66. package/pods/Headers/include/OWNERS +23 -0
  67. package/pods/Headers/include/cppgc/DEPS +8 -0
  68. package/pods/Headers/include/cppgc/OWNERS +2 -0
  69. package/pods/Headers/include/cppgc/README.md +133 -0
  70. package/pods/Headers/include/cppgc/allocation.h +310 -0
  71. package/pods/Headers/include/cppgc/common.h +29 -0
  72. package/pods/Headers/include/cppgc/cross-thread-persistent.h +465 -0
  73. package/pods/Headers/include/cppgc/custom-space.h +97 -0
  74. package/pods/Headers/include/cppgc/default-platform.h +67 -0
  75. package/pods/Headers/include/cppgc/ephemeron-pair.h +30 -0
  76. package/pods/Headers/include/cppgc/explicit-management.h +100 -0
  77. package/pods/Headers/include/cppgc/garbage-collected.h +106 -0
  78. package/pods/Headers/include/cppgc/heap-consistency.h +266 -0
  79. package/pods/Headers/include/cppgc/heap-state.h +82 -0
  80. package/pods/Headers/include/cppgc/heap-statistics.h +120 -0
  81. package/pods/Headers/include/cppgc/heap.h +206 -0
  82. package/pods/Headers/include/cppgc/internal/api-constants.h +55 -0
  83. package/pods/Headers/include/cppgc/internal/atomic-entry-flag.h +48 -0
  84. package/pods/Headers/include/cppgc/internal/caged-heap-local-data.h +79 -0
  85. package/pods/Headers/include/cppgc/internal/compiler-specific.h +38 -0
  86. package/pods/Headers/include/cppgc/internal/finalizer-trait.h +93 -0
  87. package/pods/Headers/include/cppgc/internal/gc-info.h +156 -0
  88. package/pods/Headers/include/cppgc/internal/logging.h +50 -0
  89. package/pods/Headers/include/cppgc/internal/name-trait.h +122 -0
  90. package/pods/Headers/include/cppgc/internal/persistent-node.h +216 -0
  91. package/pods/Headers/include/cppgc/internal/pointer-policies.h +186 -0
  92. package/pods/Headers/include/cppgc/internal/write-barrier.h +435 -0
  93. package/pods/Headers/include/cppgc/liveness-broker.h +77 -0
  94. package/pods/Headers/include/cppgc/macros.h +26 -0
  95. package/pods/Headers/include/cppgc/member.h +291 -0
  96. package/pods/Headers/include/cppgc/name-provider.h +65 -0
  97. package/pods/Headers/include/cppgc/object-size-trait.h +58 -0
  98. package/pods/Headers/include/cppgc/persistent.h +370 -0
  99. package/pods/Headers/include/cppgc/platform.h +156 -0
  100. package/pods/Headers/include/cppgc/prefinalizer.h +75 -0
  101. package/pods/Headers/include/cppgc/process-heap-statistics.h +36 -0
  102. package/pods/Headers/include/cppgc/sentinel-pointer.h +32 -0
  103. package/pods/Headers/include/cppgc/source-location.h +92 -0
  104. package/pods/Headers/include/cppgc/testing.h +106 -0
  105. package/pods/Headers/include/cppgc/trace-trait.h +116 -0
  106. package/pods/Headers/include/cppgc/type-traits.h +240 -0
  107. package/pods/Headers/include/cppgc/visitor.h +379 -0
  108. package/pods/Headers/include/js_protocol-1.2.json +936 -0
  109. package/pods/Headers/include/js_protocol-1.3.json +1112 -0
  110. package/pods/Headers/include/js_protocol.pdl +1709 -0
  111. package/pods/Headers/include/libffi/arm64/ffi.h +524 -0
  112. package/pods/Headers/include/libffi/arm64/ffitarget.h +92 -0
  113. package/pods/Headers/include/libffi/x86_64/ffi.h +524 -0
  114. package/pods/Headers/include/libffi/x86_64/ffitarget.h +147 -0
  115. package/pods/Headers/include/libffi.h +12 -0
  116. package/pods/Headers/include/libplatform/DEPS +9 -0
  117. package/pods/Headers/include/libplatform/libplatform-export.h +29 -0
  118. package/pods/Headers/include/libplatform/libplatform.h +106 -0
  119. package/pods/Headers/include/libplatform/v8-tracing.h +333 -0
  120. package/pods/Headers/include/v8-array-buffer.h +433 -0
  121. package/pods/Headers/include/v8-callbacks.h +397 -0
  122. package/pods/Headers/include/v8-container.h +129 -0
  123. package/pods/Headers/include/v8-context.h +407 -0
  124. package/pods/Headers/include/v8-cppgc.h +215 -0
  125. package/pods/Headers/include/v8-data.h +80 -0
  126. package/pods/Headers/include/v8-date.h +43 -0
  127. package/pods/Headers/include/v8-debug.h +168 -0
  128. package/pods/Headers/include/v8-embedder-heap.h +218 -0
  129. package/pods/Headers/include/v8-embedder-state-scope.h +51 -0
  130. package/pods/Headers/include/v8-exception.h +217 -0
  131. package/pods/Headers/include/v8-extension.h +62 -0
  132. package/pods/Headers/include/v8-external.h +37 -0
  133. package/pods/Headers/include/v8-fast-api-calls.h +939 -0
  134. package/pods/Headers/include/v8-forward.h +81 -0
  135. package/pods/Headers/include/v8-function-callback.h +475 -0
  136. package/pods/Headers/include/v8-function.h +125 -0
  137. package/pods/Headers/include/v8-initialization.h +315 -0
  138. package/pods/Headers/include/v8-inspector-protocol.h +13 -0
  139. package/pods/Headers/include/v8-inspector.h +376 -0
  140. package/pods/Headers/include/v8-internal.h +661 -0
  141. package/pods/Headers/include/v8-isolate.h +1709 -0
  142. package/pods/Headers/include/v8-json.h +47 -0
  143. package/pods/Headers/include/v8-local-handle.h +455 -0
  144. package/pods/Headers/include/v8-locker.h +149 -0
  145. package/pods/Headers/include/v8-maybe.h +137 -0
  146. package/pods/Headers/include/v8-memory-span.h +43 -0
  147. package/pods/Headers/include/v8-message.h +216 -0
  148. package/pods/Headers/include/v8-metrics.h +255 -0
  149. package/pods/Headers/include/v8-microtask-queue.h +152 -0
  150. package/pods/Headers/include/v8-microtask.h +28 -0
  151. package/pods/Headers/include/v8-object.h +775 -0
  152. package/pods/Headers/include/v8-persistent-handle.h +590 -0
  153. package/pods/Headers/include/v8-platform.h +1092 -0
  154. package/pods/Headers/include/v8-primitive-object.h +118 -0
  155. package/pods/Headers/include/v8-primitive.h +866 -0
  156. package/pods/Headers/include/v8-profiler.h +1198 -0
  157. package/pods/Headers/include/v8-promise.h +174 -0
  158. package/pods/Headers/include/v8-proxy.h +50 -0
  159. package/pods/Headers/include/v8-regexp.h +105 -0
  160. package/pods/Headers/include/v8-script.h +748 -0
  161. package/pods/Headers/include/v8-snapshot.h +196 -0
  162. package/pods/Headers/include/v8-statistics.h +217 -0
  163. package/pods/Headers/include/v8-template.h +1079 -0
  164. package/pods/Headers/include/v8-traced-handle.h +420 -0
  165. package/pods/Headers/include/v8-typed-array.h +282 -0
  166. package/pods/Headers/include/v8-unwinder-state.h +31 -0
  167. package/pods/Headers/include/v8-unwinder.h +132 -0
  168. package/pods/Headers/include/v8-util.h +658 -0
  169. package/pods/Headers/include/v8-value-serializer-version.h +24 -0
  170. package/pods/Headers/include/v8-value-serializer.h +279 -0
  171. package/pods/Headers/include/v8-value.h +526 -0
  172. package/pods/Headers/include/v8-version-string.h +38 -0
  173. package/pods/Headers/include/v8-version.h +20 -0
  174. package/pods/Headers/include/v8-wasm-trap-handler-posix.h +31 -0
  175. package/pods/Headers/include/v8-wasm-trap-handler-win.h +28 -0
  176. package/pods/Headers/include/v8-wasm.h +257 -0
  177. package/pods/Headers/include/v8-weak-callback-info.h +86 -0
  178. package/pods/Headers/include/v8.h +88 -0
  179. package/pods/Headers/include/v8config.h +605 -0
  180. package/pods/Headers/inspector/InspectorServer.h +20 -0
  181. package/pods/Headers/inspector/JsV8InspectorClient.h +66 -0
  182. package/pods/Headers/inspector/base/trace_event/common/trace_event_common.h +1123 -0
  183. package/pods/Headers/inspector/base64.h +9 -0
  184. package/pods/Headers/inspector/src/base/address-region.h +95 -0
  185. package/pods/Headers/inspector/src/base/atomic-utils.h +219 -0
  186. package/pods/Headers/inspector/src/base/atomicops.h +332 -0
  187. package/pods/Headers/inspector/src/base/atomicops_internals_atomicword_compat.h +89 -0
  188. package/pods/Headers/inspector/src/base/base-export.h +31 -0
  189. package/pods/Headers/inspector/src/base/bits.h +343 -0
  190. package/pods/Headers/inspector/src/base/build_config.h +234 -0
  191. package/pods/Headers/inspector/src/base/compiler-specific.h +136 -0
  192. package/pods/Headers/inspector/src/base/export-template.h +163 -0
  193. package/pods/Headers/inspector/src/base/flags.h +130 -0
  194. package/pods/Headers/inspector/src/base/immediate-crash.h +162 -0
  195. package/pods/Headers/inspector/src/base/lazy-instance.h +258 -0
  196. package/pods/Headers/inspector/src/base/logging.h +417 -0
  197. package/pods/Headers/inspector/src/base/macros.h +423 -0
  198. package/pods/Headers/inspector/src/base/memory.h +89 -0
  199. package/pods/Headers/inspector/src/base/once.h +108 -0
  200. package/pods/Headers/inspector/src/base/optional.h +882 -0
  201. package/pods/Headers/inspector/src/base/platform/mutex.h +370 -0
  202. package/pods/Headers/inspector/src/base/platform/platform.h +476 -0
  203. package/pods/Headers/inspector/src/base/platform/semaphore.h +108 -0
  204. package/pods/Headers/inspector/src/base/platform/v8-time.h +513 -0
  205. package/pods/Headers/inspector/src/base/platform/wrappers.h +73 -0
  206. package/pods/Headers/inspector/src/base/safe_conversions.h +389 -0
  207. package/pods/Headers/inspector/src/base/safe_conversions_impl.h +822 -0
  208. package/pods/Headers/inspector/src/base/template-utils.h +113 -0
  209. package/pods/Headers/inspector/src/base/v8-fallthrough.h +21 -0
  210. package/pods/Headers/inspector/src/common/checks.h +38 -0
  211. package/pods/Headers/inspector/src/common/globals.h +1842 -0
  212. package/pods/Headers/inspector/src/debug/debug-interface.h +667 -0
  213. package/pods/Headers/inspector/src/debug/interface-types.h +175 -0
  214. package/pods/Headers/inspector/src/init/v8.h +52 -0
  215. package/pods/Headers/inspector/src/inspector/custom-preview.h +24 -0
  216. package/pods/Headers/inspector/src/inspector/injected-script.h +251 -0
  217. package/pods/Headers/inspector/src/inspector/inspected-context.h +79 -0
  218. package/pods/Headers/inspector/src/inspector/protocol/CSS.h +2148 -0
  219. package/pods/Headers/inspector/src/inspector/protocol/Console.h +211 -0
  220. package/pods/Headers/inspector/src/inspector/protocol/DOM.h +1008 -0
  221. package/pods/Headers/inspector/src/inspector/protocol/Debugger.h +892 -0
  222. package/pods/Headers/inspector/src/inspector/protocol/Forward.h +75 -0
  223. package/pods/Headers/inspector/src/inspector/protocol/HeapProfiler.h +346 -0
  224. package/pods/Headers/inspector/src/inspector/protocol/Log.h +342 -0
  225. package/pods/Headers/inspector/src/inspector/protocol/Network.h +2528 -0
  226. package/pods/Headers/inspector/src/inspector/protocol/Overlay.h +281 -0
  227. package/pods/Headers/inspector/src/inspector/protocol/Page.h +1189 -0
  228. package/pods/Headers/inspector/src/inspector/protocol/Profiler.h +1001 -0
  229. package/pods/Headers/inspector/src/inspector/protocol/Protocol.h +617 -0
  230. package/pods/Headers/inspector/src/inspector/protocol/Runtime.h +1696 -0
  231. package/pods/Headers/inspector/src/inspector/protocol/Schema.h +146 -0
  232. package/pods/Headers/inspector/src/inspector/protocol/Security.h +793 -0
  233. package/pods/Headers/inspector/src/inspector/remote-object-id.h +54 -0
  234. package/pods/Headers/inspector/src/inspector/search-util.h +26 -0
  235. package/pods/Headers/inspector/src/inspector/string-16.h +180 -0
  236. package/pods/Headers/inspector/src/inspector/string-util.h +128 -0
  237. package/pods/Headers/inspector/src/inspector/v8-console-agent-impl.h +48 -0
  238. package/pods/Headers/inspector/src/inspector/v8-console-message.h +147 -0
  239. package/pods/Headers/inspector/src/inspector/v8-console.h +173 -0
  240. package/pods/Headers/inspector/src/inspector/v8-css-agent-impl.h +62 -0
  241. package/pods/Headers/inspector/src/inspector/v8-debugger-agent-impl.h +248 -0
  242. package/pods/Headers/inspector/src/inspector/v8-debugger-id.h +44 -0
  243. package/pods/Headers/inspector/src/inspector/v8-debugger-script.h +123 -0
  244. package/pods/Headers/inspector/src/inspector/v8-debugger.h +257 -0
  245. package/pods/Headers/inspector/src/inspector/v8-dom-agent-impl.h +91 -0
  246. package/pods/Headers/inspector/src/inspector/v8-heap-profiler-agent-impl.h +80 -0
  247. package/pods/Headers/inspector/src/inspector/v8-inspector-impl.h +191 -0
  248. package/pods/Headers/inspector/src/inspector/v8-inspector-session-impl.h +156 -0
  249. package/pods/Headers/inspector/src/inspector/v8-log-agent-impl.h +34 -0
  250. package/pods/Headers/inspector/src/inspector/v8-network-agent-impl.h +71 -0
  251. package/pods/Headers/inspector/src/inspector/v8-ns-debugger-agent-impl.h +24 -0
  252. package/pods/Headers/inspector/src/inspector/v8-overlay-agent-impl.h +70 -0
  253. package/pods/Headers/inspector/src/inspector/v8-page-agent-impl.h +88 -0
  254. package/pods/Headers/inspector/src/inspector/v8-profiler-agent-impl.h +104 -0
  255. package/pods/Headers/inspector/src/inspector/v8-regex.h +38 -0
  256. package/pods/Headers/inspector/src/inspector/v8-runtime-agent-impl.h +157 -0
  257. package/pods/Headers/inspector/src/inspector/v8-schema-agent-impl.h +38 -0
  258. package/pods/Headers/inspector/src/inspector/v8-stack-trace-impl.h +164 -0
  259. package/pods/Headers/inspector/src/inspector/v8-string-conversions.h +17 -0
  260. package/pods/Headers/inspector/src/inspector/v8-value-utils.h +23 -0
  261. package/pods/Headers/inspector/src/inspector/value-mirror.h +87 -0
  262. package/pods/Headers/inspector/src/libplatform/default-platform.h +92 -0
  263. package/pods/Headers/inspector/src/logging/tracing-flags.h +50 -0
  264. package/pods/Headers/inspector/src/numbers/conversions.h +183 -0
  265. package/pods/Headers/inspector/src/tracing/trace-event.h +664 -0
  266. package/pods/Headers/inspector/src/utils/allocation.h +367 -0
  267. package/pods/Headers/inspector/src/utils/vector.h +324 -0
  268. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/cbor.h +305 -0
  269. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/dispatch.h +314 -0
  270. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/error_support.h +62 -0
  271. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/export.h +6 -0
  272. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/find_by_first.h +58 -0
  273. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/frontend_channel.h +47 -0
  274. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/glue.h +80 -0
  275. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json.h +52 -0
  276. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json_platform.h +26 -0
  277. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/maybe.h +104 -0
  278. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/parser_handler.h +39 -0
  279. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/protocol_core.h +406 -0
  280. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializable.h +32 -0
  281. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializer_traits.h +158 -0
  282. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/span.h +99 -0
  283. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/status.h +139 -0
  284. package/pods/Headers/inspector/utils.h +32 -0
  285. package/pods/Headers/inspector/v8-inspector-platform.h +44 -0
  286. package/pods/Headers/jsi/decorator.h +762 -0
  287. package/pods/Headers/jsi/instrumentation.h +117 -0
  288. package/pods/Headers/jsi/jsi-inl.h +322 -0
  289. package/pods/Headers/jsi/jsi.h +1387 -0
  290. package/pods/Headers/jsi/jsilib.h +59 -0
  291. package/pods/Headers/jsi/threadsafe.h +79 -0
  292. package/pods/Headers/runtime/ArgConverter.h +61 -0
  293. package/pods/Headers/runtime/ArrayAdapter.h +13 -0
  294. package/pods/Headers/runtime/Caches.h +98 -0
  295. package/pods/Headers/runtime/ClassBuilder.h +61 -0
  296. package/pods/Headers/runtime/Common.h +9 -0
  297. package/pods/Headers/runtime/ConcurrentMap.h +55 -0
  298. package/pods/Headers/runtime/ConcurrentQueue.h +28 -0
  299. package/pods/Headers/runtime/Console.h +27 -0
  300. package/pods/Headers/runtime/Constants.h +15 -0
  301. package/pods/Headers/runtime/DataWrapper.h +671 -0
  302. package/pods/Headers/runtime/DictionaryAdapter.h +13 -0
  303. package/pods/Headers/runtime/ExtVector.h +21 -0
  304. package/pods/Headers/runtime/FFICall.h +105 -0
  305. package/pods/Headers/runtime/FastEnumerationAdapter.h +13 -0
  306. package/pods/Headers/runtime/FunctionReference.h +18 -0
  307. package/pods/Headers/runtime/Helpers.h +84 -0
  308. package/pods/Headers/runtime/InlineFunctions.h +16 -0
  309. package/pods/Headers/runtime/Interop.h +202 -0
  310. package/pods/Headers/runtime/KnownUnknownClassPair.h +35 -0
  311. package/pods/Headers/runtime/Metadata.h +981 -0
  312. package/pods/Headers/runtime/MetadataBuilder.h +72 -0
  313. package/pods/Headers/runtime/MetadataInlines.h +157 -0
  314. package/pods/Headers/runtime/ModuleInternal.h +59 -0
  315. package/pods/Headers/runtime/NSDataAdapter.h +13 -0
  316. package/pods/Headers/runtime/NativeScriptException.h +27 -0
  317. package/pods/Headers/runtime/ObjectManager.h +31 -0
  318. package/pods/Headers/runtime/OneByteStringResource.h +21 -0
  319. package/pods/Headers/runtime/Pointer.h +26 -0
  320. package/pods/Headers/runtime/PromiseProxy.h +15 -0
  321. package/pods/Headers/runtime/Reference.h +38 -0
  322. package/pods/Headers/runtime/Runtime.h +67 -0
  323. package/pods/Headers/runtime/RuntimeConfig.h +17 -0
  324. package/pods/Headers/runtime/SetTimeout.h +34 -0
  325. package/pods/Headers/runtime/SimpleAllocator.h +23 -0
  326. package/pods/Headers/runtime/StringHasher.h +315 -0
  327. package/pods/Headers/runtime/SymbolIterator.h +18 -0
  328. package/pods/Headers/runtime/SymbolLoader.h +27 -0
  329. package/pods/Headers/runtime/TNSDerivedClass.h +8 -0
  330. package/pods/Headers/runtime/TSHelpers.h +15 -0
  331. package/pods/Headers/runtime/Tasks.h +19 -0
  332. package/pods/Headers/runtime/UnmanagedType.h +21 -0
  333. package/pods/Headers/runtime/WeakRef.h +15 -0
  334. package/pods/Headers/runtime/Worker.h +26 -0
  335. package/pods/Headers/runtime/robin_hood.h +2184 -0
  336. package/pods/Headers/v8runtime/HostProxy.h +71 -0
  337. package/pods/Headers/v8runtime/JSIV8ValueConverter.h +70 -0
  338. package/pods/Headers/v8runtime/V8PointerValue.h +44 -0
  339. package/pods/Headers/v8runtime/V8Runtime.h +215 -0
  340. package/pods/Headers/v8runtime/V8RuntimeConfig.h +26 -0
  341. package/pods/Headers/v8runtime/V8RuntimeFactory.h +21 -0
  342. package/pods/NativeScript.podspec +68 -0
  343. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/PrivateHeaders/mason_native.h +0 -676
  344. package/platforms/ios/src/JSIModule.h +0 -217
  345. package/platforms/ios/src/JSIModule.mm +0 -2788
@@ -0,0 +1,664 @@
1
+ // Copyright 2015 the V8 project authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ #ifndef V8_TRACING_TRACE_EVENT_H_
6
+ #define V8_TRACING_TRACE_EVENT_H_
7
+
8
+ #include <stddef.h>
9
+ #include <memory>
10
+
11
+ // Include first to ensure that V8_USE_PERFETTO can be defined before use.
12
+ #include "v8config.h" // NOLINT(build/include_directory)
13
+
14
+ #if defined(V8_USE_PERFETTO)
15
+ #include "protos/perfetto/trace/track_event/debug_annotation.pbzero.h"
16
+ #include "src/tracing/trace-categories.h"
17
+ #else
18
+ #include "base/trace_event/common/trace_event_common.h"
19
+ #endif // !defined(V8_USE_PERFETTO)
20
+
21
+ #include "include/v8-platform.h"
22
+ #include "src/base/atomicops.h"
23
+ #include "src/base/macros.h"
24
+ #include "src/base/platform/wrappers.h"
25
+
26
+ // This header file defines implementation details of how the trace macros in
27
+ // trace_event_common.h collect and store trace events. Anything not
28
+ // implementation-specific should go in trace_macros_common.h instead of here.
29
+
30
+
31
+ // The pointer returned from GetCategoryGroupEnabled() points to a
32
+ // value with zero or more of the following bits. Used in this class only.
33
+ // The TRACE_EVENT macros should only use the value as a bool.
34
+ // These values must be in sync with macro values in trace_log.h in
35
+ // chromium.
36
+ enum CategoryGroupEnabledFlags {
37
+ // Category group enabled for the recording mode.
38
+ kEnabledForRecording_CategoryGroupEnabledFlags = 1 << 0,
39
+ // Category group enabled by SetEventCallbackEnabled().
40
+ kEnabledForEventCallback_CategoryGroupEnabledFlags = 1 << 2,
41
+ // Category group enabled to export events to ETW.
42
+ kEnabledForETWExport_CategoryGroupEnabledFlags = 1 << 3,
43
+ };
44
+
45
+ #if !defined(V8_USE_PERFETTO)
46
+
47
+ // TODO(petermarshall): Remove with the old tracing implementation - Perfetto
48
+ // copies const char* arguments by default.
49
+ // By default, const char* argument values are assumed to have long-lived scope
50
+ // and will not be copied. Use this macro to force a const char* to be copied.
51
+ #define TRACE_STR_COPY(str) v8::internal::tracing::TraceStringWithCopy(str)
52
+
53
+ // By default, trace IDs are eventually converted to a single 64-bit number. Use
54
+ // this macro to add a scope string.
55
+ #define TRACE_ID_WITH_SCOPE(scope, id) \
56
+ v8::internal::tracing::TraceID::WithScope(scope, id)
57
+
58
+ #define INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE() \
59
+ TRACE_EVENT_API_LOAD_CATEGORY_GROUP_ENABLED() & \
60
+ (kEnabledForRecording_CategoryGroupEnabledFlags | \
61
+ kEnabledForEventCallback_CategoryGroupEnabledFlags)
62
+
63
+ // The following macro has no implementation, but it needs to exist since
64
+ // it gets called from scoped trace events. It cannot call UNIMPLEMENTED()
65
+ // since an empty implementation is a valid one.
66
+ #define INTERNAL_TRACE_MEMORY(category, name)
67
+
68
+ ////////////////////////////////////////////////////////////////////////////////
69
+ // Implementation specific tracing API definitions.
70
+
71
+ // Get a pointer to the enabled state of the given trace category. Only
72
+ // long-lived literal strings should be given as the category group. The
73
+ // returned pointer can be held permanently in a local static for example. If
74
+ // the unsigned char is non-zero, tracing is enabled. If tracing is enabled,
75
+ // TRACE_EVENT_API_ADD_TRACE_EVENT can be called. It's OK if tracing is disabled
76
+ // between the load of the tracing state and the call to
77
+ // TRACE_EVENT_API_ADD_TRACE_EVENT, because this flag only provides an early out
78
+ // for best performance when tracing is disabled.
79
+ // const uint8_t*
80
+ // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group)
81
+ #define TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED \
82
+ v8::internal::tracing::TraceEventHelper::GetTracingController() \
83
+ ->GetCategoryGroupEnabled
84
+
85
+ // Get the number of times traces have been recorded. This is used to implement
86
+ // the TRACE_EVENT_IS_NEW_TRACE facility.
87
+ // unsigned int TRACE_EVENT_API_GET_NUM_TRACES_RECORDED()
88
+ #define TRACE_EVENT_API_GET_NUM_TRACES_RECORDED UNIMPLEMENTED()
89
+
90
+ // Add a trace event to the platform tracing system.
91
+ // uint64_t TRACE_EVENT_API_ADD_TRACE_EVENT(
92
+ // char phase,
93
+ // const uint8_t* category_group_enabled,
94
+ // const char* name,
95
+ // const char* scope,
96
+ // uint64_t id,
97
+ // uint64_t bind_id,
98
+ // int num_args,
99
+ // const char** arg_names,
100
+ // const uint8_t* arg_types,
101
+ // const uint64_t* arg_values,
102
+ // unsigned int flags)
103
+ #define TRACE_EVENT_API_ADD_TRACE_EVENT v8::internal::tracing::AddTraceEventImpl
104
+
105
+ // Add a trace event to the platform tracing system.
106
+ // uint64_t TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP(
107
+ // char phase,
108
+ // const uint8_t* category_group_enabled,
109
+ // const char* name,
110
+ // const char* scope,
111
+ // uint64_t id,
112
+ // uint64_t bind_id,
113
+ // int num_args,
114
+ // const char** arg_names,
115
+ // const uint8_t* arg_types,
116
+ // const uint64_t* arg_values,
117
+ // unsigned int flags,
118
+ // int64_t timestamp)
119
+ #define TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP \
120
+ v8::internal::tracing::AddTraceEventWithTimestampImpl
121
+
122
+ // Set the duration field of a COMPLETE trace event.
123
+ // void TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION(
124
+ // const uint8_t* category_group_enabled,
125
+ // const char* name,
126
+ // uint64_t id)
127
+ #define TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION \
128
+ v8::internal::tracing::TraceEventHelper::GetTracingController() \
129
+ ->UpdateTraceEventDuration
130
+
131
+ // Defines atomic operations used internally by the tracing system.
132
+ #define TRACE_EVENT_API_ATOMIC_WORD v8::base::AtomicWord
133
+ #define TRACE_EVENT_API_ATOMIC_LOAD(var) v8::base::Relaxed_Load(&(var))
134
+ #define TRACE_EVENT_API_ATOMIC_STORE(var, value) \
135
+ v8::base::Relaxed_Store(&(var), (value))
136
+ #define TRACE_EVENT_API_LOAD_CATEGORY_GROUP_ENABLED() \
137
+ v8::base::Relaxed_Load(reinterpret_cast<const v8::base::Atomic8*>( \
138
+ INTERNAL_TRACE_EVENT_UID(category_group_enabled)))
139
+
140
+ ////////////////////////////////////////////////////////////////////////////////
141
+
142
+ // Implementation detail: trace event macros create temporary variables
143
+ // to keep instrumentation overhead low. These macros give each temporary
144
+ // variable a unique name based on the line number to prevent name collisions.
145
+ #define INTERNAL_TRACE_EVENT_UID3(a, b) trace_event_unique_##a##b
146
+ #define INTERNAL_TRACE_EVENT_UID2(a, b) INTERNAL_TRACE_EVENT_UID3(a, b)
147
+ #define INTERNAL_TRACE_EVENT_UID(name_prefix) \
148
+ INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__)
149
+
150
+ // Implementation detail: internal macro to create static category.
151
+ // No barriers are needed, because this code is designed to operate safely
152
+ // even when the unsigned char* points to garbage data (which may be the case
153
+ // on processors without cache coherency).
154
+ // TODO(fmeawad): This implementation contradicts that we can have a different
155
+ // configuration for each isolate,
156
+ // https://code.google.com/p/v8/issues/detail?id=4563
157
+ #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES( \
158
+ category_group, atomic, category_group_enabled) \
159
+ category_group_enabled = \
160
+ reinterpret_cast<const uint8_t*>(TRACE_EVENT_API_ATOMIC_LOAD(atomic)); \
161
+ if (!category_group_enabled) { \
162
+ category_group_enabled = \
163
+ TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group); \
164
+ TRACE_EVENT_API_ATOMIC_STORE( \
165
+ atomic, reinterpret_cast<TRACE_EVENT_API_ATOMIC_WORD>( \
166
+ category_group_enabled)); \
167
+ }
168
+
169
+ #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group) \
170
+ static TRACE_EVENT_API_ATOMIC_WORD INTERNAL_TRACE_EVENT_UID(atomic) = 0; \
171
+ const uint8_t* INTERNAL_TRACE_EVENT_UID(category_group_enabled); \
172
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES( \
173
+ category_group, INTERNAL_TRACE_EVENT_UID(atomic), \
174
+ INTERNAL_TRACE_EVENT_UID(category_group_enabled));
175
+
176
+ // Implementation detail: internal macro to create static category and add
177
+ // event if the category is enabled.
178
+ #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \
179
+ do { \
180
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
181
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
182
+ v8::internal::tracing::AddTraceEvent( \
183
+ phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
184
+ v8::internal::tracing::kGlobalScope, v8::internal::tracing::kNoId, \
185
+ v8::internal::tracing::kNoId, flags, ##__VA_ARGS__); \
186
+ } \
187
+ } while (false)
188
+
189
+ // Implementation detail: internal macro to create static category and add begin
190
+ // event if the category is enabled. Also adds the end event when the scope
191
+ // ends.
192
+ #define INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, ...) \
193
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
194
+ v8::internal::tracing::ScopedTracer INTERNAL_TRACE_EVENT_UID(tracer); \
195
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
196
+ uint64_t h = v8::internal::tracing::AddTraceEvent( \
197
+ TRACE_EVENT_PHASE_COMPLETE, \
198
+ INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
199
+ v8::internal::tracing::kGlobalScope, v8::internal::tracing::kNoId, \
200
+ v8::internal::tracing::kNoId, TRACE_EVENT_FLAG_NONE, ##__VA_ARGS__); \
201
+ INTERNAL_TRACE_EVENT_UID(tracer) \
202
+ .Initialize(INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
203
+ h); \
204
+ }
205
+
206
+ #define INTERNAL_TRACE_EVENT_ADD_SCOPED_WITH_FLOW(category_group, name, \
207
+ bind_id, flow_flags, ...) \
208
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
209
+ v8::internal::tracing::ScopedTracer INTERNAL_TRACE_EVENT_UID(tracer); \
210
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
211
+ unsigned int trace_event_flags = flow_flags; \
212
+ v8::internal::tracing::TraceID trace_event_bind_id(bind_id, \
213
+ &trace_event_flags); \
214
+ uint64_t h = v8::internal::tracing::AddTraceEvent( \
215
+ TRACE_EVENT_PHASE_COMPLETE, \
216
+ INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
217
+ v8::internal::tracing::kGlobalScope, v8::internal::tracing::kNoId, \
218
+ trace_event_bind_id.raw_id(), trace_event_flags, ##__VA_ARGS__); \
219
+ INTERNAL_TRACE_EVENT_UID(tracer) \
220
+ .Initialize(INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
221
+ h); \
222
+ }
223
+
224
+ // Implementation detail: internal macro to create static category and add
225
+ // event if the category is enabled.
226
+ #define INTERNAL_TRACE_EVENT_ADD_WITH_ID(phase, category_group, name, id, \
227
+ flags, ...) \
228
+ do { \
229
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
230
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
231
+ unsigned int trace_event_flags = flags | TRACE_EVENT_FLAG_HAS_ID; \
232
+ v8::internal::tracing::TraceID trace_event_trace_id(id, \
233
+ &trace_event_flags); \
234
+ v8::internal::tracing::AddTraceEvent( \
235
+ phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
236
+ trace_event_trace_id.scope(), trace_event_trace_id.raw_id(), \
237
+ v8::internal::tracing::kNoId, trace_event_flags, ##__VA_ARGS__); \
238
+ } \
239
+ } while (false)
240
+
241
+ // Adds a trace event with a given timestamp.
242
+ #define INTERNAL_TRACE_EVENT_ADD_WITH_TIMESTAMP(phase, category_group, name, \
243
+ timestamp, flags, ...) \
244
+ do { \
245
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
246
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
247
+ v8::internal::tracing::AddTraceEventWithTimestamp( \
248
+ phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
249
+ v8::internal::tracing::kGlobalScope, v8::internal::tracing::kNoId, \
250
+ v8::internal::tracing::kNoId, flags, timestamp, ##__VA_ARGS__); \
251
+ } \
252
+ } while (false)
253
+
254
+ // Adds a trace event with a given id and timestamp.
255
+ #define INTERNAL_TRACE_EVENT_ADD_WITH_ID_AND_TIMESTAMP( \
256
+ phase, category_group, name, id, timestamp, flags, ...) \
257
+ do { \
258
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
259
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
260
+ unsigned int trace_event_flags = flags | TRACE_EVENT_FLAG_HAS_ID; \
261
+ v8::internal::tracing::TraceID trace_event_trace_id(id, \
262
+ &trace_event_flags); \
263
+ v8::internal::tracing::AddTraceEventWithTimestamp( \
264
+ phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
265
+ trace_event_trace_id.scope(), trace_event_trace_id.raw_id(), \
266
+ v8::internal::tracing::kNoId, trace_event_flags, timestamp, \
267
+ ##__VA_ARGS__); \
268
+ } \
269
+ } while (false)
270
+
271
+ // Adds a trace event with a given id, thread_id, and timestamp. This redirects
272
+ // to INTERNAL_TRACE_EVENT_ADD_WITH_ID_AND_TIMESTAMP as we presently do not care
273
+ // about the thread id.
274
+ #define INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
275
+ phase, category_group, name, id, thread_id, timestamp, flags, ...) \
276
+ INTERNAL_TRACE_EVENT_ADD_WITH_ID_AND_TIMESTAMP( \
277
+ phase, category_group, name, id, timestamp, flags, ##__VA_ARGS__)
278
+
279
+ #define TRACE_EVENT_CALL_STATS_SCOPED(isolate, category_group, name) \
280
+ INTERNAL_TRACE_EVENT_CALL_STATS_SCOPED(isolate, category_group, name)
281
+
282
+ #ifdef V8_RUNTIME_CALL_STATS
283
+ #define INTERNAL_TRACE_EVENT_CALL_STATS_SCOPED(isolate, category_group, name) \
284
+ INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
285
+ v8::internal::tracing::CallStatsScopedTracer INTERNAL_TRACE_EVENT_UID( \
286
+ tracer); \
287
+ if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
288
+ INTERNAL_TRACE_EVENT_UID(tracer) \
289
+ .Initialize(isolate, INTERNAL_TRACE_EVENT_UID(category_group_enabled), \
290
+ name); \
291
+ }
292
+ #else // V8_RUNTIME_CALL_STATS
293
+ #define INTERNAL_TRACE_EVENT_CALL_STATS_SCOPED(isolate, category_group, name)
294
+ #endif // V8_RUNTIME_CALL_STATS
295
+
296
+ namespace v8 {
297
+ namespace internal {
298
+
299
+ class Isolate;
300
+
301
+ namespace tracing {
302
+
303
+ // Specify these values when the corresponding argument of AddTraceEvent
304
+ // is not used.
305
+ const int kZeroNumArgs = 0;
306
+ const decltype(nullptr) kGlobalScope = nullptr;
307
+ const uint64_t kNoId = 0;
308
+
309
+ class TraceEventHelper {
310
+ public:
311
+ V8_EXPORT_PRIVATE static v8::TracingController* GetTracingController();
312
+ };
313
+
314
+ // TraceID encapsulates an ID that can either be an integer or pointer.
315
+ class TraceID {
316
+ public:
317
+ class WithScope {
318
+ public:
319
+ WithScope(const char* scope, uint64_t raw_id)
320
+ : scope_(scope), raw_id_(raw_id) {}
321
+ uint64_t raw_id() const { return raw_id_; }
322
+ const char* scope() const { return scope_; }
323
+
324
+ private:
325
+ const char* scope_ = nullptr;
326
+ uint64_t raw_id_;
327
+ };
328
+
329
+ TraceID(const void* raw_id, unsigned int* flags)
330
+ : raw_id_(static_cast<uint64_t>(reinterpret_cast<uintptr_t>(raw_id))) {}
331
+ TraceID(uint64_t raw_id, unsigned int* flags) : raw_id_(raw_id) {
332
+ (void)flags;
333
+ }
334
+ TraceID(unsigned int raw_id, unsigned int* flags) : raw_id_(raw_id) {
335
+ (void)flags;
336
+ }
337
+ TraceID(uint16_t raw_id, unsigned int* flags) : raw_id_(raw_id) {
338
+ (void)flags;
339
+ }
340
+ TraceID(unsigned char raw_id, unsigned int* flags) : raw_id_(raw_id) {
341
+ (void)flags;
342
+ }
343
+ TraceID(int64_t raw_id, unsigned int* flags)
344
+ : raw_id_(static_cast<uint64_t>(raw_id)) {
345
+ (void)flags;
346
+ }
347
+ TraceID(int raw_id, unsigned int* flags)
348
+ : raw_id_(static_cast<uint64_t>(raw_id)) {
349
+ (void)flags;
350
+ }
351
+ TraceID(int16_t raw_id, unsigned int* flags)
352
+ : raw_id_(static_cast<uint64_t>(raw_id)) {
353
+ (void)flags;
354
+ }
355
+ TraceID(signed char raw_id, unsigned int* flags)
356
+ : raw_id_(static_cast<uint64_t>(raw_id)) {
357
+ (void)flags;
358
+ }
359
+ TraceID(WithScope scoped_id, unsigned int* flags)
360
+ : scope_(scoped_id.scope()), raw_id_(scoped_id.raw_id()) {}
361
+
362
+ uint64_t raw_id() const { return raw_id_; }
363
+ const char* scope() const { return scope_; }
364
+
365
+ private:
366
+ const char* scope_ = nullptr;
367
+ uint64_t raw_id_;
368
+ };
369
+
370
+ // Simple container for const char* that should be copied instead of retained.
371
+ class TraceStringWithCopy {
372
+ public:
373
+ explicit TraceStringWithCopy(const char* str) : str_(str) {}
374
+ operator const char*() const { return str_; }
375
+
376
+ private:
377
+ const char* str_;
378
+ };
379
+
380
+ static V8_INLINE uint64_t AddTraceEventImpl(
381
+ char phase, const uint8_t* category_group_enabled, const char* name,
382
+ const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
383
+ const char** arg_names, const uint8_t* arg_types,
384
+ const uint64_t* arg_values, unsigned int flags) {
385
+ std::unique_ptr<ConvertableToTraceFormat> arg_convertables[2];
386
+ if (num_args > 0 && arg_types[0] == TRACE_VALUE_TYPE_CONVERTABLE) {
387
+ arg_convertables[0].reset(reinterpret_cast<ConvertableToTraceFormat*>(
388
+ static_cast<intptr_t>(arg_values[0])));
389
+ }
390
+ if (num_args > 1 && arg_types[1] == TRACE_VALUE_TYPE_CONVERTABLE) {
391
+ arg_convertables[1].reset(reinterpret_cast<ConvertableToTraceFormat*>(
392
+ static_cast<intptr_t>(arg_values[1])));
393
+ }
394
+ DCHECK_LE(num_args, 2);
395
+ v8::TracingController* controller =
396
+ v8::internal::tracing::TraceEventHelper::GetTracingController();
397
+ return controller->AddTraceEvent(phase, category_group_enabled, name, scope,
398
+ id, bind_id, num_args, arg_names, arg_types,
399
+ arg_values, arg_convertables, flags);
400
+ }
401
+
402
+ static V8_INLINE uint64_t AddTraceEventWithTimestampImpl(
403
+ char phase, const uint8_t* category_group_enabled, const char* name,
404
+ const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
405
+ const char** arg_names, const uint8_t* arg_types,
406
+ const uint64_t* arg_values, unsigned int flags, int64_t timestamp) {
407
+ std::unique_ptr<ConvertableToTraceFormat> arg_convertables[2];
408
+ if (num_args > 0 && arg_types[0] == TRACE_VALUE_TYPE_CONVERTABLE) {
409
+ arg_convertables[0].reset(reinterpret_cast<ConvertableToTraceFormat*>(
410
+ static_cast<intptr_t>(arg_values[0])));
411
+ }
412
+ if (num_args > 1 && arg_types[1] == TRACE_VALUE_TYPE_CONVERTABLE) {
413
+ arg_convertables[1].reset(reinterpret_cast<ConvertableToTraceFormat*>(
414
+ static_cast<intptr_t>(arg_values[1])));
415
+ }
416
+ DCHECK_LE(num_args, 2);
417
+ v8::TracingController* controller =
418
+ v8::internal::tracing::TraceEventHelper::GetTracingController();
419
+ return controller->AddTraceEventWithTimestamp(
420
+ phase, category_group_enabled, name, scope, id, bind_id, num_args,
421
+ arg_names, arg_types, arg_values, arg_convertables, flags, timestamp);
422
+ }
423
+
424
+ // Define SetTraceValue for each allowed type. It stores the type and
425
+ // value in the return arguments. This allows this API to avoid declaring any
426
+ // structures so that it is portable to third_party libraries.
427
+ // This is the base implementation for integer types (including bool) and enums.
428
+ template <typename T>
429
+ static V8_INLINE typename std::enable_if<
430
+ std::is_integral<T>::value || std::is_enum<T>::value, void>::type
431
+ SetTraceValue(T arg, unsigned char* type, uint64_t* value) {
432
+ *type = std::is_same<T, bool>::value
433
+ ? TRACE_VALUE_TYPE_BOOL
434
+ : std::is_signed<T>::value ? TRACE_VALUE_TYPE_INT
435
+ : TRACE_VALUE_TYPE_UINT;
436
+ *value = static_cast<uint64_t>(arg);
437
+ }
438
+
439
+ #define INTERNAL_DECLARE_SET_TRACE_VALUE(actual_type, value_type_id) \
440
+ static V8_INLINE void SetTraceValue(actual_type arg, unsigned char* type, \
441
+ uint64_t* value) { \
442
+ *type = value_type_id; \
443
+ *value = 0; \
444
+ STATIC_ASSERT(sizeof(arg) <= sizeof(*value)); \
445
+ base::Memcpy(value, &arg, sizeof(arg)); \
446
+ }
447
+ INTERNAL_DECLARE_SET_TRACE_VALUE(double, TRACE_VALUE_TYPE_DOUBLE)
448
+ INTERNAL_DECLARE_SET_TRACE_VALUE(const void*, TRACE_VALUE_TYPE_POINTER)
449
+ INTERNAL_DECLARE_SET_TRACE_VALUE(const char*, TRACE_VALUE_TYPE_STRING)
450
+ INTERNAL_DECLARE_SET_TRACE_VALUE(const TraceStringWithCopy&,
451
+ TRACE_VALUE_TYPE_COPY_STRING)
452
+ #undef INTERNAL_DECLARE_SET_TRACE_VALUE
453
+
454
+ static V8_INLINE void SetTraceValue(ConvertableToTraceFormat* convertable_value,
455
+ unsigned char* type, uint64_t* value) {
456
+ *type = TRACE_VALUE_TYPE_CONVERTABLE;
457
+ *value = static_cast<uint64_t>(reinterpret_cast<intptr_t>(convertable_value));
458
+ }
459
+
460
+ template <typename T>
461
+ static V8_INLINE typename std::enable_if<
462
+ std::is_convertible<T*, ConvertableToTraceFormat*>::value>::type
463
+ SetTraceValue(std::unique_ptr<T> ptr, unsigned char* type, uint64_t* value) {
464
+ SetTraceValue(ptr.release(), type, value);
465
+ }
466
+
467
+ // These AddTraceEvent template
468
+ // function is defined here instead of in the macro, because the arg_values
469
+ // could be temporary objects, such as std::string. In order to store
470
+ // pointers to the internal c_str and pass through to the tracing API,
471
+ // the arg_values must live throughout these procedures.
472
+
473
+ static V8_INLINE uint64_t AddTraceEvent(char phase,
474
+ const uint8_t* category_group_enabled,
475
+ const char* name, const char* scope,
476
+ uint64_t id, uint64_t bind_id,
477
+ unsigned int flags) {
478
+ return TRACE_EVENT_API_ADD_TRACE_EVENT(phase, category_group_enabled, name,
479
+ scope, id, bind_id, kZeroNumArgs,
480
+ nullptr, nullptr, nullptr, flags);
481
+ }
482
+
483
+ template <class ARG1_TYPE>
484
+ static V8_INLINE uint64_t AddTraceEvent(
485
+ char phase, const uint8_t* category_group_enabled, const char* name,
486
+ const char* scope, uint64_t id, uint64_t bind_id, unsigned int flags,
487
+ const char* arg1_name, ARG1_TYPE&& arg1_val) {
488
+ const int num_args = 1;
489
+ uint8_t arg_type;
490
+ uint64_t arg_value;
491
+ SetTraceValue(std::forward<ARG1_TYPE>(arg1_val), &arg_type, &arg_value);
492
+ return TRACE_EVENT_API_ADD_TRACE_EVENT(
493
+ phase, category_group_enabled, name, scope, id, bind_id, num_args,
494
+ &arg1_name, &arg_type, &arg_value, flags);
495
+ }
496
+
497
+ template <class ARG1_TYPE, class ARG2_TYPE>
498
+ static V8_INLINE uint64_t AddTraceEvent(
499
+ char phase, const uint8_t* category_group_enabled, const char* name,
500
+ const char* scope, uint64_t id, uint64_t bind_id, unsigned int flags,
501
+ const char* arg1_name, ARG1_TYPE&& arg1_val, const char* arg2_name,
502
+ ARG2_TYPE&& arg2_val) {
503
+ const int num_args = 2;
504
+ const char* arg_names[2] = {arg1_name, arg2_name};
505
+ unsigned char arg_types[2];
506
+ uint64_t arg_values[2];
507
+ SetTraceValue(std::forward<ARG1_TYPE>(arg1_val), &arg_types[0],
508
+ &arg_values[0]);
509
+ SetTraceValue(std::forward<ARG2_TYPE>(arg2_val), &arg_types[1],
510
+ &arg_values[1]);
511
+ return TRACE_EVENT_API_ADD_TRACE_EVENT(
512
+ phase, category_group_enabled, name, scope, id, bind_id, num_args,
513
+ arg_names, arg_types, arg_values, flags);
514
+ }
515
+
516
+ static V8_INLINE uint64_t AddTraceEventWithTimestamp(
517
+ char phase, const uint8_t* category_group_enabled, const char* name,
518
+ const char* scope, uint64_t id, uint64_t bind_id, unsigned int flags,
519
+ int64_t timestamp) {
520
+ return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP(
521
+ phase, category_group_enabled, name, scope, id, bind_id, kZeroNumArgs,
522
+ nullptr, nullptr, nullptr, flags, timestamp);
523
+ }
524
+
525
+ template <class ARG1_TYPE>
526
+ static V8_INLINE uint64_t AddTraceEventWithTimestamp(
527
+ char phase, const uint8_t* category_group_enabled, const char* name,
528
+ const char* scope, uint64_t id, uint64_t bind_id, unsigned int flags,
529
+ int64_t timestamp, const char* arg1_name, ARG1_TYPE&& arg1_val) {
530
+ const int num_args = 1;
531
+ uint8_t arg_type;
532
+ uint64_t arg_value;
533
+ SetTraceValue(std::forward<ARG1_TYPE>(arg1_val), &arg_type, &arg_value);
534
+ return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP(
535
+ phase, category_group_enabled, name, scope, id, bind_id, num_args,
536
+ &arg1_name, &arg_type, &arg_value, flags, timestamp);
537
+ }
538
+
539
+ template <class ARG1_TYPE, class ARG2_TYPE>
540
+ static V8_INLINE uint64_t AddTraceEventWithTimestamp(
541
+ char phase, const uint8_t* category_group_enabled, const char* name,
542
+ const char* scope, uint64_t id, uint64_t bind_id, unsigned int flags,
543
+ int64_t timestamp, const char* arg1_name, ARG1_TYPE&& arg1_val,
544
+ const char* arg2_name, ARG2_TYPE&& arg2_val) {
545
+ const int num_args = 2;
546
+ const char* arg_names[2] = {arg1_name, arg2_name};
547
+ unsigned char arg_types[2];
548
+ uint64_t arg_values[2];
549
+ SetTraceValue(std::forward<ARG1_TYPE>(arg1_val), &arg_types[0],
550
+ &arg_values[0]);
551
+ SetTraceValue(std::forward<ARG2_TYPE>(arg2_val), &arg_types[1],
552
+ &arg_values[1]);
553
+ return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP(
554
+ phase, category_group_enabled, name, scope, id, bind_id, num_args,
555
+ arg_names, arg_types, arg_values, flags, timestamp);
556
+ }
557
+
558
+ // Used by TRACE_EVENTx macros. Do not use directly.
559
+ class ScopedTracer {
560
+ public:
561
+ // Note: members of data_ intentionally left uninitialized. See Initialize.
562
+ ScopedTracer() : p_data_(nullptr) {}
563
+
564
+ ~ScopedTracer() {
565
+ if (p_data_ && base::Relaxed_Load(reinterpret_cast<const base::Atomic8*>(
566
+ data_.category_group_enabled))) {
567
+ TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION(
568
+ data_.category_group_enabled, data_.name, data_.event_handle);
569
+ }
570
+ }
571
+
572
+ void Initialize(const uint8_t* category_group_enabled, const char* name,
573
+ uint64_t event_handle) {
574
+ data_.category_group_enabled = category_group_enabled;
575
+ data_.name = name;
576
+ data_.event_handle = event_handle;
577
+ p_data_ = &data_;
578
+ }
579
+
580
+ private:
581
+ // This Data struct workaround is to avoid initializing all the members
582
+ // in Data during construction of this object, since this object is always
583
+ // constructed, even when tracing is disabled. If the members of Data were
584
+ // members of this class instead, compiler warnings occur about potential
585
+ // uninitialized accesses.
586
+ struct Data {
587
+ const uint8_t* category_group_enabled;
588
+ const char* name;
589
+ uint64_t event_handle;
590
+ };
591
+ Data* p_data_;
592
+ Data data_;
593
+ };
594
+
595
+ #ifdef V8_RUNTIME_CALL_STATS
596
+ // Do not use directly.
597
+ class CallStatsScopedTracer {
598
+ public:
599
+ CallStatsScopedTracer() : p_data_(nullptr) {}
600
+ ~CallStatsScopedTracer() {
601
+ if (V8_UNLIKELY(p_data_ && *data_.category_group_enabled)) {
602
+ AddEndTraceEvent();
603
+ }
604
+ }
605
+
606
+ void Initialize(v8::internal::Isolate* isolate,
607
+ const uint8_t* category_group_enabled, const char* name);
608
+
609
+ private:
610
+ void AddEndTraceEvent();
611
+ struct Data {
612
+ const uint8_t* category_group_enabled;
613
+ const char* name;
614
+ v8::internal::Isolate* isolate;
615
+ };
616
+ bool has_parent_scope_;
617
+ Data* p_data_;
618
+ Data data_;
619
+ };
620
+ #endif // defined(V8_RUNTIME_CALL_STATS)
621
+
622
+ } // namespace tracing
623
+ } // namespace internal
624
+ } // namespace v8
625
+
626
+ #else // defined(V8_USE_PERFETTO)
627
+
628
+ #ifdef V8_RUNTIME_CALL_STATS
629
+
630
+ #define TRACE_EVENT_CALL_STATS_SCOPED(isolate, category, name) \
631
+ struct PERFETTO_UID(ScopedEvent) { \
632
+ struct ScopedStats { \
633
+ ScopedStats(v8::internal::Isolate* isolate_arg, int) { \
634
+ TRACE_EVENT_BEGIN(category, name, [&](perfetto::EventContext) { \
635
+ isolate_ = isolate_arg; \
636
+ internal::RuntimeCallStats* table = \
637
+ isolate_->counters()->runtime_call_stats(); \
638
+ has_parent_scope_ = table->InUse(); \
639
+ if (!has_parent_scope_) table->Reset(); \
640
+ }); \
641
+ } \
642
+ ~ScopedStats() { \
643
+ TRACE_EVENT_END(category, [&](perfetto::EventContext ctx) { \
644
+ if (!has_parent_scope_ && isolate_) { \
645
+ /* TODO(skyostil): Write as typed event instead of JSON */ \
646
+ auto value = v8::tracing::TracedValue::Create(); \
647
+ isolate_->counters()->runtime_call_stats()->Dump(value.get()); \
648
+ auto annotation = ctx.event()->add_debug_annotations(); \
649
+ annotation->set_name("runtime-call-stats"); \
650
+ value->Add(annotation); \
651
+ } \
652
+ }); \
653
+ } \
654
+ v8::internal::Isolate* isolate_; \
655
+ bool has_parent_scope_; \
656
+ } stats; \
657
+ } PERFETTO_UID(scoped_event) { \
658
+ { isolate, 0 } \
659
+ }
660
+
661
+ #endif // defined(V8_RUNTIME_CALL_STATS)
662
+ #endif // defined(V8_USE_PERFETTO)
663
+
664
+ #endif // V8_TRACING_TRACE_EVENT_H_