protobufjs 3.6.0 → 3.8.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 (99) hide show
  1. package/bin/proto2js +16 -4
  2. package/bower.json +1 -1
  3. package/dist/ProtoBuf.js +645 -441
  4. package/dist/ProtoBuf.min.js +96 -96
  5. package/dist/ProtoBuf.min.js.gz +0 -0
  6. package/dist/ProtoBuf.min.map +2 -2
  7. package/dist/ProtoBuf.noparse.js +520 -357
  8. package/dist/ProtoBuf.noparse.min.js +68 -66
  9. package/dist/ProtoBuf.noparse.min.js.gz +0 -0
  10. package/dist/ProtoBuf.noparse.min.map +3 -3
  11. package/docs/ProtoBuf.Builder.Message.html +673 -135
  12. package/docs/ProtoBuf.Builder.Service.html +58 -19
  13. package/docs/ProtoBuf.Builder.html +374 -46
  14. package/docs/ProtoBuf.DotProto.Parser.html +58 -19
  15. package/docs/ProtoBuf.DotProto.Tokenizer.html +104 -19
  16. package/docs/ProtoBuf.DotProto.html +16 -10
  17. package/docs/ProtoBuf.Reflect.Enum.Value.html +207 -33
  18. package/docs/ProtoBuf.Reflect.Enum.html +318 -56
  19. package/docs/ProtoBuf.Reflect.Extension.html +53 -13
  20. package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +450 -68
  21. package/docs/ProtoBuf.Reflect.Message.Field.html +454 -51
  22. package/docs/ProtoBuf.Reflect.Message.OneOf.html +1044 -0
  23. package/docs/ProtoBuf.Reflect.Message.html +378 -64
  24. package/docs/ProtoBuf.Reflect.Namespace.html +333 -51
  25. package/docs/ProtoBuf.Reflect.Service.Method.html +228 -35
  26. package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +262 -41
  27. package/docs/ProtoBuf.Reflect.Service.html +318 -56
  28. package/docs/ProtoBuf.Reflect.T.html +210 -25
  29. package/docs/ProtoBuf.Reflect.html +17 -11
  30. package/docs/ProtoBuf.Util.html +59 -13
  31. package/docs/ProtoBuf.html +235 -67
  32. package/docs/ProtoBuf.js.html +648 -443
  33. package/docs/index.html +4 -2
  34. package/docs/styles/jsdoc-default.css +2 -2
  35. package/examples/protoify/.npmignore +2 -0
  36. package/examples/protoify/README.md +28 -0
  37. package/examples/protoify/index.js +147 -0
  38. package/examples/protoify/json.js +123 -0
  39. package/examples/protoify/json.json +123 -0
  40. package/examples/protoify/json.proto +30 -0
  41. package/examples/protoify/package.json +15 -0
  42. package/examples/protoify/test.js +56 -0
  43. package/examples/websocket/README.md +1 -0
  44. package/examples/websocket/package.json +1 -1
  45. package/externs/ProtoBuf.js +922 -922
  46. package/package.json +3 -3
  47. package/scripts/build.js +58 -58
  48. package/src/ProtoBuf/Builder/Message.js +107 -77
  49. package/src/ProtoBuf/Builder/Service.js +8 -5
  50. package/src/ProtoBuf/Builder.js +71 -37
  51. package/src/ProtoBuf/DotProto/Parser.js +108 -72
  52. package/src/ProtoBuf/DotProto/Tokenizer.js +17 -11
  53. package/src/ProtoBuf/Lang.js +1 -1
  54. package/src/ProtoBuf/Reflect/Enum/Value.js +3 -2
  55. package/src/ProtoBuf/Reflect/Enum.js +9 -5
  56. package/src/ProtoBuf/Reflect/Extension.js +4 -3
  57. package/src/ProtoBuf/Reflect/Message/ExtensionField.js +4 -3
  58. package/src/ProtoBuf/Reflect/Message/Field.js +45 -26
  59. package/src/ProtoBuf/Reflect/Message/OneOf.js +19 -0
  60. package/src/ProtoBuf/Reflect/Message.js +36 -19
  61. package/src/ProtoBuf/Reflect/Namespace.js +19 -15
  62. package/src/ProtoBuf/Reflect/Service/Method.js +9 -5
  63. package/src/ProtoBuf/Reflect/Service/RPCMethod.js +3 -2
  64. package/src/ProtoBuf/Reflect/Service.js +9 -5
  65. package/src/ProtoBuf/Reflect/T.js +20 -6
  66. package/src/ProtoBuf/Reflect.js +9 -0
  67. package/src/ProtoBuf/Util.js +132 -132
  68. package/src/ProtoBuf.js +15 -17
  69. package/src/google/protobuf/descriptor.json +33 -13
  70. package/tests/bench.txt +373 -373
  71. package/tests/complex.json +8 -4
  72. package/tests/custom-options.json +169 -169
  73. package/tests/extend.json +71 -71
  74. package/tests/nodeunit-browser/nodeunit.css +70 -70
  75. package/tests/nodeunit-browser/nodeunit.js +2108 -2108
  76. package/tests/oneof.proto +6 -0
  77. package/tests/options.json +32 -32
  78. package/tests/options.proto +2 -0
  79. package/tests/proto2js/Bar.json +46 -46
  80. package/tests/suite.js +83 -12
  81. package/.idea/.name +0 -1
  82. package/.idea/ProtoBuf.iml +0 -9
  83. package/.idea/dictionaries/Daniel.xml +0 -7
  84. package/.idea/encodings.xml +0 -5
  85. package/.idea/misc.xml +0 -5
  86. package/.idea/modules.xml +0 -9
  87. package/.idea/scopes/scope_settings.xml +0 -5
  88. package/.idea/vcs.xml +0 -7
  89. package/.idea/workspace.xml +0 -551
  90. package/NOTICE +0 -2
  91. package/sandbox/issue146/MyOptions.proto +0 -28
  92. package/sandbox/issue146/Sample.proto +0 -21
  93. package/sandbox/issue146/main.js +0 -3
  94. package/sandbox/issue147/enum.proto +0 -8
  95. package/sandbox/issue147/main.js +0 -3
  96. package/sandbox/issue42/innerextend.proto +0 -18
  97. package/sandbox/issue42/main.js +0 -8
  98. package/sandbox/issue42/outerextend.proto +0 -17
  99. package/v8.log +0 -3828
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
+