protobufjs 4.1.2 → 5.0.2

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 (188) hide show
  1. package/.travis.yml +3 -1
  2. package/README.md +147 -25
  3. package/bin/pbjs +2 -2
  4. package/bower.json +3 -3
  5. package/cli/pbjs/targets/amd.js +1 -1
  6. package/cli/pbjs/targets/json.js +9 -1
  7. package/cli/pbjs/targets/proto.js +48 -24
  8. package/cli/pbjs/util.js +1 -1
  9. package/cli/pbjs.js +9 -2
  10. package/dist/README.md +10 -10
  11. package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
  12. package/dist/protobuf-light.min.js +94 -0
  13. package/dist/protobuf-light.min.js.gz +0 -0
  14. package/dist/protobuf-light.min.map +8 -0
  15. package/dist/{ProtoBuf.js → protobuf.js} +265 -175
  16. package/dist/protobuf.min.js +116 -0
  17. package/dist/protobuf.min.js.gz +0 -0
  18. package/dist/protobuf.min.map +8 -0
  19. package/docs/ProtoBuf.Builder.Message.html +1473 -967
  20. package/docs/ProtoBuf.Builder.Service.html +266 -197
  21. package/docs/ProtoBuf.Builder.html +758 -542
  22. package/docs/ProtoBuf.DotProto.Parser.html +223 -161
  23. package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
  24. package/docs/ProtoBuf.DotProto.html +20 -12
  25. package/docs/ProtoBuf.Element.html +554 -554
  26. package/docs/ProtoBuf.Map.html +158 -123
  27. package/docs/ProtoBuf.Reflect.Element.html +286 -143
  28. package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
  29. package/docs/ProtoBuf.Reflect.Enum.html +757 -537
  30. package/docs/ProtoBuf.Reflect.Extension.html +73 -56
  31. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
  32. package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
  33. package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
  34. package/docs/ProtoBuf.Reflect.Message.html +919 -652
  35. package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
  36. package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
  37. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
  38. package/docs/ProtoBuf.Reflect.Service.html +721 -511
  39. package/docs/ProtoBuf.Reflect.T.html +268 -197
  40. package/docs/ProtoBuf.Reflect.html +20 -12
  41. package/docs/ProtoBuf.Util.html +169 -118
  42. package/docs/ProtoBuf.html +840 -628
  43. package/docs/ProtoBuf.js.html +271 -180
  44. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  45. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  46. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  47. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  48. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  49. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  50. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  51. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  52. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  53. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  54. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  55. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  56. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  57. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  58. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  59. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  60. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  61. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  62. package/docs/index.html +7 -5
  63. package/docs/styles/jsdoc-default.css +95 -75
  64. package/docs/styles/prettify-tomorrow.css +1 -1
  65. package/donate.png +0 -0
  66. package/examples/protoify/json.js +123 -123
  67. package/examples/protoify/json.json +123 -123
  68. package/examples/websocket/server.js +4 -4
  69. package/externs/{ProtoBuf.js → protobuf.js} +933 -922
  70. package/index.js +1 -18
  71. package/jsdoc.json +1 -1
  72. package/package.json +11 -11
  73. package/protobuf.png +0 -0
  74. package/scripts/build.js +53 -58
  75. package/src/ProtoBuf/Builder/Message.js +18 -9
  76. package/src/ProtoBuf/Builder/Service.js +3 -0
  77. package/src/ProtoBuf/Builder.js +34 -10
  78. package/src/ProtoBuf/DotProto/Parser.js +58 -23
  79. package/src/ProtoBuf/Reflect/Element.js +17 -4
  80. package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
  81. package/src/ProtoBuf/Reflect/Message.js +9 -4
  82. package/src/ProtoBuf/Util.js +116 -116
  83. package/src/bower.json +2 -2
  84. package/src/google/protobuf/descriptor.json +55 -15
  85. package/src/{ProtoBuf.js → protobuf.js} +0 -0
  86. package/src/wrap.js +4 -4
  87. package/tests/bench.txt +373 -373
  88. package/tests/complex.json +8 -1
  89. package/tests/custom-options.json +169 -169
  90. package/tests/extend.json +71 -71
  91. package/tests/imports-weak.proto +7 -0
  92. package/tests/imports.json +83 -83
  93. package/tests/nodeunit-browser/nodeunit.css +70 -70
  94. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  95. package/tests/options.json +32 -32
  96. package/tests/proto2js/Bar.json +46 -46
  97. package/tests/suite.js +107 -82
  98. package/ProtoBuf.png +0 -0
  99. package/dist/ProtoBuf-light.min.js +0 -87
  100. package/dist/ProtoBuf-light.min.js.gz +0 -0
  101. package/dist/ProtoBuf-light.min.map +0 -8
  102. package/dist/ProtoBuf.min.js +0 -108
  103. package/dist/ProtoBuf.min.js.gz +0 -0
  104. package/dist/ProtoBuf.min.map +0 -8
  105. package/externs/ByteBuffer.js +0 -767
  106. package/externs/Long.js +0 -328
  107. package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
  108. package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
  109. package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
  110. package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
  111. package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
  112. package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
  113. package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
  114. package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
  115. package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
  116. package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
  117. package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
  118. package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
  119. package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
  120. package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
  121. package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
  122. package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
  123. package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
  124. package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
  125. package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
  126. package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
  127. package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
  128. package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
  129. package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
  130. package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
  131. package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
  132. package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
  133. package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
  134. package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
  135. package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
  136. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
  137. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
  138. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
  139. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
  140. package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
  141. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
  142. package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
  143. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
  144. package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
  145. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
  146. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
  147. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
  148. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
  149. package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
  150. package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
  151. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
  152. package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
  153. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
  154. package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
  155. package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
  156. package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
  157. package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
  158. package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
  159. package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
  160. package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
  161. package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
  162. package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
  163. package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
  164. package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
  165. package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
  166. package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
  167. package/sandbox/gapi/test.js +0 -17
  168. package/sandbox/gapi/test.proto +0 -12
  169. package/sandbox/issue146/MyOptions.proto +0 -28
  170. package/sandbox/issue146/Sample.proto +0 -21
  171. package/sandbox/issue146/main.js +0 -3
  172. package/sandbox/issue147/enum.proto +0 -8
  173. package/sandbox/issue147/main.js +0 -3
  174. package/sandbox/issue182/commands.proto +0 -10
  175. package/sandbox/issue182/execute.js +0 -22
  176. package/sandbox/issue182/session_commands.proto +0 -14
  177. package/sandbox/issue289/A.proto +0 -8
  178. package/sandbox/issue289/B.proto +0 -8
  179. package/sandbox/issue289/common.proto +0 -5
  180. package/sandbox/issue289/main.js +0 -7
  181. package/sandbox/issue300/IAuth.proto +0 -14
  182. package/sandbox/issue300/Request.proto +0 -14
  183. package/sandbox/issue300/main.js +0 -26
  184. package/sandbox/issue42/innerextend.proto +0 -18
  185. package/sandbox/issue42/main.js +0 -8
  186. package/sandbox/issue42/outerextend.proto +0 -17
  187. package/tests/gtfs-realtime.proto +0 -552
  188. package/webpack.config.js +0 -9
package/tests/bench.txt CHANGED
@@ -1,373 +1,373 @@
1
- Statistical profiling result from v8.log, (1544 ticks, 944 unaccounted, 0 excluded).
2
-
3
- [Unknown]:
4
- ticks total nonlib name
5
- 944 61.1%
6
-
7
- [Shared libraries]:
8
- ticks total nonlib name
9
-
10
- [JavaScript]:
11
- ticks total nonlib name
12
- 248 16.1% 16.1% LazyCompile: *Buffer.write buffer.js:315
13
- 190 12.3% 12.3% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
14
- 189 12.2% 12.2% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
15
- 188 12.2% 12.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
16
- 142 9.2% 9.2% LazyCompile: *Buffer.toString buffer.js:392
17
- 84 5.4% 5.4% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
18
- 62 4.0% 4.0% LazyCompile: *toLowerCase native string.js:739
19
- 47 3.0% 3.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
20
- 38 2.5% 2.5% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
21
- 36 2.3% 2.3% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
22
- 27 1.7% 1.7% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
23
- 25 1.6% 1.6% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
24
- 25 1.6% 1.6% Builtin: A builtin from the snapshot
25
- 24 1.6% 1.6% Stub: CompareICStub
26
- 15 1.0% 1.0% Stub: CEntryStub
27
- 15 1.0% 1.0% LazyCompile: <anonymous> native string.js:36
28
- 15 1.0% 1.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
29
- 11 0.7% 0.7% Stub: InstanceofStub
30
- 11 0.7% 0.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
31
- 11 0.7% 0.7% KeyedLoadIC: A keyed load IC from the snapshot
32
- 10 0.6% 0.6% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
33
- 9 0.6% 0.6% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
34
- 9 0.6% 0.6% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
35
- 8 0.5% 0.5% LazyCompile: ~NativeModule.compile node.js:892
36
- 7 0.5% 0.5% Stub: KeyedLoadElementStub
37
- 6 0.4% 0.4% Stub: CompareICStub {2}
38
- 6 0.4% 0.4% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
39
- 6 0.4% 0.4% LazyCompile: *isFinite native v8natives.js:103
40
- 5 0.3% 0.3% Stub: ToBooleanStub_UndefinedSpecObject
41
- 5 0.3% 0.3% LazyCompile: ~Module._compile module.js:374
42
- 5 0.3% 0.3% Builtin: A builtin from the snapshot {3}
43
- 4 0.3% 0.3% Stub: ToBooleanStub
44
- 4 0.3% 0.3% Stub: KeyedLoadElementStub {1}
45
- 4 0.3% 0.3% LazyCompile: *module.exports.ByteBuffer.remaining x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2397
46
- 3 0.2% 0.2% KeyedStoreIC: A keyed store IC from the snapshot
47
- 2 0.1% 0.1% Stub: BinaryOpStub_SHR_Alloc_SMI
48
- 2 0.1% 0.1% Stub: BinaryOpStub_SHL_Alloc_SMI
49
- 2 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
50
- 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
51
- 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:23
52
- 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:22
53
- 2 0.1% 0.1% Function: ~<anonymous> net.js:1
54
- 1 0.1% 0.1% Stub: ToBooleanStub {1}
55
- 1 0.1% 0.1% Stub: CompareICStub {1}
56
- 1 0.1% 0.1% Stub: CallConstructStub
57
- 1 0.1% 0.1% Stub: BinaryOpStub_MUL_Alloc_SMI
58
- 1 0.1% 0.1% Stub: BinaryOpStub_BIT_OR_OverwriteLeft_SMI
59
- 1 0.1% 0.1% LazyCompile: ~tryFile module.js:138
60
- 1 0.1% 0.1% LazyCompile: ~nextTick node.js:334
61
- 1 0.1% 0.1% LazyCompile: ~module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
62
- 1 0.1% 0.1% LazyCompile: ~join native array.js:410
63
- 1 0.1% 0.1% LazyCompile: ~fs.statSync fs.js:687
64
- 1 0.1% 0.1% LazyCompile: ~fs.openSync fs.js:429
65
- 1 0.1% 0.1% LazyCompile: ~fs.fstatSync fs.js:678
66
- 1 0.1% 0.1% LazyCompile: ~filter native array.js:1036
67
- 1 0.1% 0.1% LazyCompile: ~exec native regexp.js:168
68
- 1 0.1% 0.1% LazyCompile: ~createWriteReq net.js:658
69
- 1 0.1% 0.1% LazyCompile: ~createWritableStdioStream node.js:550
70
- 1 0.1% 0.1% LazyCompile: ~bind native v8natives.js:1578
71
- 1 0.1% 0.1% LazyCompile: ~StringSplitOnRegExp native string.js:591
72
- 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
73
- 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
74
- 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Field x:\public\ProtoBuf\dist\ProtoBuf.js:2401
75
- 1 0.1% 0.1% LazyCompile: ~ProtoBuf.DotProto.Parser._parseId x:\public\ProtoBuf\dist\ProtoBuf.js:724
76
- 1 0.1% 0.1% LazyCompile: ~Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
77
- 1 0.1% 0.1% LazyCompile: ~Buffer.write buffer.js:315
78
- 1 0.1% 0.1% LazyCompile: ~Buffer buffer.js:156
79
- 1 0.1% 0.1% LazyCompile: statPath module.js:88
80
- 1 0.1% 0.1% KeyedLoadIC: args_count: 0
81
- 1 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
82
- 1 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\node_modules\long\dist\Long.js:23
83
- 1 0.1% 0.1% Function: ~<anonymous> fs.js:1
84
- 1 0.1% 0.1% Builtin: A builtin from the snapshot {2}
85
- 1 0.1% 0.1% Builtin: A builtin from the snapshot {1}
86
-
87
- [C++]:
88
- ticks total nonlib name
89
-
90
- [GC]:
91
- ticks total nonlib name
92
- 2 0.1%
93
-
94
- [Bottom up (heavy) profile]:
95
- Note: percentage shows a share of a particular caller in the total
96
- amount of its parent calls.
97
- Callers occupying less than 2.0% are not shown.
98
-
99
- ticks parent name
100
- 248 16.1% LazyCompile: *Buffer.write buffer.js:315
101
- 247 99.6% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
102
- 247 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
103
- 247 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
104
- 247 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
105
- 247 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
106
-
107
- 190 12.3% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
108
- 190 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
109
- 190 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
110
- 182 95.8% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
111
- 182 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
112
- 182 100.0% LazyCompile: ~Module._compile module.js:374
113
- 8 4.2% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
114
- 8 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
115
- 8 100.0% LazyCompile: ~Module._compile module.js:374
116
-
117
- 189 12.2% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
118
- 189 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
119
- 183 96.8% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
120
- 183 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
121
- 183 100.0% LazyCompile: ~Module._compile module.js:374
122
- 183 100.0% LazyCompile: ~Module._extensions..js module.js:472
123
- 6 3.2% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
124
- 6 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
125
- 6 100.0% LazyCompile: ~Module._compile module.js:374
126
- 6 100.0% LazyCompile: ~Module._extensions..js module.js:472
127
-
128
- 188 12.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
129
- 188 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
130
- 188 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
131
- 187 99.5% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
132
- 187 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
133
- 178 95.2% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
134
- 9 4.8% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
135
-
136
- 142 9.2% LazyCompile: *Buffer.toString buffer.js:392
137
- 142 100.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
138
- 141 99.3% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
139
- 141 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
140
- 141 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
141
- 132 93.6% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
142
- 9 6.4% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
143
-
144
- 84 5.4% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
145
- 82 97.6% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
146
- 82 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
147
- 82 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
148
- 79 96.3% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
149
- 79 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
150
- 3 3.7% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
151
- 3 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
152
- 2 2.4% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
153
- 2 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
154
- 2 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
155
- 2 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
156
- 2 100.0% LazyCompile: ~Module._compile module.js:374
157
-
158
- 62 4.0% LazyCompile: *toLowerCase native string.js:739
159
- 36 58.1% LazyCompile: *Buffer.write buffer.js:315
160
- 36 100.0% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
161
- 36 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
162
- 36 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
163
- 36 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
164
- 23 37.1% LazyCompile: *Buffer.toString buffer.js:392
165
- 23 100.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
166
- 23 100.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
167
- 23 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
168
- 23 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
169
- 2 3.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
170
- 2 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
171
- 2 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
172
- 2 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
173
- 2 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
174
-
175
- 47 3.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
176
- 46 97.9% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
177
- 46 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
178
- 44 95.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
179
- 44 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
180
- 44 100.0% LazyCompile: ~Module._compile module.js:374
181
- 2 4.3% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
182
- 2 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
183
- 2 100.0% LazyCompile: ~Module._compile module.js:374
184
-
185
- 38 2.5% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
186
- 26 68.4% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
187
- 26 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
188
- 26 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
189
- 26 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
190
- 26 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
191
- 6 15.8% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
192
- 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
193
- 6 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
194
- 6 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
195
- 6 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
196
- 6 15.8% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
197
- 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
198
- 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
199
- 6 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
200
- 6 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
201
-
202
- 36 2.3% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
203
- 35 97.2% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
204
- 32 91.4% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
205
- 32 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
206
- 32 100.0% LazyCompile: ~Module._compile module.js:374
207
- 32 100.0% LazyCompile: ~Module._extensions..js module.js:472
208
- 3 8.6% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
209
- 3 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
210
- 3 100.0% LazyCompile: ~Module._compile module.js:374
211
- 3 100.0% LazyCompile: ~Module._extensions..js module.js:472
212
-
213
-
214
- [Top down (heavy) profile]:
215
- Note: callees occupying less than 0.1% are not shown.
216
-
217
- inclusive self name
218
- ticks total ticks total
219
- 1533 99.3% 0 0.0% Function: ~<anonymous> node.js:27
220
- 1533 99.3% 0 0.0% LazyCompile: ~startup node.js:30
221
- 1527 98.9% 0 0.0% LazyCompile: ~Module.runMain module.js:495
222
- 1527 98.9% 0 0.0% LazyCompile: Module._load module.js:275
223
- 1524 98.7% 0 0.0% LazyCompile: ~Module.load module.js:346
224
- 1523 98.6% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
225
- 1523 98.6% 0 0.0% LazyCompile: ~Module._compile module.js:374
226
- 1523 98.6% 1 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
227
- 1413 91.5% 11 0.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
228
- 701 45.4% 9 0.6% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
229
- 681 44.1% 32 2.1% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
230
- 631 40.9% 22 1.4% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
231
- 576 37.3% 79 5.1% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
232
- 473 30.6% 178 11.5% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
233
- 286 18.5% 236 15.3% LazyCompile: *Buffer.write buffer.js:315
234
- 37 2.4% 35 2.3% LazyCompile: *toLowerCase native string.js:739
235
- 2 0.1% 2 0.1% Stub: CEntryStub
236
- 5 0.3% 5 0.3% LazyCompile: *isFinite native v8natives.js:103
237
- 3 0.2% 3 0.2% Stub: CompareICStub {2}
238
- 3 0.2% 2 0.1% LazyCompile: <anonymous> native string.js:36
239
- 6 0.4% 6 0.4% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
240
- 2 0.1% 2 0.1% LazyCompile: *toLowerCase native string.js:739
241
- 13 0.8% 13 0.8% Stub: CompareICStub
242
- 6 0.4% 6 0.4% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
243
- 4 0.3% 4 0.3% Builtin: A builtin from the snapshot
244
- 26 1.7% 26 1.7% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
245
- 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
246
- 2 0.1% 2 0.1% Stub: BinaryOpStub_SHL_Alloc_SMI
247
- 8 0.5% 8 0.5% Stub: InstanceofStub
248
- 6 0.4% 6 0.4% KeyedLoadIC: A keyed load IC from the snapshot
249
- 2 0.1% 2 0.1% Stub: CEntryStub
250
- 2 0.1% 2 0.1% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
251
- 5 0.3% 5 0.3% Stub: ToBooleanStub_UndefinedSpecObject
252
- 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
253
- 2 0.1% 2 0.1% Stub: ToBooleanStub
254
- 697 45.1% 10 0.6% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
255
- 679 44.0% 183 11.9% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
256
- 257 16.6% 44 2.8% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
257
- 199 12.9% 15 1.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
258
- 173 11.2% 132 8.5% LazyCompile: *Buffer.toString buffer.js:392
259
- 23 1.5% 21 1.4% LazyCompile: *toLowerCase native string.js:739
260
- 2 0.1% 2 0.1% Stub: CEntryStub
261
- 13 0.8% 13 0.8% LazyCompile: <anonymous> native string.js:36
262
- 3 0.2% 3 0.2% Stub: CompareICStub {2}
263
- 10 0.6% 10 0.6% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
264
- 9 0.6% 9 0.6% Stub: CompareICStub
265
- 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
266
- 183 11.9% 182 11.8% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
267
- 14 0.9% 14 0.9% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
268
- 8 0.5% 8 0.5% Builtin: A builtin from the snapshot
269
- 7 0.5% 7 0.5% Stub: KeyedLoadElementStub
270
- 5 0.3% 5 0.3% Builtin: A builtin from the snapshot {3}
271
- 4 0.3% 4 0.3% Stub: KeyedLoadElementStub {1}
272
- 4 0.3% 4 0.3% Stub: CEntryStub
273
- 4 0.3% 4 0.3% LazyCompile: *module.exports.ByteBuffer.remaining x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2397
274
- 4 0.3% 4 0.3% KeyedLoadIC: A keyed load IC from the snapshot
275
- 2 0.1% 2 0.1% KeyedStoreIC: A keyed store IC from the snapshot
276
- 3 0.2% 3 0.2% Stub: InstanceofStub
277
- 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
278
- 2 0.1% 2 0.1% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
279
- 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
280
- 77 5.0% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
281
- 37 2.4% 0 0.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
282
- 32 2.1% 3 0.2% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
283
- 29 1.9% 4 0.3% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
284
- 25 1.6% 3 0.2% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
285
- 21 1.4% 9 0.6% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
286
- 12 0.8% 11 0.7% LazyCompile: *Buffer.write buffer.js:315
287
- 5 0.3% 1 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
288
- 4 0.3% 0 0.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
289
- 2 0.1% 0 0.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
290
- 37 2.4% 0 0.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
291
- 34 2.2% 6 0.4% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
292
- 16 1.0% 2 0.1% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
293
- 12 0.8% 0 0.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
294
- 12 0.8% 9 0.6% LazyCompile: *Buffer.toString buffer.js:392
295
- 3 0.2% 2 0.1% LazyCompile: *toLowerCase native string.js:739
296
- 9 0.6% 8 0.5% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
297
- 2 0.1% 1 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
298
- 17 1.1% 0 0.0% LazyCompile: ~require module.js:379
299
- 17 1.1% 0 0.0% LazyCompile: ~Module.require module.js:361
300
- 17 1.1% 0 0.0% LazyCompile: Module._load module.js:275
301
- 17 1.1% 0 0.0% LazyCompile: ~Module.load module.js:346
302
- 17 1.1% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
303
- 17 1.1% 0 0.0% LazyCompile: ~Module._compile module.js:374
304
- 17 1.1% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\index.js:1
305
- 17 1.1% 0 0.0% LazyCompile: ~require module.js:379
306
- 17 1.1% 0 0.0% LazyCompile: ~Module.require module.js:361
307
- 17 1.1% 0 0.0% LazyCompile: Module._load module.js:275
308
- 17 1.1% 0 0.0% LazyCompile: ~Module.load module.js:346
309
- 17 1.1% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
310
- 16 1.0% 2 0.1% LazyCompile: ~Module._compile module.js:374
311
- 14 0.9% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:1
312
- 14 0.9% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:22
313
- 12 0.8% 0 0.0% LazyCompile: ~require module.js:379
314
- 12 0.8% 0 0.0% LazyCompile: ~Module.require module.js:361
315
- 12 0.8% 0 0.0% LazyCompile: Module._load module.js:275
316
- 11 0.7% 0 0.0% LazyCompile: ~Module.load module.js:346
317
- 11 0.7% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
318
- 11 0.7% 0 0.0% LazyCompile: ~Module._compile module.js:374
319
- 11 0.7% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\index.js:1
320
- 11 0.7% 0 0.0% LazyCompile: ~require module.js:379
321
- 11 0.7% 0 0.0% LazyCompile: ~Module.require module.js:361
322
- 11 0.7% 0 0.0% LazyCompile: Module._load module.js:275
323
- 10 0.6% 0 0.0% LazyCompile: ~Module.load module.js:346
324
- 10 0.6% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
325
- 9 0.6% 3 0.2% LazyCompile: ~Module._compile module.js:374
326
- 4 0.3% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1
327
- 4 0.3% 0 0.0% Function: <anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:23
328
- 4 0.3% 0 0.0% LazyCompile: ~require module.js:379
329
- 4 0.3% 0 0.0% LazyCompile: ~Module.require module.js:361
330
- 4 0.3% 0 0.0% LazyCompile: Module._load module.js:275
331
- 3 0.2% 0 0.0% LazyCompile: ~Module._resolveFilename module.js:323
332
- 3 0.2% 0 0.0% LazyCompile: ~Module._findPath module.js:160
333
- 2 0.1% 0 0.0% LazyCompile: ~tryExtensions module.js:148
334
- 2 0.1% 0 0.0% LazyCompile: ~tryFile module.js:138
335
- 2 0.1% 1 0.1% LazyCompile: statPath module.js:88
336
- 2 0.1% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:1
337
- 2 0.1% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:23
338
- 6 0.4% 0 0.0% LazyCompile: ~<anonymous> node.js:204
339
- 6 0.4% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
340
- 6 0.4% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
341
- 5 0.3% 0 0.0% Function: ~<anonymous> console.js:1
342
- 4 0.3% 0 0.0% LazyCompile: ~<anonymous> node.js:615
343
- 4 0.3% 1 0.1% LazyCompile: ~createWritableStdioStream node.js:550
344
- 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
345
- 3 0.2% 0 0.0% LazyCompile: ~NativeModule.compile node.js:892
346
- 3 0.2% 0 0.0% Function: ~<anonymous> tty.js:1
347
- 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
348
- 3 0.2% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
349
- 2 0.1% 2 0.1% Function: ~<anonymous> net.js:1
350
- 2 0.1% 0 0.0% LazyCompile: ~b native v8natives.js:1582
351
- 2 0.1% 0 0.0% LazyCompile: ~Console.log console.js:52
352
- 2 0.1% 0 0.0% LazyCompile: ~Socket.write net.js:612
353
- 2 0.1% 0 0.0% LazyCompile: ~Writable.write _stream_writable.js:162
354
- 2 0.1% 0 0.0% LazyCompile: ~writeOrBuffer _stream_writable.js:199
355
- 2 0.1% 0 0.0% LazyCompile: ~doWrite _stream_writable.js:220
356
- 2 0.1% 0 0.0% LazyCompile: ~Socket._write net.js:619
357
- 2 0.1% 0 0.0% LazyCompile: ~ProtoBuf.loadProto x:\public\ProtoBuf\dist\ProtoBuf.js:3983
358
- 2 0.1% 2 0.1% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
359
- 2 0.1% 2 0.1% Builtin: A builtin from the snapshot
360
- 3 0.2% 0 0.0% LazyCompile: ~Module._resolveFilename module.js:323
361
- 3 0.2% 0 0.0% LazyCompile: ~Module._findPath module.js:160
362
- 3 0.2% 0 0.0% LazyCompile: ~tryFile module.js:138
363
- 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
364
- 3 0.2% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
365
- 2 0.1% 1 0.1% Function: ~<anonymous> fs.js:1
366
- 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
367
- 3 0.2% 2 0.1% LazyCompile: ~NativeModule.compile node.js:892
368
- 2 0.1% 0 0.0% LazyCompile: ~startup.globalVariables node.js:160
369
- 2 0.1% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
370
- 2 0.1% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
371
-
372
- 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
373
-
1
+ Statistical profiling result from v8.log, (1544 ticks, 944 unaccounted, 0 excluded).
2
+
3
+ [Unknown]:
4
+ ticks total nonlib name
5
+ 944 61.1%
6
+
7
+ [Shared libraries]:
8
+ ticks total nonlib name
9
+
10
+ [JavaScript]:
11
+ ticks total nonlib name
12
+ 248 16.1% 16.1% LazyCompile: *Buffer.write buffer.js:315
13
+ 190 12.3% 12.3% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
14
+ 189 12.2% 12.2% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
15
+ 188 12.2% 12.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
16
+ 142 9.2% 9.2% LazyCompile: *Buffer.toString buffer.js:392
17
+ 84 5.4% 5.4% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
18
+ 62 4.0% 4.0% LazyCompile: *toLowerCase native string.js:739
19
+ 47 3.0% 3.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
20
+ 38 2.5% 2.5% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
21
+ 36 2.3% 2.3% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
22
+ 27 1.7% 1.7% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
23
+ 25 1.6% 1.6% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
24
+ 25 1.6% 1.6% Builtin: A builtin from the snapshot
25
+ 24 1.6% 1.6% Stub: CompareICStub
26
+ 15 1.0% 1.0% Stub: CEntryStub
27
+ 15 1.0% 1.0% LazyCompile: <anonymous> native string.js:36
28
+ 15 1.0% 1.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
29
+ 11 0.7% 0.7% Stub: InstanceofStub
30
+ 11 0.7% 0.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
31
+ 11 0.7% 0.7% KeyedLoadIC: A keyed load IC from the snapshot
32
+ 10 0.6% 0.6% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
33
+ 9 0.6% 0.6% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
34
+ 9 0.6% 0.6% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
35
+ 8 0.5% 0.5% LazyCompile: ~NativeModule.compile node.js:892
36
+ 7 0.5% 0.5% Stub: KeyedLoadElementStub
37
+ 6 0.4% 0.4% Stub: CompareICStub {2}
38
+ 6 0.4% 0.4% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
39
+ 6 0.4% 0.4% LazyCompile: *isFinite native v8natives.js:103
40
+ 5 0.3% 0.3% Stub: ToBooleanStub_UndefinedSpecObject
41
+ 5 0.3% 0.3% LazyCompile: ~Module._compile module.js:374
42
+ 5 0.3% 0.3% Builtin: A builtin from the snapshot {3}
43
+ 4 0.3% 0.3% Stub: ToBooleanStub
44
+ 4 0.3% 0.3% Stub: KeyedLoadElementStub {1}
45
+ 4 0.3% 0.3% LazyCompile: *module.exports.ByteBuffer.remaining x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2397
46
+ 3 0.2% 0.2% KeyedStoreIC: A keyed store IC from the snapshot
47
+ 2 0.1% 0.1% Stub: BinaryOpStub_SHR_Alloc_SMI
48
+ 2 0.1% 0.1% Stub: BinaryOpStub_SHL_Alloc_SMI
49
+ 2 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
50
+ 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
51
+ 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:23
52
+ 2 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:22
53
+ 2 0.1% 0.1% Function: ~<anonymous> net.js:1
54
+ 1 0.1% 0.1% Stub: ToBooleanStub {1}
55
+ 1 0.1% 0.1% Stub: CompareICStub {1}
56
+ 1 0.1% 0.1% Stub: CallConstructStub
57
+ 1 0.1% 0.1% Stub: BinaryOpStub_MUL_Alloc_SMI
58
+ 1 0.1% 0.1% Stub: BinaryOpStub_BIT_OR_OverwriteLeft_SMI
59
+ 1 0.1% 0.1% LazyCompile: ~tryFile module.js:138
60
+ 1 0.1% 0.1% LazyCompile: ~nextTick node.js:334
61
+ 1 0.1% 0.1% LazyCompile: ~module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
62
+ 1 0.1% 0.1% LazyCompile: ~join native array.js:410
63
+ 1 0.1% 0.1% LazyCompile: ~fs.statSync fs.js:687
64
+ 1 0.1% 0.1% LazyCompile: ~fs.openSync fs.js:429
65
+ 1 0.1% 0.1% LazyCompile: ~fs.fstatSync fs.js:678
66
+ 1 0.1% 0.1% LazyCompile: ~filter native array.js:1036
67
+ 1 0.1% 0.1% LazyCompile: ~exec native regexp.js:168
68
+ 1 0.1% 0.1% LazyCompile: ~createWriteReq net.js:658
69
+ 1 0.1% 0.1% LazyCompile: ~createWritableStdioStream node.js:550
70
+ 1 0.1% 0.1% LazyCompile: ~bind native v8natives.js:1578
71
+ 1 0.1% 0.1% LazyCompile: ~StringSplitOnRegExp native string.js:591
72
+ 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
73
+ 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
74
+ 1 0.1% 0.1% LazyCompile: ~ProtoBuf.Reflect.Field x:\public\ProtoBuf\dist\ProtoBuf.js:2401
75
+ 1 0.1% 0.1% LazyCompile: ~ProtoBuf.DotProto.Parser._parseId x:\public\ProtoBuf\dist\ProtoBuf.js:724
76
+ 1 0.1% 0.1% LazyCompile: ~Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
77
+ 1 0.1% 0.1% LazyCompile: ~Buffer.write buffer.js:315
78
+ 1 0.1% 0.1% LazyCompile: ~Buffer buffer.js:156
79
+ 1 0.1% 0.1% LazyCompile: statPath module.js:88
80
+ 1 0.1% 0.1% KeyedLoadIC: args_count: 0
81
+ 1 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
82
+ 1 0.1% 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\node_modules\long\dist\Long.js:23
83
+ 1 0.1% 0.1% Function: ~<anonymous> fs.js:1
84
+ 1 0.1% 0.1% Builtin: A builtin from the snapshot {2}
85
+ 1 0.1% 0.1% Builtin: A builtin from the snapshot {1}
86
+
87
+ [C++]:
88
+ ticks total nonlib name
89
+
90
+ [GC]:
91
+ ticks total nonlib name
92
+ 2 0.1%
93
+
94
+ [Bottom up (heavy) profile]:
95
+ Note: percentage shows a share of a particular caller in the total
96
+ amount of its parent calls.
97
+ Callers occupying less than 2.0% are not shown.
98
+
99
+ ticks parent name
100
+ 248 16.1% LazyCompile: *Buffer.write buffer.js:315
101
+ 247 99.6% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
102
+ 247 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
103
+ 247 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
104
+ 247 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
105
+ 247 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
106
+
107
+ 190 12.3% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
108
+ 190 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
109
+ 190 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
110
+ 182 95.8% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
111
+ 182 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
112
+ 182 100.0% LazyCompile: ~Module._compile module.js:374
113
+ 8 4.2% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
114
+ 8 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
115
+ 8 100.0% LazyCompile: ~Module._compile module.js:374
116
+
117
+ 189 12.2% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
118
+ 189 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
119
+ 183 96.8% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
120
+ 183 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
121
+ 183 100.0% LazyCompile: ~Module._compile module.js:374
122
+ 183 100.0% LazyCompile: ~Module._extensions..js module.js:472
123
+ 6 3.2% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
124
+ 6 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
125
+ 6 100.0% LazyCompile: ~Module._compile module.js:374
126
+ 6 100.0% LazyCompile: ~Module._extensions..js module.js:472
127
+
128
+ 188 12.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
129
+ 188 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
130
+ 188 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
131
+ 187 99.5% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
132
+ 187 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
133
+ 178 95.2% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
134
+ 9 4.8% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
135
+
136
+ 142 9.2% LazyCompile: *Buffer.toString buffer.js:392
137
+ 142 100.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
138
+ 141 99.3% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
139
+ 141 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
140
+ 141 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
141
+ 132 93.6% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
142
+ 9 6.4% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
143
+
144
+ 84 5.4% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
145
+ 82 97.6% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
146
+ 82 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
147
+ 82 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
148
+ 79 96.3% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
149
+ 79 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
150
+ 3 3.7% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
151
+ 3 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
152
+ 2 2.4% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
153
+ 2 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
154
+ 2 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
155
+ 2 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
156
+ 2 100.0% LazyCompile: ~Module._compile module.js:374
157
+
158
+ 62 4.0% LazyCompile: *toLowerCase native string.js:739
159
+ 36 58.1% LazyCompile: *Buffer.write buffer.js:315
160
+ 36 100.0% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
161
+ 36 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
162
+ 36 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
163
+ 36 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
164
+ 23 37.1% LazyCompile: *Buffer.toString buffer.js:392
165
+ 23 100.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
166
+ 23 100.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
167
+ 23 100.0% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
168
+ 23 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
169
+ 2 3.2% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
170
+ 2 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
171
+ 2 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
172
+ 2 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
173
+ 2 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
174
+
175
+ 47 3.0% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
176
+ 46 97.9% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
177
+ 46 100.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
178
+ 44 95.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
179
+ 44 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
180
+ 44 100.0% LazyCompile: ~Module._compile module.js:374
181
+ 2 4.3% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
182
+ 2 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
183
+ 2 100.0% LazyCompile: ~Module._compile module.js:374
184
+
185
+ 38 2.5% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
186
+ 26 68.4% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
187
+ 26 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
188
+ 26 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
189
+ 26 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
190
+ 26 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
191
+ 6 15.8% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
192
+ 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
193
+ 6 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
194
+ 6 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
195
+ 6 100.0% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
196
+ 6 15.8% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
197
+ 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
198
+ 6 100.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
199
+ 6 100.0% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
200
+ 6 100.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
201
+
202
+ 36 2.3% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
203
+ 35 97.2% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
204
+ 32 91.4% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
205
+ 32 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
206
+ 32 100.0% LazyCompile: ~Module._compile module.js:374
207
+ 32 100.0% LazyCompile: ~Module._extensions..js module.js:472
208
+ 3 8.6% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
209
+ 3 100.0% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
210
+ 3 100.0% LazyCompile: ~Module._compile module.js:374
211
+ 3 100.0% LazyCompile: ~Module._extensions..js module.js:472
212
+
213
+
214
+ [Top down (heavy) profile]:
215
+ Note: callees occupying less than 0.1% are not shown.
216
+
217
+ inclusive self name
218
+ ticks total ticks total
219
+ 1533 99.3% 0 0.0% Function: ~<anonymous> node.js:27
220
+ 1533 99.3% 0 0.0% LazyCompile: ~startup node.js:30
221
+ 1527 98.9% 0 0.0% LazyCompile: ~Module.runMain module.js:495
222
+ 1527 98.9% 0 0.0% LazyCompile: Module._load module.js:275
223
+ 1524 98.7% 0 0.0% LazyCompile: ~Module.load module.js:346
224
+ 1523 98.6% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
225
+ 1523 98.6% 0 0.0% LazyCompile: ~Module._compile module.js:374
226
+ 1523 98.6% 1 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:1
227
+ 1413 91.5% 11 0.7% LazyCompile: *<anonymous> x:\public\ProtoBuf\tests\bench.js:33
228
+ 701 45.4% 9 0.6% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
229
+ 681 44.1% 32 2.1% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
230
+ 631 40.9% 22 1.4% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
231
+ 576 37.3% 79 5.1% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
232
+ 473 30.6% 178 11.5% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
233
+ 286 18.5% 236 15.3% LazyCompile: *Buffer.write buffer.js:315
234
+ 37 2.4% 35 2.3% LazyCompile: *toLowerCase native string.js:739
235
+ 2 0.1% 2 0.1% Stub: CEntryStub
236
+ 5 0.3% 5 0.3% LazyCompile: *isFinite native v8natives.js:103
237
+ 3 0.2% 3 0.2% Stub: CompareICStub {2}
238
+ 3 0.2% 2 0.1% LazyCompile: <anonymous> native string.js:36
239
+ 6 0.4% 6 0.4% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
240
+ 2 0.1% 2 0.1% LazyCompile: *toLowerCase native string.js:739
241
+ 13 0.8% 13 0.8% Stub: CompareICStub
242
+ 6 0.4% 6 0.4% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
243
+ 4 0.3% 4 0.3% Builtin: A builtin from the snapshot
244
+ 26 1.7% 26 1.7% LazyCompile: *module.exports.ByteBuffer.writeVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1193
245
+ 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
246
+ 2 0.1% 2 0.1% Stub: BinaryOpStub_SHL_Alloc_SMI
247
+ 8 0.5% 8 0.5% Stub: InstanceofStub
248
+ 6 0.4% 6 0.4% KeyedLoadIC: A keyed load IC from the snapshot
249
+ 2 0.1% 2 0.1% Stub: CEntryStub
250
+ 2 0.1% 2 0.1% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
251
+ 5 0.3% 5 0.3% Stub: ToBooleanStub_UndefinedSpecObject
252
+ 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
253
+ 2 0.1% 2 0.1% Stub: ToBooleanStub
254
+ 697 45.1% 10 0.6% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
255
+ 679 44.0% 183 11.9% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
256
+ 257 16.6% 44 2.8% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
257
+ 199 12.9% 15 1.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
258
+ 173 11.2% 132 8.5% LazyCompile: *Buffer.toString buffer.js:392
259
+ 23 1.5% 21 1.4% LazyCompile: *toLowerCase native string.js:739
260
+ 2 0.1% 2 0.1% Stub: CEntryStub
261
+ 13 0.8% 13 0.8% LazyCompile: <anonymous> native string.js:36
262
+ 3 0.2% 3 0.2% Stub: CompareICStub {2}
263
+ 10 0.6% 10 0.6% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
264
+ 9 0.6% 9 0.6% Stub: CompareICStub
265
+ 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
266
+ 183 11.9% 182 11.8% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
267
+ 14 0.9% 14 0.9% LazyCompile: *module.exports.ByteBuffer.readVarint32 x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1272
268
+ 8 0.5% 8 0.5% Builtin: A builtin from the snapshot
269
+ 7 0.5% 7 0.5% Stub: KeyedLoadElementStub
270
+ 5 0.3% 5 0.3% Builtin: A builtin from the snapshot {3}
271
+ 4 0.3% 4 0.3% Stub: KeyedLoadElementStub {1}
272
+ 4 0.3% 4 0.3% Stub: CEntryStub
273
+ 4 0.3% 4 0.3% LazyCompile: *module.exports.ByteBuffer.remaining x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2397
274
+ 4 0.3% 4 0.3% KeyedLoadIC: A keyed load IC from the snapshot
275
+ 2 0.1% 2 0.1% KeyedStoreIC: A keyed store IC from the snapshot
276
+ 3 0.2% 3 0.2% Stub: InstanceofStub
277
+ 3 0.2% 3 0.2% Builtin: A builtin from the snapshot
278
+ 2 0.1% 2 0.1% LazyCompile: *module.exports.ByteBuffer.LE x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2299
279
+ 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
280
+ 77 5.0% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\tests\bench.js:33
281
+ 37 2.4% 0 0.0% LazyCompile: Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:1870
282
+ 32 2.1% 3 0.2% LazyCompile: *ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
283
+ 29 1.9% 4 0.3% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
284
+ 25 1.6% 3 0.2% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
285
+ 21 1.4% 9 0.6% LazyCompile: *module.exports.ByteBuffer.writeVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1893
286
+ 12 0.8% 11 0.7% LazyCompile: *Buffer.write buffer.js:315
287
+ 5 0.3% 1 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2233
288
+ 4 0.3% 0 0.0% LazyCompile: ProtoBuf.Reflect.Field.encode x:\public\ProtoBuf\dist\ProtoBuf.js:2651
289
+ 2 0.1% 0 0.0% LazyCompile: ProtoBuf.Reflect.Field.encodeValue x:\public\ProtoBuf\dist\ProtoBuf.js:2703
290
+ 37 2.4% 0 0.0% LazyCompile: Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2083
291
+ 34 2.2% 6 0.4% LazyCompile: ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
292
+ 16 1.0% 2 0.1% LazyCompile: ProtoBuf.Reflect.Field.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2919
293
+ 12 0.8% 0 0.0% LazyCompile: *module.exports.ByteBuffer.readVString x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1932
294
+ 12 0.8% 9 0.6% LazyCompile: *Buffer.toString buffer.js:392
295
+ 3 0.2% 2 0.1% LazyCompile: *toLowerCase native string.js:739
296
+ 9 0.6% 8 0.5% LazyCompile: *Message x:\public\ProtoBuf\dist\ProtoBuf.js:1629
297
+ 2 0.1% 1 0.1% LazyCompile: ~ProtoBuf.Reflect.Message.decode x:\public\ProtoBuf\dist\ProtoBuf.js:2325
298
+ 17 1.1% 0 0.0% LazyCompile: ~require module.js:379
299
+ 17 1.1% 0 0.0% LazyCompile: ~Module.require module.js:361
300
+ 17 1.1% 0 0.0% LazyCompile: Module._load module.js:275
301
+ 17 1.1% 0 0.0% LazyCompile: ~Module.load module.js:346
302
+ 17 1.1% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
303
+ 17 1.1% 0 0.0% LazyCompile: ~Module._compile module.js:374
304
+ 17 1.1% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\index.js:1
305
+ 17 1.1% 0 0.0% LazyCompile: ~require module.js:379
306
+ 17 1.1% 0 0.0% LazyCompile: ~Module.require module.js:361
307
+ 17 1.1% 0 0.0% LazyCompile: Module._load module.js:275
308
+ 17 1.1% 0 0.0% LazyCompile: ~Module.load module.js:346
309
+ 17 1.1% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
310
+ 16 1.0% 2 0.1% LazyCompile: ~Module._compile module.js:374
311
+ 14 0.9% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:1
312
+ 14 0.9% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\dist\ProtoBuf.js:22
313
+ 12 0.8% 0 0.0% LazyCompile: ~require module.js:379
314
+ 12 0.8% 0 0.0% LazyCompile: ~Module.require module.js:361
315
+ 12 0.8% 0 0.0% LazyCompile: Module._load module.js:275
316
+ 11 0.7% 0 0.0% LazyCompile: ~Module.load module.js:346
317
+ 11 0.7% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
318
+ 11 0.7% 0 0.0% LazyCompile: ~Module._compile module.js:374
319
+ 11 0.7% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\index.js:1
320
+ 11 0.7% 0 0.0% LazyCompile: ~require module.js:379
321
+ 11 0.7% 0 0.0% LazyCompile: ~Module.require module.js:361
322
+ 11 0.7% 0 0.0% LazyCompile: Module._load module.js:275
323
+ 10 0.6% 0 0.0% LazyCompile: ~Module.load module.js:346
324
+ 10 0.6% 0 0.0% LazyCompile: ~Module._extensions..js module.js:472
325
+ 9 0.6% 3 0.2% LazyCompile: ~Module._compile module.js:374
326
+ 4 0.3% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:1
327
+ 4 0.3% 0 0.0% Function: <anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:23
328
+ 4 0.3% 0 0.0% LazyCompile: ~require module.js:379
329
+ 4 0.3% 0 0.0% LazyCompile: ~Module.require module.js:361
330
+ 4 0.3% 0 0.0% LazyCompile: Module._load module.js:275
331
+ 3 0.2% 0 0.0% LazyCompile: ~Module._resolveFilename module.js:323
332
+ 3 0.2% 0 0.0% LazyCompile: ~Module._findPath module.js:160
333
+ 2 0.1% 0 0.0% LazyCompile: ~tryExtensions module.js:148
334
+ 2 0.1% 0 0.0% LazyCompile: ~tryFile module.js:138
335
+ 2 0.1% 1 0.1% LazyCompile: statPath module.js:88
336
+ 2 0.1% 0 0.0% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:1
337
+ 2 0.1% 2 0.1% Function: ~<anonymous> x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferAB.js:23
338
+ 6 0.4% 0 0.0% LazyCompile: ~<anonymous> node.js:204
339
+ 6 0.4% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
340
+ 6 0.4% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
341
+ 5 0.3% 0 0.0% Function: ~<anonymous> console.js:1
342
+ 4 0.3% 0 0.0% LazyCompile: ~<anonymous> node.js:615
343
+ 4 0.3% 1 0.1% LazyCompile: ~createWritableStdioStream node.js:550
344
+ 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
345
+ 3 0.2% 0 0.0% LazyCompile: ~NativeModule.compile node.js:892
346
+ 3 0.2% 0 0.0% Function: ~<anonymous> tty.js:1
347
+ 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
348
+ 3 0.2% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
349
+ 2 0.1% 2 0.1% Function: ~<anonymous> net.js:1
350
+ 2 0.1% 0 0.0% LazyCompile: ~b native v8natives.js:1582
351
+ 2 0.1% 0 0.0% LazyCompile: ~Console.log console.js:52
352
+ 2 0.1% 0 0.0% LazyCompile: ~Socket.write net.js:612
353
+ 2 0.1% 0 0.0% LazyCompile: ~Writable.write _stream_writable.js:162
354
+ 2 0.1% 0 0.0% LazyCompile: ~writeOrBuffer _stream_writable.js:199
355
+ 2 0.1% 0 0.0% LazyCompile: ~doWrite _stream_writable.js:220
356
+ 2 0.1% 0 0.0% LazyCompile: ~Socket._write net.js:619
357
+ 2 0.1% 0 0.0% LazyCompile: ~ProtoBuf.loadProto x:\public\ProtoBuf\dist\ProtoBuf.js:3983
358
+ 2 0.1% 2 0.1% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
359
+ 2 0.1% 2 0.1% Builtin: A builtin from the snapshot
360
+ 3 0.2% 0 0.0% LazyCompile: ~Module._resolveFilename module.js:323
361
+ 3 0.2% 0 0.0% LazyCompile: ~Module._findPath module.js:160
362
+ 3 0.2% 0 0.0% LazyCompile: ~tryFile module.js:138
363
+ 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
364
+ 3 0.2% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
365
+ 2 0.1% 1 0.1% Function: ~<anonymous> fs.js:1
366
+ 3 0.2% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
367
+ 3 0.2% 2 0.1% LazyCompile: ~NativeModule.compile node.js:892
368
+ 2 0.1% 0 0.0% LazyCompile: ~startup.globalVariables node.js:160
369
+ 2 0.1% 0 0.0% LazyCompile: ~NativeModule.require node.js:847
370
+ 2 0.1% 1 0.1% LazyCompile: ~NativeModule.compile node.js:892
371
+
372
+ 3 0.2% 3 0.2% LazyCompile: *module.exports.ByteBuffer.flip x:\public\ProtoBuf\node_modules\bytebuffer\dist\ByteBufferNB.js:2252
373
+