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.
- package/.travis.yml +3 -1
- package/README.md +147 -25
- package/bin/pbjs +2 -2
- package/bower.json +3 -3
- package/cli/pbjs/targets/amd.js +1 -1
- package/cli/pbjs/targets/json.js +9 -1
- package/cli/pbjs/targets/proto.js +48 -24
- package/cli/pbjs/util.js +1 -1
- package/cli/pbjs.js +9 -2
- package/dist/README.md +10 -10
- package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
- package/dist/protobuf-light.min.js +94 -0
- package/dist/protobuf-light.min.js.gz +0 -0
- package/dist/protobuf-light.min.map +8 -0
- package/dist/{ProtoBuf.js → protobuf.js} +265 -175
- package/dist/protobuf.min.js +116 -0
- package/dist/protobuf.min.js.gz +0 -0
- package/dist/protobuf.min.map +8 -0
- package/docs/ProtoBuf.Builder.Message.html +1473 -967
- package/docs/ProtoBuf.Builder.Service.html +266 -197
- package/docs/ProtoBuf.Builder.html +758 -542
- package/docs/ProtoBuf.DotProto.Parser.html +223 -161
- package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
- package/docs/ProtoBuf.DotProto.html +20 -12
- package/docs/ProtoBuf.Element.html +554 -554
- package/docs/ProtoBuf.Map.html +158 -123
- package/docs/ProtoBuf.Reflect.Element.html +286 -143
- package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
- package/docs/ProtoBuf.Reflect.Enum.html +757 -537
- package/docs/ProtoBuf.Reflect.Extension.html +73 -56
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
- package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
- package/docs/ProtoBuf.Reflect.Message.html +919 -652
- package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
- package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
- package/docs/ProtoBuf.Reflect.Service.html +721 -511
- package/docs/ProtoBuf.Reflect.T.html +268 -197
- package/docs/ProtoBuf.Reflect.html +20 -12
- package/docs/ProtoBuf.Util.html +169 -118
- package/docs/ProtoBuf.html +840 -628
- package/docs/ProtoBuf.js.html +271 -180
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/index.html +7 -5
- package/docs/styles/jsdoc-default.css +95 -75
- package/docs/styles/prettify-tomorrow.css +1 -1
- package/donate.png +0 -0
- package/examples/protoify/json.js +123 -123
- package/examples/protoify/json.json +123 -123
- package/examples/websocket/server.js +4 -4
- package/externs/{ProtoBuf.js → protobuf.js} +933 -922
- package/index.js +1 -18
- package/jsdoc.json +1 -1
- package/package.json +11 -11
- package/protobuf.png +0 -0
- package/scripts/build.js +53 -58
- package/src/ProtoBuf/Builder/Message.js +18 -9
- package/src/ProtoBuf/Builder/Service.js +3 -0
- package/src/ProtoBuf/Builder.js +34 -10
- package/src/ProtoBuf/DotProto/Parser.js +58 -23
- package/src/ProtoBuf/Reflect/Element.js +17 -4
- package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
- package/src/ProtoBuf/Reflect/Message.js +9 -4
- package/src/ProtoBuf/Util.js +116 -116
- package/src/bower.json +2 -2
- package/src/google/protobuf/descriptor.json +55 -15
- package/src/{ProtoBuf.js → protobuf.js} +0 -0
- package/src/wrap.js +4 -4
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -1
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/imports-weak.proto +7 -0
- package/tests/imports.json +83 -83
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/options.json +32 -32
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +107 -82
- package/ProtoBuf.png +0 -0
- package/dist/ProtoBuf-light.min.js +0 -87
- package/dist/ProtoBuf-light.min.js.gz +0 -0
- package/dist/ProtoBuf-light.min.map +0 -8
- package/dist/ProtoBuf.min.js +0 -108
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +0 -8
- package/externs/ByteBuffer.js +0 -767
- package/externs/Long.js +0 -328
- package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
- package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
- package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
- package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
- package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
- package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
- package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
- package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
- package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
- package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
- package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
- package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
- package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
- package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
- package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
- package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
- package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
- package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
- package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
- package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
- package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
- package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
- package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
- package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
- package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
- package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
- package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
- package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
- package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
- package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
- package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
- package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
- package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
- package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
- package/sandbox/gapi/test.js +0 -17
- package/sandbox/gapi/test.proto +0 -12
- package/sandbox/issue146/MyOptions.proto +0 -28
- package/sandbox/issue146/Sample.proto +0 -21
- package/sandbox/issue146/main.js +0 -3
- package/sandbox/issue147/enum.proto +0 -8
- package/sandbox/issue147/main.js +0 -3
- package/sandbox/issue182/commands.proto +0 -10
- package/sandbox/issue182/execute.js +0 -22
- package/sandbox/issue182/session_commands.proto +0 -14
- package/sandbox/issue289/A.proto +0 -8
- package/sandbox/issue289/B.proto +0 -8
- package/sandbox/issue289/common.proto +0 -5
- package/sandbox/issue289/main.js +0 -7
- package/sandbox/issue300/IAuth.proto +0 -14
- package/sandbox/issue300/Request.proto +0 -14
- package/sandbox/issue300/main.js +0 -26
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/tests/gtfs-realtime.proto +0 -552
- 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
|
+
|