fastify 3.23.1 → 3.24.0

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.
@@ -0,0 +1,11 @@
1
+ 'use strict'
2
+
3
+ const fs = require('fs')
4
+ const path = require('path')
5
+
6
+ // package.json:version -> fastify.js:VERSION
7
+ const { version } = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json')).toString('utf8'))
8
+
9
+ const fastifyJs = path.join(__dirname, '..', 'fastify.js')
10
+
11
+ fs.writeFileSync(fastifyJs, fs.readFileSync(fastifyJs).toString('utf8').replace(/const\s*VERSION\s*=.*/, `const VERSION = '${version}'`))
@@ -363,6 +363,20 @@ fastify.get('/', opts, async (request, reply) => {
363
363
  By specifying a schema as shown, you can speed up serialization by a factor of 2-3. This also helps to protect against leakage of potentially sensitive data, since Fastify will serialize only the data present in the response schema.
364
364
  Read [Validation and Serialization](Validation-and-Serialization.md) to learn more.
365
365
 
366
+ <a name="request-payload"></a>
367
+ ### Parsing request payloads
368
+ Fastify parses `'application/json'` and `'text/plain'` request payloads natively, with the result accessible from the [Fastify request](Request.md) object at `request.body`.<br>
369
+ The following example returns the parsed body of a request back to the client:
370
+
371
+ ```js
372
+ const opts = {}
373
+ fastify.post('/', opts, async (request, reply) => {
374
+ return request.body
375
+ })
376
+ ```
377
+
378
+ Read [Content Type Parser](ContentTypeParser.md) to learn more about Fastify's default parsing functionality and how to support other content types.
379
+
366
380
  <a name="extend-server"></a>
367
381
  ### Extend your server
368
382
  Fastify is built to be extremely extensible and minimal, we believe that a bare-bones framework is all that is necessary to make great applications possible.<br>
package/docs/Hooks.md CHANGED
@@ -222,7 +222,7 @@ fastify.addHook('onTimeout', async (request, reply) => {
222
222
  await asyncMethod()
223
223
  })
224
224
  ```
225
- `onTimeout` is useful if you need to monitor the request timed out in your service (if the `connectionTimeout` property is set on the Fastify instance). The `onTimeout` hook is executed when a request is timed out and the HTTP socket has been hanged up. Therefore ,you will not be able to send data to the client.
225
+ `onTimeout` is useful if you need to monitor the request timed out in your service (if the `connectionTimeout` property is set on the Fastify instance). The `onTimeout` hook is executed when a request is timed out and the HTTP socket has been hanged up. Therefore, you will not be able to send data to the client.
226
226
 
227
227
 
228
228
  ### Manage Errors from a hook
package/docs/Request.md CHANGED
@@ -4,7 +4,7 @@
4
4
  The first parameter of the handler function is `Request`.<br>
5
5
  Request is a core Fastify object containing the following fields:
6
6
  - `query` - the parsed querystring, its format is specified by [`querystringParser`](Server.md#querystringparser)
7
- - `body` - the body
7
+ - `body` - the request payload, see [Content Type Parser](ContentTypeParser.md) for details on what request payloads Fastify natively parses and how to support other content types
8
8
  - `params` - the params matching the URL
9
9
  - [`headers`](#headers) - the headers getter and setter
10
10
  - `raw` - the incoming HTTP request from Node core
package/docs/Routes.md CHANGED
@@ -50,6 +50,8 @@ They need to be in
50
50
  * `preSerialization(request, reply, payload, done)`: a [function](Hooks.md#preserialization) called just before the serialization, it could also be an array of functions.
51
51
  * `onSend(request, reply, payload, done)`: a [function](Hooks.md#route-hooks) called right before a response is sent, it could also be an array of functions.
52
52
  * `onResponse(request, reply, done)`: a [function](Hooks.md#onresponse) called when a response has been sent, so you will not be able to send more data to the client. It could also be an array of functions.
53
+ * `onTimeout(request, reply, done)`: a [function](Hooks.md#ontimeout) called when a request is timed out and the HTTP socket has been hanged up.
54
+ * `onError(request, reply, error, done)`: a [function](Hooks.md#onerror) called when an Error is thrown or send to the client by the route handler.
53
55
  * `handler(request, reply)`: the function that will handle this request. The [Fastify server](Server.md) will be bound to `this` when the handler is called. Note: using an arrow function will break the binding of `this`.
54
56
  * `errorHandler(error, request, reply)`: a custom error handler for the scope of the request. Overrides the default error global handler, and anything set by [`setErrorHandler`](Server.md#setErrorHandler), for requests to the route. To access the default handler, you can access `instance.errorHandler`. Note that this will point to fastify's default `errorHandler` only if a plugin hasn't overridden it already.
55
57
  * `validatorCompiler({ schema, method, url, httpPart })`: function that builds schemas for request validations. See the [Validation and Serialization](Validation-and-Serialization.md#schema-validator) documentation.
package/fastify.js CHANGED
@@ -1,11 +1,11 @@
1
1
  'use strict'
2
2
 
3
+ const VERSION = '3.24.0'
4
+
3
5
  const Avvio = require('avvio')
4
6
  const http = require('http')
5
7
  const querystring = require('querystring')
6
8
  let lightMyRequest
7
- let version
8
- let versionLoaded = false
9
9
 
10
10
  const {
11
11
  kAvvioBoot,
@@ -326,12 +326,7 @@ function fastify (options) {
326
326
  get () { return this[kSchemaController].getSerializerCompiler() }
327
327
  },
328
328
  version: {
329
- get () {
330
- if (versionLoaded === false) {
331
- version = loadVersion()
332
- }
333
- return version
334
- }
329
+ get () { return VERSION }
335
330
  },
336
331
  errorHandler: {
337
332
  get () {
@@ -693,20 +688,6 @@ function wrapRouting (httpHandler, { rewriteUrl, logger }) {
693
688
  }
694
689
  }
695
690
 
696
- function loadVersion () {
697
- versionLoaded = true
698
- const fs = require('fs')
699
- const path = require('path')
700
- try {
701
- const pkgPath = path.join(__dirname, 'package.json')
702
- fs.accessSync(pkgPath, fs.constants.R_OK)
703
- const pkg = JSON.parse(fs.readFileSync(pkgPath))
704
- return pkg.name === 'fastify' ? pkg.version : undefined
705
- } catch (e) {
706
- return undefined
707
- }
708
- }
709
-
710
691
  /**
711
692
  * These export configurations enable JS and TS developers
712
693
  * to consumer fastify in whatever way best suits their needs.
@@ -113,9 +113,7 @@ function registerPluginName (fn) {
113
113
 
114
114
  function registerPlugin (fn) {
115
115
  registerPluginName.call(this, fn)
116
- if (this.version !== undefined) {
117
- checkVersion.call(this, fn)
118
- }
116
+ checkVersion.call(this, fn)
119
117
  checkDecorators.call(this, fn)
120
118
  checkDependencies.call(this, fn)
121
119
  return shouldSkipOverride(fn)
package/lib/reply.js CHANGED
@@ -11,6 +11,7 @@ const {
11
11
  kReplySent,
12
12
  kReplySentOverwritten,
13
13
  kReplyStartTime,
14
+ kReplyEndTime,
14
15
  kReplySerializer,
15
16
  kReplySerializerDefault,
16
17
  kReplyIsError,
@@ -312,7 +313,7 @@ Reply.prototype.getResponseTime = function () {
312
313
  let responseTime = 0
313
314
 
314
315
  if (this[kReplyStartTime] !== undefined) {
315
- responseTime = now() - this[kReplyStartTime]
316
+ responseTime = (this[kReplyEndTime] || now()) - this[kReplyStartTime]
316
317
  }
317
318
 
318
319
  return responseTime
@@ -612,6 +613,7 @@ function setupResponseListeners (reply) {
612
613
  reply[kReplyStartTime] = now()
613
614
 
614
615
  const onResFinished = err => {
616
+ reply[kReplyEndTime] = now()
615
617
  reply.raw.removeListener('finish', onResFinished)
616
618
  reply.raw.removeListener('error', onResFinished)
617
619
 
@@ -673,6 +675,7 @@ function buildReply (R) {
673
675
  this.request = request
674
676
  this[kReplyHeaders] = {}
675
677
  this[kReplyStartTime] = undefined
678
+ this[kReplyEndTime] = undefined
676
679
  this.log = log
677
680
 
678
681
  // eslint-disable-next-line no-var
package/lib/symbols.js CHANGED
@@ -33,6 +33,7 @@ const keys = {
33
33
  kReplySent: Symbol('fastify.reply.sent'),
34
34
  kReplySentOverwritten: Symbol('fastify.reply.sentOverwritten'),
35
35
  kReplyStartTime: Symbol('fastify.reply.startTime'),
36
+ kReplyEndTime: Symbol('fastify.reply.endTime'),
36
37
  kReplyErrorHandlerCalled: Symbol('fastify.reply.errorHandlerCalled'),
37
38
  kReplyIsRunningOnErrorHook: Symbol('fastify.reply.isRunningOnErrorHook'),
38
39
  kSchemaVisited: Symbol('fastify.schemas.visited'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastify",
3
- "version": "3.23.1",
3
+ "version": "3.24.0",
4
4
  "description": "Fast and low overhead web framework, for Node.js",
5
5
  "main": "fastify.js",
6
6
  "type": "commonjs",
@@ -14,6 +14,7 @@
14
14
  "lint:fix": "standard --fix",
15
15
  "lint:standard": "standard --verbose | snazzy",
16
16
  "lint:typescript": "eslint -c types/.eslintrc.json types/**/*.d.ts test/types/**/*.test-d.ts",
17
+ "prepublishOnly": "tap --no-check-coverage test/internals/version.test.js",
17
18
  "test": "npm run lint && npm run unit && npm run test:typescript",
18
19
  "test:ci": "npm run lint && npm run unit -- --cov --coverage-report=lcovonly && npm run test:typescript",
19
20
  "test:report": "npm run lint && npm run unit:report && npm run test:typescript",
@@ -118,7 +119,7 @@
118
119
  "@fastify/ajv-compiler-8": "npm:@fastify/ajv-compiler@^2.0.0",
119
120
  "@fastify/pre-commit": "^2.0.1",
120
121
  "@hapi/joi": "^17.1.1",
121
- "@sinonjs/fake-timers": "^7.0.0",
122
+ "@sinonjs/fake-timers": "^8.1.0",
122
123
  "@types/node": "^16.0.0",
123
124
  "@types/pino": "^6.0.1",
124
125
  "@typescript-eslint/eslint-plugin": "^4.5.0",
@@ -12,13 +12,9 @@ test('Bundled package should work', t => {
12
12
  })
13
13
  })
14
14
 
15
- // In the webpack bundle context the fastify package.json is not read
16
- // Because of this the version is set to `undefined`, this makes the plugin
17
- // version check not able to work properly. By then this test shouldn't work
18
- // in non-bundled environment but works in bundled environment
19
- test('Bundled package should work with bad plugin version, undefined version fallback', t => {
15
+ test('Bundled package should not work with bad plugin version', t => {
20
16
  t.plan(1)
21
17
  fastifyFailPlugin.ready((err) => {
22
- t.error(err)
18
+ t.ok(err)
23
19
  })
24
20
  })
@@ -1368,6 +1368,48 @@ test('reply.getResponseTime() should return a number greater than 0 after the ti
1368
1368
  fastify.inject({ method: 'GET', url: '/' })
1369
1369
  })
1370
1370
 
1371
+ test('reply.getResponseTime() should return the time since a request started while inflight', t => {
1372
+ t.plan(1)
1373
+ const fastify = require('../..')()
1374
+ fastify.route({
1375
+ method: 'GET',
1376
+ url: '/',
1377
+ handler: (req, reply) => {
1378
+ reply.send('hello world')
1379
+ }
1380
+ })
1381
+
1382
+ fastify.addHook('preValidation', (req, reply, done) => {
1383
+ t.not(reply.getResponseTime(), reply.getResponseTime())
1384
+ done()
1385
+ })
1386
+
1387
+ fastify.addHook('onResponse', (req, reply) => {
1388
+ t.end()
1389
+ })
1390
+
1391
+ fastify.inject({ method: 'GET', url: '/' })
1392
+ })
1393
+
1394
+ test('reply.getResponseTime() should return the same value after a request is finished', t => {
1395
+ t.plan(1)
1396
+ const fastify = require('../..')()
1397
+ fastify.route({
1398
+ method: 'GET',
1399
+ url: '/',
1400
+ handler: (req, reply) => {
1401
+ reply.send('hello world')
1402
+ }
1403
+ })
1404
+
1405
+ fastify.addHook('onResponse', (req, reply) => {
1406
+ t.equal(reply.getResponseTime(), reply.getResponseTime())
1407
+ t.end()
1408
+ })
1409
+
1410
+ fastify.inject({ method: 'GET', url: '/' })
1411
+ })
1412
+
1371
1413
  test('reply should use the custom serializer', t => {
1372
1414
  t.plan(4)
1373
1415
  const fastify = require('../..')()
@@ -1,43 +1,15 @@
1
1
  'use strict'
2
2
 
3
+ const fs = require('fs')
4
+ const path = require('path')
3
5
  const t = require('tap')
4
6
  const test = t.test
5
- const proxyquire = require('proxyquire')
7
+ const fastify = require('../..')()
6
8
 
7
- test('should output an undefined version in case of package.json not available', t => {
8
- const Fastify = proxyquire('../..', { fs: { accessSync: () => { throw Error('error') } } })
9
+ test('should be the same as package.json', t => {
9
10
  t.plan(1)
10
- const srv = Fastify()
11
- t.equal(srv.version, undefined)
12
- })
13
-
14
- test('should output an undefined version in case of package.json is not the fastify one', t => {
15
- const Fastify = proxyquire('../..', { fs: { accessSync: () => { }, readFileSync: () => JSON.stringify({ name: 'foo', version: '6.6.6' }) } })
16
- t.plan(1)
17
- const srv = Fastify()
18
- t.equal(srv.version, undefined)
19
- })
20
-
21
- test('should skip the version check if the version is undefined', t => {
22
- const Fastify = proxyquire('../..', { fs: { accessSync: () => { }, readFileSync: () => JSON.stringify({ name: 'foo', version: '6.6.6' }) } })
23
- t.plan(3)
24
- const srv = Fastify()
25
- t.equal(srv.version, undefined)
26
-
27
- plugin[Symbol.for('skip-override')] = false
28
- plugin[Symbol.for('plugin-meta')] = {
29
- name: 'plugin',
30
- fastify: '>=99.0.0'
31
- }
32
-
33
- srv.register(plugin)
34
11
 
35
- srv.ready((err) => {
36
- t.error(err)
37
- t.pass('everything right')
38
- })
12
+ const json = JSON.parse(fs.readFileSync(path.join(__dirname, '..', '..', 'package.json')).toString('utf8'))
39
13
 
40
- function plugin (instance, opts, done) {
41
- done()
42
- }
14
+ t.equal(fastify.version, json.version)
43
15
  })
@@ -2,6 +2,7 @@
2
2
 
3
3
  const { Readable } = require('stream')
4
4
  const test = require('tap').test
5
+ const sget = require('simple-get').concat
5
6
  const Fastify = require('../')
6
7
 
7
8
  process.removeAllListeners('warning')
@@ -496,3 +497,57 @@ test('onRequest option should be called before preParsing', t => {
496
497
  t.same(payload, { hello: 'world' })
497
498
  })
498
499
  })
500
+
501
+ test('onTimeout on route', t => {
502
+ t.plan(4)
503
+ const fastify = Fastify({ connectionTimeout: 500 })
504
+
505
+ fastify.get('/timeout', {
506
+ async handler (request, reply) { },
507
+ onTimeout (request, reply, done) {
508
+ t.pass('onTimeout called')
509
+ done()
510
+ }
511
+ })
512
+
513
+ fastify.listen(0, (err, address) => {
514
+ t.error(err)
515
+ t.teardown(() => fastify.close())
516
+
517
+ sget({
518
+ method: 'GET',
519
+ url: `${address}/timeout`
520
+ }, (err, response, body) => {
521
+ t.type(err, Error)
522
+ t.equal(err.message, 'socket hang up')
523
+ })
524
+ })
525
+ })
526
+
527
+ test('onError on route', t => {
528
+ t.plan(3)
529
+
530
+ const fastify = Fastify()
531
+
532
+ const err = new Error('kaboom')
533
+
534
+ fastify.get('/',
535
+ {
536
+ onError (request, reply, error, done) {
537
+ t.match(error, err)
538
+ done()
539
+ }
540
+ },
541
+ (req, reply) => {
542
+ reply.send(err)
543
+ })
544
+
545
+ fastify.inject('/', (err, res) => {
546
+ t.error(err)
547
+ t.same(JSON.parse(res.payload), {
548
+ error: 'Internal Server Error',
549
+ message: 'kaboom',
550
+ statusCode: 500
551
+ })
552
+ })
553
+ })
@@ -27,7 +27,7 @@ export interface FastifyInstance<
27
27
  > {
28
28
  server: RawServer;
29
29
  prefix: string;
30
- version: string | undefined;
30
+ version: string;
31
31
  log: Logger;
32
32
 
33
33
  addSchema(schema: unknown): FastifyInstance<RawServer, RawRequest, RawReply, Logger>;
package/out DELETED
@@ -1,431 +0,0 @@
1
- [marking 0x1f6d5ea61e51 <JSFunction normalizeString (sfi = 0x3a2f50f28061)> for optimized recompilation, reason: hot and stable]
2
- [compiling method 0x1f6d5ea61e51 <JSFunction normalizeString (sfi = 0x3a2f50f28061)> (target TURBOFAN) using TurboFan]
3
- [optimizing 0x1f6d5ea61e51 <JSFunction normalizeString (sfi = 0x3a2f50f28061)> (target TURBOFAN) - took 0.416, 1.993, 0.013 ms]
4
- [completed optimizing 0x1f6d5ea61e51 <JSFunction normalizeString (sfi = 0x3a2f50f28061)> (target TURBOFAN)]
5
- [marking 0x2d77f2b75661 <JSFunction Module._nodeModulePaths (sfi = 0x2d77f2b53cf9)> for optimized recompilation, reason: hot and stable]
6
- [compiling method 0x2d77f2b75661 <JSFunction Module._nodeModulePaths (sfi = 0x2d77f2b53cf9)> (target TURBOFAN) using TurboFan]
7
- [optimizing 0x2d77f2b75661 <JSFunction Module._nodeModulePaths (sfi = 0x2d77f2b53cf9)> (target TURBOFAN) - took 0.624, 4.488, 0.032 ms]
8
- [completed optimizing 0x2d77f2b75661 <JSFunction Module._nodeModulePaths (sfi = 0x2d77f2b53cf9)> (target TURBOFAN)]
9
- [marking 0x323d0cdc89f1 <JSFunction resolve (sfi = 0x3a2f50f28549)> for optimized recompilation, reason: hot and stable]
10
- [compiling method 0x323d0cdc89f1 <JSFunction resolve (sfi = 0x3a2f50f28549)> (target TURBOFAN) using TurboFan]
11
- [marking 0x323d0cdc8b81 <JSFunction dirname (sfi = 0x3a2f50f28729)> for optimized recompilation, reason: hot and stable]
12
- [compiling method 0x323d0cdc8b81 <JSFunction dirname (sfi = 0x3a2f50f28729)> (target TURBOFAN) using TurboFan]
13
- [optimizing 0x323d0cdc89f1 <JSFunction resolve (sfi = 0x3a2f50f28549)> (target TURBOFAN) - took 0.468, 2.805, 0.033 ms]
14
- [completed optimizing 0x323d0cdc89f1 <JSFunction resolve (sfi = 0x3a2f50f28549)> (target TURBOFAN)]
15
- [optimizing 0x323d0cdc8b81 <JSFunction dirname (sfi = 0x3a2f50f28729)> (target TURBOFAN) - took 0.196, 1.253, 0.010 ms]
16
- [completed optimizing 0x323d0cdc8b81 <JSFunction dirname (sfi = 0x3a2f50f28729)> (target TURBOFAN)]
17
- Running on http://127.0.0.1:3000
18
- [marking 0x323d0cdca529 <JSFunction nextTick (sfi = 0x3ed73b0fbb11)> for optimized recompilation, reason: hot and stable]
19
- [compiling method 0x323d0cdca529 <JSFunction nextTick (sfi = 0x3ed73b0fbb11)> (target TURBOFAN) using TurboFan]
20
- [optimizing 0x323d0cdca529 <JSFunction nextTick (sfi = 0x3ed73b0fbb11)> (target TURBOFAN) - took 0.591, 1.825, 0.029 ms]
21
- [completed optimizing 0x323d0cdca529 <JSFunction nextTick (sfi = 0x3ed73b0fbb11)> (target TURBOFAN)]
22
- [marking 0x323d0cdc9dc9 <JSFunction pushAsyncContext (sfi = 0x3ed73b0fa061)> for optimized recompilation, reason: hot and stable]
23
- [compiling method 0x323d0cdc9dc9 <JSFunction pushAsyncContext (sfi = 0x3ed73b0fa061)> (target TURBOFAN) using TurboFan]
24
- [optimizing 0x323d0cdc9dc9 <JSFunction pushAsyncContext (sfi = 0x3ed73b0fa061)> (target TURBOFAN) - took 0.228, 1.032, 0.015 ms]
25
- [completed optimizing 0x323d0cdc9dc9 <JSFunction pushAsyncContext (sfi = 0x3ed73b0fa061)> (target TURBOFAN)]
26
- [marking 0x1f6d5ea5ea01 <JSFunction shift (sfi = 0x3a2f50f05a01)> for optimized recompilation, reason: small function]
27
- [compiling method 0x1f6d5ea5ea01 <JSFunction shift (sfi = 0x3a2f50f05a01)> (target TURBOFAN) using TurboFan]
28
- [optimizing 0x1f6d5ea5ea01 <JSFunction shift (sfi = 0x3a2f50f05a01)> (target TURBOFAN) - took 0.112, 0.279, 0.015 ms]
29
- [completed optimizing 0x1f6d5ea5ea01 <JSFunction shift (sfi = 0x3a2f50f05a01)> (target TURBOFAN)]
30
- [marking 0x323d0cdc9e09 <JSFunction popAsyncContext (sfi = 0x3ed73b0fa0b1)> for optimized recompilation, reason: hot and stable]
31
- [compiling method 0x323d0cdc9e09 <JSFunction popAsyncContext (sfi = 0x3ed73b0fa0b1)> (target TURBOFAN) using TurboFan]
32
- [optimizing 0x323d0cdc9e09 <JSFunction popAsyncContext (sfi = 0x3ed73b0fa0b1)> (target TURBOFAN) - took 0.243, 0.607, 0.015 ms]
33
- [completed optimizing 0x323d0cdc9e09 <JSFunction popAsyncContext (sfi = 0x3ed73b0fa0b1)> (target TURBOFAN)]
34
- [marking 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> for optimized recompilation, reason: hot and stable]
35
- [compiling method 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN) using TurboFan]
36
- [optimizing 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN) - took 0.872, 2.648, 0.032 ms]
37
- [completed optimizing 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN)]
38
- [marking 0x323d0cdd2989 <JSFunction endReadable (sfi = 0x9620a1d6ab9)> for optimized recompilation, reason: small function]
39
- [compiling method 0x323d0cdd2989 <JSFunction endReadable (sfi = 0x9620a1d6ab9)> (target TURBOFAN) using TurboFan]
40
- [optimizing 0x323d0cdd2989 <JSFunction endReadable (sfi = 0x9620a1d6ab9)> (target TURBOFAN) - took 0.609, 2.657, 0.033 ms]
41
- [completed optimizing 0x323d0cdd2989 <JSFunction endReadable (sfi = 0x9620a1d6ab9)> (target TURBOFAN)]
42
- [marking 0x323d0cdc22e1 <JSFunction emit (sfi = 0x3ed73b0f2b79)> for optimized recompilation, reason: hot and stable]
43
- [compiling method 0x323d0cdc22e1 <JSFunction emit (sfi = 0x3ed73b0f2b79)> (target TURBOFAN) using TurboFan]
44
- [optimizing 0x323d0cdc22e1 <JSFunction emit (sfi = 0x3ed73b0f2b79)> (target TURBOFAN) - took 0.188, 0.852, 0.015 ms]
45
- [completed optimizing 0x323d0cdc22e1 <JSFunction emit (sfi = 0x3ed73b0f2b79)> (target TURBOFAN)]
46
- [marking 0x375fbd16c9b9 <JSFunction storeHeader (sfi = 0x1ec6619cf489)> for optimized recompilation, reason: small function]
47
- [compiling method 0x375fbd16c9b9 <JSFunction storeHeader (sfi = 0x1ec6619cf489)> (target TURBOFAN) using TurboFan]
48
- [optimizing 0x375fbd16c9b9 <JSFunction storeHeader (sfi = 0x1ec6619cf489)> (target TURBOFAN) - took 0.279, 1.305, 0.021 ms]
49
- [completed optimizing 0x375fbd16c9b9 <JSFunction storeHeader (sfi = 0x1ec6619cf489)> (target TURBOFAN)]
50
- [marking 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> for optimized recompilation, reason: hot and stable]
51
- [compiling method 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN) using TurboFan]
52
- [marking 0x1f6d5ea59981 <JSFunction Readable.read (sfi = 0x9620a1d5729)> for optimized recompilation, reason: hot and stable]
53
- [compiling method 0x1f6d5ea59981 <JSFunction Readable.read (sfi = 0x9620a1d5729)> (target TURBOFAN) using TurboFan]
54
- [optimizing 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN) - took 0.604, 4.692, 0.050 ms]
55
- [completed optimizing 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN)]
56
- [optimizing 0x1f6d5ea59981 <JSFunction Readable.read (sfi = 0x9620a1d5729)> (target TURBOFAN) - took 0.562, 2.345, 0.030 ms]
57
- [completed optimizing 0x1f6d5ea59981 <JSFunction Readable.read (sfi = 0x9620a1d5729)> (target TURBOFAN)]
58
- [marking 0x1242a375c1a1 <JSFunction routeHandler (sfi = 0x3371bc63ee51)> for optimized recompilation, reason: hot and stable]
59
- [compiling method 0x1242a375c1a1 <JSFunction routeHandler (sfi = 0x3371bc63ee51)> (target TURBOFAN) using TurboFan]
60
- [marking 0x375fbd16bf11 <JSFunction parserOnIncoming (sfi = 0x1ec6619d7971)> for optimized recompilation, reason: hot and stable]
61
- [compiling method 0x375fbd16bf11 <JSFunction parserOnIncoming (sfi = 0x1ec6619d7971)> (target TURBOFAN) using TurboFan]
62
- [optimizing 0x1242a375c1a1 <JSFunction routeHandler (sfi = 0x3371bc63ee51)> (target TURBOFAN) - took 0.926, 3.543, 0.071 ms]
63
- [completed optimizing 0x1242a375c1a1 <JSFunction routeHandler (sfi = 0x3371bc63ee51)> (target TURBOFAN)]
64
- [marking 0x1f6d5ea5a3b9 <JSFunction ReadableState (sfi = 0x9620a1d51f9)> for optimized recompilation, reason: hot and stable]
65
- [compiling method 0x1f6d5ea5a3b9 <JSFunction ReadableState (sfi = 0x9620a1d51f9)> (target TURBOFAN) using TurboFan]
66
- [optimizing 0x1f6d5ea5a3b9 <JSFunction ReadableState (sfi = 0x9620a1d51f9)> (target TURBOFAN) - took 0.479, 2.136, 0.050 ms]
67
- [completed optimizing 0x1f6d5ea5a3b9 <JSFunction ReadableState (sfi = 0x9620a1d51f9)> (target TURBOFAN)]
68
- [optimizing 0x375fbd16bf11 <JSFunction parserOnIncoming (sfi = 0x1ec6619d7971)> (target TURBOFAN) - took 0.898, 5.180, 0.064 ms]
69
- [completed optimizing 0x375fbd16bf11 <JSFunction parserOnIncoming (sfi = 0x1ec6619d7971)> (target TURBOFAN)]
70
- [marking 0x292d834b1211 <JSFunction _addListener (sfi = 0x3ed73b0f2c39)> for optimized recompilation, reason: hot and stable]
71
- [compiling method 0x292d834b1211 <JSFunction _addListener (sfi = 0x3ed73b0f2c39)> (target TURBOFAN) using TurboFan]
72
- [optimizing 0x292d834b1211 <JSFunction _addListener (sfi = 0x3ed73b0f2c39)> (target TURBOFAN) - took 0.275, 1.169, 0.017 ms]
73
- [completed optimizing 0x292d834b1211 <JSFunction _addListener (sfi = 0x3ed73b0f2c39)> (target TURBOFAN)]
74
- [marking 0x1da56ee13529 <JSFunction validateParam (sfi = 0x29f90a7ef501)> for optimized recompilation, reason: small function]
75
- [compiling method 0x1da56ee13529 <JSFunction validateParam (sfi = 0x29f90a7ef501)> (target TURBOFAN) using TurboFan]
76
- [optimizing 0x1da56ee13529 <JSFunction validateParam (sfi = 0x29f90a7ef501)> (target TURBOFAN) - took 0.077, 0.259, 0.011 ms]
77
- [completed optimizing 0x1da56ee13529 <JSFunction validateParam (sfi = 0x29f90a7ef501)> (target TURBOFAN)]
78
- [marking 0x1f6d5ea59861 <JSFunction Readable.resume (sfi = 0x9620a1d5d59)> for optimized recompilation, reason: small function]
79
- [compiling method 0x1f6d5ea59861 <JSFunction Readable.resume (sfi = 0x9620a1d5d59)> (target TURBOFAN) using TurboFan]
80
- [optimizing 0x1f6d5ea59861 <JSFunction Readable.resume (sfi = 0x9620a1d5d59)> (target TURBOFAN) - took 0.620, 2.310, 0.034 ms]
81
- [completed optimizing 0x1f6d5ea59861 <JSFunction Readable.resume (sfi = 0x9620a1d5d59)> (target TURBOFAN)]
82
- [marking 0x323d0cdd2881 <JSFunction flow (sfi = 0x9620a1d5f09)> for optimized recompilation, reason: small function]
83
- [compiling method 0x323d0cdd2881 <JSFunction flow (sfi = 0x9620a1d5f09)> (target TURBOFAN) using TurboFan]
84
- [marking 0x375fbd1714c9 <JSFunction parserOnHeadersComplete (sfi = 0x1ec6619c9849)> for optimized recompilation, reason: hot and stable]
85
- [optimizing 0x323d0cdd2881 <JSFunction flow (sfi = 0x9620a1d5f09)> (target TURBOFAN) - took 0.208, 0.747, 0.023 ms]
86
- [completed optimizing 0x323d0cdd2881 <JSFunction flow (sfi = 0x9620a1d5f09)> (target TURBOFAN)]
87
- [compiling method 0x375fbd1714c9 <JSFunction parserOnHeadersComplete (sfi = 0x1ec6619c9849)> (target TURBOFAN) using TurboFan]
88
- [marking 0x1f6d5ea57629 <JSFunction clearBuffer (sfi = 0x9620a1e3a59)> for optimized recompilation, reason: hot and stable]
89
- [compiling method 0x1f6d5ea57629 <JSFunction clearBuffer (sfi = 0x9620a1e3a59)> (target TURBOFAN) using TurboFan]
90
- [optimizing 0x375fbd1714c9 <JSFunction parserOnHeadersComplete (sfi = 0x1ec6619c9849)> (target TURBOFAN) - took 1.003, 6.254, 0.082 ms]
91
- [completed optimizing 0x375fbd1714c9 <JSFunction parserOnHeadersComplete (sfi = 0x1ec6619c9849)> (target TURBOFAN)]
92
- [marking 0x1ec6619dd181 <JSFunction assignSocket (sfi = 0x1ec6619d7c69)> for optimized recompilation, reason: small function]
93
- [compiling method 0x1ec6619dd181 <JSFunction assignSocket (sfi = 0x1ec6619d7c69)> (target TURBOFAN) using TurboFan]
94
- [optimizing 0x1f6d5ea57629 <JSFunction clearBuffer (sfi = 0x9620a1e3a59)> (target TURBOFAN) - took 0.854, 5.807, 0.051 ms]
95
- [completed optimizing 0x1f6d5ea57629 <JSFunction clearBuffer (sfi = 0x9620a1e3a59)> (target TURBOFAN)]
96
- [optimizing 0x1ec6619dd181 <JSFunction assignSocket (sfi = 0x1ec6619d7c69)> (target TURBOFAN) - took 0.681, 3.389, 0.061 ms]
97
- [completed optimizing 0x1ec6619dd181 <JSFunction assignSocket (sfi = 0x1ec6619d7c69)> (target TURBOFAN)]
98
- [marking 0x375fbd151e09 <JSFunction get (sfi = 0x1ec6619cca19)> for optimized recompilation, reason: hot and stable]
99
- [compiling method 0x375fbd151e09 <JSFunction get (sfi = 0x1ec6619cca19)> (target TURBOFAN) using TurboFan]
100
- [optimizing 0x375fbd151e09 <JSFunction get (sfi = 0x1ec6619cca19)> (target TURBOFAN) - took 0.251, 1.354, 0.022 ms]
101
- [completed optimizing 0x375fbd151e09 <JSFunction get (sfi = 0x1ec6619cca19)> (target TURBOFAN)]
102
- [marking 0x323d0cdd29e1 <JSFunction endReadableNT (sfi = 0x9620a1d6b09)> for optimized recompilation, reason: hot and stable]
103
- [compiling method 0x323d0cdd29e1 <JSFunction endReadableNT (sfi = 0x9620a1d6b09)> (target TURBOFAN) using TurboFan]
104
- [marking 0x1ec6619e7239 <JSFunction sanitizeUrl (sfi = 0x333b0afaed39)> for optimized recompilation, reason: small function]
105
- [compiling method 0x1ec6619e7239 <JSFunction sanitizeUrl (sfi = 0x333b0afaed39)> (target TURBOFAN) using TurboFan]
106
- [optimizing 0x1ec6619e7239 <JSFunction sanitizeUrl (sfi = 0x333b0afaed39)> (target TURBOFAN) - took 0.100, 0.533, 0.018 ms]
107
- [completed optimizing 0x1ec6619e7239 <JSFunction sanitizeUrl (sfi = 0x333b0afaed39)> (target TURBOFAN)]
108
- [marking 0x281c1bfadbb9 <JSFunction get (sfi = 0x23db58dc2421)> for optimized recompilation, reason: small function]
109
- [compiling method 0x281c1bfadbb9 <JSFunction get (sfi = 0x23db58dc2421)> (target TURBOFAN) using TurboFan]
110
- [optimizing 0x281c1bfadbb9 <JSFunction get (sfi = 0x23db58dc2421)> (target TURBOFAN) - took 0.084, 0.196, 0.018 ms]
111
- [completed optimizing 0x281c1bfadbb9 <JSFunction get (sfi = 0x23db58dc2421)> (target TURBOFAN)]
112
- [marking 0x375fbd1712f1 <JSFunction writeHead (sfi = 0x1ec6619d7241)> for optimized recompilation, reason: hot and stable]
113
- [marking 0x375fbd16be91 <JSFunction resOnFinish (sfi = 0x1ec6619d78d1)> for optimized recompilation, reason: hot and stable]
114
- [compiling method 0x375fbd16be91 <JSFunction resOnFinish (sfi = 0x1ec6619d78d1)> (target TURBOFAN) using TurboFan]
115
- [optimizing 0x323d0cdd29e1 <JSFunction endReadableNT (sfi = 0x9620a1d6b09)> (target TURBOFAN) - took 0.567, 5.450, 0.042 ms]
116
- [completed optimizing 0x323d0cdd29e1 <JSFunction endReadableNT (sfi = 0x9620a1d6b09)> (target TURBOFAN)]
117
- [compiling method 0x375fbd1712f1 <JSFunction writeHead (sfi = 0x1ec6619d7241)> (target TURBOFAN) using TurboFan]
118
- [optimizing 0x375fbd1712f1 <JSFunction writeHead (sfi = 0x1ec6619d7241)> (target TURBOFAN) - took 0.263, 1.637, 0.027 ms]
119
- [completed optimizing 0x375fbd1712f1 <JSFunction writeHead (sfi = 0x1ec6619d7241)> (target TURBOFAN)]
120
- [optimizing 0x375fbd16be91 <JSFunction resOnFinish (sfi = 0x1ec6619d78d1)> (target TURBOFAN) - took 1.001, 5.029, 0.079 ms]
121
- [completed optimizing 0x375fbd16be91 <JSFunction resOnFinish (sfi = 0x1ec6619d78d1)> (target TURBOFAN)]
122
- [marking 0x1ec6619dd141 <JSFunction _finish (sfi = 0x1ec6619d7c19)> for optimized recompilation, reason: small function]
123
- [compiling method 0x1ec6619dd141 <JSFunction _finish (sfi = 0x1ec6619d7c19)> (target TURBOFAN) using TurboFan]
124
- [marking 0x375fbd153281 <JSFunction OutgoingMessage (sfi = 0x1ec6619cf349)> for optimized recompilation, reason: hot and stable]
125
- [compiling method 0x375fbd153281 <JSFunction OutgoingMessage (sfi = 0x1ec6619cf349)> (target TURBOFAN) using TurboFan]
126
- [optimizing 0x1ec6619dd141 <JSFunction _finish (sfi = 0x1ec6619d7c19)> (target TURBOFAN) - took 0.447, 1.594, 0.030 ms]
127
- [completed optimizing 0x1ec6619dd141 <JSFunction _finish (sfi = 0x1ec6619d7c19)> (target TURBOFAN)]
128
- [marking 0x3371bc615a49 <JSFunction hookRunner (sfi = 0x29f90a7ed0d1)> for optimized recompilation, reason: small function]
129
- [compiling method 0x3371bc615a49 <JSFunction hookRunner (sfi = 0x29f90a7ed0d1)> (target TURBOFAN) using TurboFan]
130
- [optimizing 0x375fbd153281 <JSFunction OutgoingMessage (sfi = 0x1ec6619cf349)> (target TURBOFAN) - took 0.527, 1.984, 0.054 ms]
131
- [completed optimizing 0x375fbd153281 <JSFunction OutgoingMessage (sfi = 0x1ec6619cf349)> (target TURBOFAN)]
132
- [optimizing 0x3371bc615a49 <JSFunction hookRunner (sfi = 0x29f90a7ed0d1)> (target TURBOFAN) - took 0.649, 2.833, 0.044 ms]
133
- [completed optimizing 0x3371bc615a49 <JSFunction hookRunner (sfi = 0x29f90a7ed0d1)> (target TURBOFAN)]
134
- [marking 0x1f6d5ea58c61 <JSFunction get (sfi = 0x9620a1ca521)> for optimized recompilation, reason: small function]
135
- [compiling method 0x1f6d5ea58c61 <JSFunction get (sfi = 0x9620a1ca521)> (target TURBOFAN) using TurboFan]
136
- [optimizing 0x1f6d5ea58c61 <JSFunction get (sfi = 0x9620a1ca521)> (target TURBOFAN) - took 0.098, 0.395, 0.014 ms]
137
- [completed optimizing 0x1f6d5ea58c61 <JSFunction get (sfi = 0x9620a1ca521)> (target TURBOFAN)]
138
- [marking 0x1f6d5ea57271 <JSFunction get (sfi = 0x9620a1e3dd1)> for optimized recompilation, reason: small function]
139
- [compiling method 0x1f6d5ea57271 <JSFunction get (sfi = 0x9620a1e3dd1)> (target TURBOFAN) using TurboFan]
140
- [optimizing 0x1f6d5ea57271 <JSFunction get (sfi = 0x9620a1e3dd1)> (target TURBOFAN) - took 0.160, 0.452, 0.019 ms]
141
- [completed optimizing 0x1f6d5ea57271 <JSFunction get (sfi = 0x9620a1e3dd1)> (target TURBOFAN)]
142
- [marking 0x323d0cdc21e1 <JSFunction addListener (sfi = 0x3ed73b0f2cd9)> for optimized recompilation, reason: small function]
143
- [marking 0x1f6d5ea56f49 <JSFunction emitCloseNT (sfi = 0x9620a1c8fd9)> for optimized recompilation, reason: small function]
144
- [compiling method 0x323d0cdc21e1 <JSFunction addListener (sfi = 0x3ed73b0f2cd9)> (target TURBOFAN) using TurboFan]
145
- [compiling method 0x1f6d5ea56f49 <JSFunction emitCloseNT (sfi = 0x9620a1c8fd9)> (target TURBOFAN) using TurboFan]
146
- [optimizing 0x323d0cdc21e1 <JSFunction addListener (sfi = 0x3ed73b0f2cd9)> (target TURBOFAN) - took 0.307, 1.526, 0.030 ms]
147
- [completed optimizing 0x323d0cdc21e1 <JSFunction addListener (sfi = 0x3ed73b0f2cd9)> (target TURBOFAN)]
148
- [optimizing 0x1f6d5ea56f49 <JSFunction emitCloseNT (sfi = 0x9620a1c8fd9)> (target TURBOFAN) - took 0.225, 1.393, 0.019 ms]
149
- [completed optimizing 0x1f6d5ea56f49 <JSFunction emitCloseNT (sfi = 0x9620a1c8fd9)> (target TURBOFAN)]
150
- [marking 0x375fbd16cf19 <JSFunction matchKnownFields (sfi = 0x1ec6619cc819)> for optimized recompilation, reason: hot and stable]
151
- [compiling method 0x375fbd16cf19 <JSFunction matchKnownFields (sfi = 0x1ec6619cc819)> (target TURBOFAN) using TurboFan]
152
- [optimizing 0x375fbd16cf19 <JSFunction matchKnownFields (sfi = 0x1ec6619cc819)> (target TURBOFAN) - took 0.155, 0.573, 0.011 ms]
153
- [completed optimizing 0x375fbd16cf19 <JSFunction matchKnownFields (sfi = 0x1ec6619cc819)> (target TURBOFAN)]
154
- [marking 0x1f6d5ea57789 <JSFunction onwrite (sfi = 0x9620a1e3919)> for optimized recompilation, reason: hot and stable]
155
- [compiling method 0x1f6d5ea57789 <JSFunction onwrite (sfi = 0x9620a1e3919)> (target TURBOFAN) using TurboFan]
156
- [marking 0x1f6d5ea57891 <JSFunction writeOrBuffer (sfi = 0x9620a1e3829)> for optimized recompilation, reason: hot and stable]
157
- [compiling method 0x1f6d5ea57891 <JSFunction writeOrBuffer (sfi = 0x9620a1e3829)> (target TURBOFAN) using TurboFan]
158
- [marking 0x1ec6619d4dd1 <JSFunction end (sfi = 0x1ec6619d0331)> for optimized recompilation, reason: hot and stable]
159
- [compiling method 0x1ec6619d4dd1 <JSFunction end (sfi = 0x1ec6619d0331)> (target TURBOFAN) using TurboFan]
160
- [marking 0x323d0cdc2461 <JSFunction removeListener (sfi = 0x3ed73b0f2f79)> for optimized recompilation, reason: hot and stable]
161
- [compiling method 0x323d0cdc2461 <JSFunction removeListener (sfi = 0x3ed73b0f2f79)> (target TURBOFAN) using TurboFan]
162
- [optimizing 0x1f6d5ea57891 <JSFunction writeOrBuffer (sfi = 0x9620a1e3829)> (target TURBOFAN) - took 0.243, 1.599, 0.030 ms]
163
- [completed optimizing 0x1f6d5ea57891 <JSFunction writeOrBuffer (sfi = 0x9620a1e3829)> (target TURBOFAN)]
164
- [optimizing 0x1f6d5ea57789 <JSFunction onwrite (sfi = 0x9620a1e3919)> (target TURBOFAN) - took 0.655, 2.870, 0.034 ms]
165
- [completed optimizing 0x1f6d5ea57789 <JSFunction onwrite (sfi = 0x9620a1e3919)> (target TURBOFAN)]
166
- [marking 0x23db58df54a1 <JSFunction Reply.getHeader (sfi = 0x23db58dc1ac1)> for optimized recompilation, reason: small function]
167
- [compiling method 0x23db58df54a1 <JSFunction Reply.getHeader (sfi = 0x23db58dc1ac1)> (target TURBOFAN) using TurboFan]
168
- [optimizing 0x23db58df54a1 <JSFunction Reply.getHeader (sfi = 0x23db58dc1ac1)> (target TURBOFAN) - took 0.168, 0.562, 0.021 ms]
169
- [completed optimizing 0x23db58df54a1 <JSFunction Reply.getHeader (sfi = 0x23db58dc1ac1)> (target TURBOFAN)]
170
- [optimizing 0x1ec6619d4dd1 <JSFunction end (sfi = 0x1ec6619d0331)> (target TURBOFAN) - took 0.543, 3.210, 0.054 ms]
171
- [completed optimizing 0x1ec6619d4dd1 <JSFunction end (sfi = 0x1ec6619d0331)> (target TURBOFAN)]
172
- [optimizing 0x323d0cdc2461 <JSFunction removeListener (sfi = 0x3ed73b0f2f79)> (target TURBOFAN) - took 0.344, 2.390, 0.018 ms]
173
- [completed optimizing 0x323d0cdc2461 <JSFunction removeListener (sfi = 0x3ed73b0f2f79)> (target TURBOFAN)]
174
- [marking 0x1f6d5ea57731 <JSFunction afterWriteTick (sfi = 0x9620a1e3969)> for optimized recompilation, reason: small function]
175
- [compiling method 0x1f6d5ea57731 <JSFunction afterWriteTick (sfi = 0x9620a1e3969)> (target TURBOFAN) using TurboFan]
176
- [marking 0x23db58df5461 <JSFunction Reply.send (sfi = 0x23db58dc1c51)> for optimized recompilation, reason: hot and stable]
177
- [compiling method 0x23db58df5461 <JSFunction Reply.send (sfi = 0x23db58dc1c51)> (target TURBOFAN) using TurboFan]
178
- [optimizing 0x1f6d5ea57731 <JSFunction afterWriteTick (sfi = 0x9620a1e3969)> (target TURBOFAN) - took 0.306, 2.369, 0.031 ms]
179
- [completed optimizing 0x1f6d5ea57731 <JSFunction afterWriteTick (sfi = 0x9620a1e3969)> (target TURBOFAN)]
180
- [marking 0x23db58dc6339 <JSFunction onSendEnd (sfi = 0x23db58dce6d9)> for optimized recompilation, reason: hot and stable]
181
- [compiling method 0x23db58dc6339 <JSFunction onSendEnd (sfi = 0x23db58dce6d9)> (target TURBOFAN) using TurboFan]
182
- [optimizing 0x23db58df5461 <JSFunction Reply.send (sfi = 0x23db58dc1c51)> (target TURBOFAN) - took 0.603, 2.085, 0.140 ms]
183
- [completed optimizing 0x23db58df5461 <JSFunction Reply.send (sfi = 0x23db58dc1c51)> (target TURBOFAN)]
184
- [marking 0x1f6d5ea59f01 <JSFunction Readable.removeListener (sfi = 0x9620a1d5b99)> for optimized recompilation, reason: small function]
185
- [compiling method 0x1f6d5ea59f01 <JSFunction Readable.removeListener (sfi = 0x9620a1d5b99)> (target TURBOFAN) using TurboFan]
186
- [optimizing 0x23db58dc6339 <JSFunction onSendEnd (sfi = 0x23db58dce6d9)> (target TURBOFAN) - took 0.620, 1.551, 0.059 ms]
187
- [completed optimizing 0x23db58dc6339 <JSFunction onSendEnd (sfi = 0x23db58dce6d9)> (target TURBOFAN)]
188
- [optimizing 0x1f6d5ea59f01 <JSFunction Readable.removeListener (sfi = 0x9620a1d5b99)> (target TURBOFAN) - took 0.628, 3.227, 0.029 ms]
189
- [completed optimizing 0x1f6d5ea59f01 <JSFunction Readable.removeListener (sfi = 0x9620a1d5b99)> (target TURBOFAN)]
190
- [marking 0x1f6d5ea599d9 <JSFunction Readable.removeAllListeners (sfi = 0x9620a1d5c29)> for optimized recompilation, reason: small function]
191
- [compiling method 0x1f6d5ea599d9 <JSFunction Readable.removeAllListeners (sfi = 0x9620a1d5c29)> (target TURBOFAN) using TurboFan]
192
- [optimizing 0x1f6d5ea599d9 <JSFunction Readable.removeAllListeners (sfi = 0x9620a1d5c29)> (target TURBOFAN) - took 0.126, 0.365, 0.016 ms]
193
- [completed optimizing 0x1f6d5ea599d9 <JSFunction Readable.removeAllListeners (sfi = 0x9620a1d5c29)> (target TURBOFAN)]
194
- [marking 0x375fbd16b979 <JSFunction updateOutgoingData (sfi = 0x1ec6619d7421)> for optimized recompilation, reason: small function]
195
- [compiling method 0x375fbd16b979 <JSFunction updateOutgoingData (sfi = 0x1ec6619d7421)> (target TURBOFAN) using TurboFan]
196
- [optimizing 0x375fbd16b979 <JSFunction updateOutgoingData (sfi = 0x1ec6619d7421)> (target TURBOFAN) - took 0.171, 0.534, 0.020 ms]
197
- [completed optimizing 0x375fbd16b979 <JSFunction updateOutgoingData (sfi = 0x1ec6619d7421)> (target TURBOFAN)]
198
- [marking 0x1f6d5ea578e9 <JSFunction _write (sfi = 0x9620a1e35c9)> for optimized recompilation, reason: hot and stable]
199
- [compiling method 0x1f6d5ea578e9 <JSFunction _write (sfi = 0x9620a1e35c9)> (target TURBOFAN) using TurboFan]
200
- [marking 0x27a7f689a6b9 <JSFunction Socket.resume (sfi = 0x27a7f6891f11)> for optimized recompilation, reason: small function]
201
- [compiling method 0x27a7f689a6b9 <JSFunction Socket.resume (sfi = 0x27a7f6891f11)> (target TURBOFAN) using TurboFan]
202
- [optimizing 0x1f6d5ea578e9 <JSFunction _write (sfi = 0x9620a1e35c9)> (target TURBOFAN) - took 0.440, 2.314, 0.041 ms]
203
- [completed optimizing 0x1f6d5ea578e9 <JSFunction _write (sfi = 0x9620a1e35c9)> (target TURBOFAN)]
204
- [marking 0x1f6d5ea59da1 <JSFunction get (sfi = 0x9620a1d61a1)> for optimized recompilation, reason: small function]
205
- [compiling method 0x1f6d5ea59da1 <JSFunction get (sfi = 0x9620a1d61a1)> (target TURBOFAN) using TurboFan]
206
- [optimizing 0x1f6d5ea59da1 <JSFunction get (sfi = 0x9620a1d61a1)> (target TURBOFAN) - took 0.098, 0.443, 0.019 ms]
207
- [completed optimizing 0x1f6d5ea59da1 <JSFunction get (sfi = 0x9620a1d61a1)> (target TURBOFAN)]
208
- [optimizing 0x27a7f689a6b9 <JSFunction Socket.resume (sfi = 0x27a7f6891f11)> (target TURBOFAN) - took 0.716, 3.383, 0.036 ms]
209
- [completed optimizing 0x27a7f689a6b9 <JSFunction Socket.resume (sfi = 0x27a7f6891f11)> (target TURBOFAN)]
210
- [marking 0x06b1ac7fa189 <JSFunction find (sfi = 0x333b0afaf041)> for optimized recompilation, reason: hot and stable]
211
- [compiling method 0x06b1ac7fa189 <JSFunction find (sfi = 0x333b0afaf041)> (target TURBOFAN) using TurboFan]
212
- [optimizing 0x06b1ac7fa189 <JSFunction find (sfi = 0x333b0afaf041)> (target TURBOFAN) - took 0.263, 0.962, 0.024 ms]
213
- [completed optimizing 0x06b1ac7fa189 <JSFunction find (sfi = 0x333b0afaf041)> (target TURBOFAN)]
214
- [marking 0x1da56ee11a31 <JSFunction preValidationCallback (sfi = 0x29f90a7ee699)> for optimized recompilation, reason: hot and stable]
215
- [compiling method 0x1da56ee11a31 <JSFunction preValidationCallback (sfi = 0x29f90a7ee699)> (target TURBOFAN) using TurboFan]
216
- [optimizing 0x1da56ee11a31 <JSFunction preValidationCallback (sfi = 0x29f90a7ee699)> (target TURBOFAN) - took 0.423, 0.595, 0.024 ms]
217
- [completed optimizing 0x1da56ee11a31 <JSFunction preValidationCallback (sfi = 0x29f90a7ee699)> (target TURBOFAN)]
218
- [marking 0x375fbd16cb99 <JSFunction onFinish (sfi = 0x1ec6619cf669)> for optimized recompilation, reason: small function]
219
- [compiling method 0x375fbd16cb99 <JSFunction onFinish (sfi = 0x1ec6619cf669)> (target TURBOFAN) using TurboFan]
220
- [optimizing 0x375fbd16cb99 <JSFunction onFinish (sfi = 0x1ec6619cf669)> (target TURBOFAN) - took 0.240, 1.085, 0.022 ms]
221
- [completed optimizing 0x375fbd16cb99 <JSFunction onFinish (sfi = 0x1ec6619cf669)> (target TURBOFAN)]
222
- [marking 0x323d0cdd25c1 <JSFunction emitReadable_ (sfi = 0x9620a1d5851)> for optimized recompilation, reason: hot and stable]
223
- [compiling method 0x323d0cdd25c1 <JSFunction emitReadable_ (sfi = 0x9620a1d5851)> (target TURBOFAN) using TurboFan]
224
- [optimizing 0x323d0cdd25c1 <JSFunction emitReadable_ (sfi = 0x9620a1d5851)> (target TURBOFAN) - took 0.434, 1.983, 0.037 ms]
225
- [completed optimizing 0x323d0cdd25c1 <JSFunction emitReadable_ (sfi = 0x9620a1d5851)> (target TURBOFAN)]
226
- [marking 0x3964dce3ec99 <JSFunction onDestroy (sfi = 0x333b0af9bb71)> for optimized recompilation, reason: hot and stable]
227
- [compiling method 0x3964dce3f429 <JSFunction onDestroy (sfi = 0x333b0af9bb71)> (target TURBOFAN) using TurboFan]
228
- [optimizing 0x3964dce3f429 <JSFunction onDestroy (sfi = 0x333b0af9bb71)> (target TURBOFAN) - took 0.601, 2.194, 0.033 ms]
229
- [completed optimizing 0x3964dce3f429 <JSFunction onDestroy (sfi = 0x333b0af9bb71)> (target TURBOFAN)]
230
- [marking 0x1f6d5ea596f1 <JSFunction Readable.on (sfi = 0x9620a1d5b29)> for optimized recompilation, reason: hot and stable]
231
- [compiling method 0x1f6d5ea596f1 <JSFunction Readable.on (sfi = 0x9620a1d5b29)> (target TURBOFAN) using TurboFan]
232
- [optimizing 0x1f6d5ea596f1 <JSFunction Readable.on (sfi = 0x9620a1d5b29)> (target TURBOFAN) - took 0.366, 2.067, 0.026 ms]
233
- [completed optimizing 0x1f6d5ea596f1 <JSFunction Readable.on (sfi = 0x9620a1d5b29)> (target TURBOFAN)]
234
- [marking 0x323d0cdd23b1 <JSFunction readableAddChunk (sfi = 0x9620a1d54c9)> for optimized recompilation, reason: hot and stable]
235
- [compiling method 0x323d0cdd23b1 <JSFunction readableAddChunk (sfi = 0x9620a1d54c9)> (target TURBOFAN) using TurboFan]
236
- [optimizing 0x323d0cdd23b1 <JSFunction readableAddChunk (sfi = 0x9620a1d54c9)> (target TURBOFAN) - took 0.455, 3.351, 0.036 ms]
237
- [completed optimizing 0x323d0cdd23b1 <JSFunction readableAddChunk (sfi = 0x9620a1d54c9)> (target TURBOFAN)]
238
- [marking 0x323d0cdd2829 <JSFunction resume_ (sfi = 0x9620a1d5e31)> for optimized recompilation, reason: hot and stable]
239
- [compiling method 0x323d0cdd2829 <JSFunction resume_ (sfi = 0x9620a1d5e31)> (target TURBOFAN) using TurboFan]
240
- [marking 0x06b1ac7fa149 <JSFunction lookup (sfi = 0x333b0afaeff1)> for optimized recompilation, reason: hot and stable]
241
- [compiling method 0x06b1ac7fa149 <JSFunction lookup (sfi = 0x333b0afaeff1)> (target TURBOFAN) using TurboFan]
242
- [optimizing 0x323d0cdd2829 <JSFunction resume_ (sfi = 0x9620a1d5e31)> (target TURBOFAN) - took 0.427, 2.001, 0.039 ms]
243
- [completed optimizing 0x323d0cdd2829 <JSFunction resume_ (sfi = 0x9620a1d5e31)> (target TURBOFAN)]
244
- [optimizing 0x06b1ac7fa149 <JSFunction lookup (sfi = 0x333b0afaeff1)> (target TURBOFAN) - took 0.241, 0.771, 0.020 ms]
245
- [completed optimizing 0x06b1ac7fa149 <JSFunction lookup (sfi = 0x333b0afaeff1)> (target TURBOFAN)]
246
- [marking 0x375fbd16ced9 <JSFunction readStart (sfi = 0x1ec6619cc6d9)> for optimized recompilation, reason: small function]
247
- [compiling method 0x375fbd16ced9 <JSFunction readStart (sfi = 0x1ec6619cc6d9)> (target TURBOFAN) using TurboFan]
248
- [marking 0x375fbd16cf59 <JSFunction onError (sfi = 0x1ec6619cc8b9)> for optimized recompilation, reason: small function]
249
- [compiling method 0x375fbd16cf59 <JSFunction onError (sfi = 0x1ec6619cc8b9)> (target TURBOFAN) using TurboFan]
250
- [optimizing 0x375fbd16ced9 <JSFunction readStart (sfi = 0x1ec6619cc6d9)> (target TURBOFAN) - took 0.160, 0.723, 0.048 ms]
251
- [completed optimizing 0x375fbd16ced9 <JSFunction readStart (sfi = 0x1ec6619cc6d9)> (target TURBOFAN)]
252
- [marking 0x375fbd16be51 <JSFunction clearRequestTimeout (sfi = 0x1ec6619d7881)> for optimized recompilation, reason: small function]
253
- [compiling method 0x375fbd16be51 <JSFunction clearRequestTimeout (sfi = 0x1ec6619d7881)> (target TURBOFAN) using TurboFan]
254
- [optimizing 0x375fbd16cf59 <JSFunction onError (sfi = 0x1ec6619cc8b9)> (target TURBOFAN) - took 0.201, 0.951, 0.018 ms]
255
- [completed optimizing 0x375fbd16cf59 <JSFunction onError (sfi = 0x1ec6619cc8b9)> (target TURBOFAN)]
256
- [optimizing 0x375fbd16be51 <JSFunction clearRequestTimeout (sfi = 0x1ec6619d7881)> (target TURBOFAN) - took 0.082, 0.375, 0.011 ms]
257
- [completed optimizing 0x375fbd16be51 <JSFunction clearRequestTimeout (sfi = 0x1ec6619d7881)> (target TURBOFAN)]
258
- [marking 0x27a7f689a3c1 <JSFunction _unrefTimer (sfi = 0x27a7f68918d1)> for optimized recompilation, reason: small function]
259
- [compiling method 0x27a7f689a3c1 <JSFunction _unrefTimer (sfi = 0x27a7f68918d1)> (target TURBOFAN) using TurboFan]
260
- [marking 0x375fbd16bed1 <JSFunction emitCloseNT (sfi = 0x1ec6619d7921)> for optimized recompilation, reason: small function]
261
- [compiling method 0x375fbd16bed1 <JSFunction emitCloseNT (sfi = 0x1ec6619d7921)> (target TURBOFAN) using TurboFan]
262
- [optimizing 0x27a7f689a3c1 <JSFunction _unrefTimer (sfi = 0x27a7f68918d1)> (target TURBOFAN) - took 0.209, 0.622, 0.021 ms]
263
- [completed optimizing 0x27a7f689a3c1 <JSFunction _unrefTimer (sfi = 0x27a7f68918d1)> (target TURBOFAN)]
264
- [marking 0x292d83484e39 <JSFunction writeGeneric (sfi = 0x2b79460f8e91)> for optimized recompilation, reason: small function]
265
- [optimizing 0x375fbd16bed1 <JSFunction emitCloseNT (sfi = 0x1ec6619d7921)> (target TURBOFAN) - took 0.209, 0.831, 0.019 ms]
266
- [completed optimizing 0x375fbd16bed1 <JSFunction emitCloseNT (sfi = 0x1ec6619d7921)> (target TURBOFAN)]
267
- [compiling method 0x292d83484e39 <JSFunction writeGeneric (sfi = 0x2b79460f8e91)> (target TURBOFAN) using TurboFan]
268
- [optimizing 0x292d83484e39 <JSFunction writeGeneric (sfi = 0x2b79460f8e91)> (target TURBOFAN) - took 0.337, 1.889, 0.025 ms]
269
- [completed optimizing 0x292d83484e39 <JSFunction writeGeneric (sfi = 0x2b79460f8e91)> (target TURBOFAN)]
270
- [marking 0x323d0cdc8249 <JSFunction slowCases (sfi = 0x3ed73b0e9f89)> for optimized recompilation, reason: hot and stable]
271
- [compiling method 0x323d0cdc8249 <JSFunction slowCases (sfi = 0x3ed73b0e9f89)> (target TURBOFAN) using TurboFan]
272
- [optimizing 0x323d0cdc8249 <JSFunction slowCases (sfi = 0x3ed73b0e9f89)> (target TURBOFAN) - took 0.145, 0.306, 0.015 ms]
273
- [completed optimizing 0x323d0cdc8249 <JSFunction slowCases (sfi = 0x3ed73b0e9f89)> (target TURBOFAN)]
274
- [marking 0x375fbd16bdd1 <JSFunction clearIncoming (sfi = 0x1ec6619d77e1)> for optimized recompilation, reason: small function]
275
- [compiling method 0x375fbd16bdd1 <JSFunction clearIncoming (sfi = 0x1ec6619d77e1)> (target TURBOFAN) using TurboFan]
276
- [optimizing 0x375fbd16bdd1 <JSFunction clearIncoming (sfi = 0x1ec6619d77e1)> (target TURBOFAN) - took 0.171, 0.744, 0.032 ms]
277
- [completed optimizing 0x375fbd16bdd1 <JSFunction clearIncoming (sfi = 0x1ec6619d77e1)> (target TURBOFAN)]
278
- [marking 0x1f6d5ea59c81 <JSFunction Readable.push (sfi = 0x9620a1d53b9)> for optimized recompilation, reason: small function]
279
- [compiling method 0x1f6d5ea59c81 <JSFunction Readable.push (sfi = 0x9620a1d53b9)> (target TURBOFAN) using TurboFan]
280
- [optimizing 0x1f6d5ea59c81 <JSFunction Readable.push (sfi = 0x9620a1d53b9)> (target TURBOFAN) - took 0.072, 0.166, 0.015 ms]
281
- [completed optimizing 0x1f6d5ea59c81 <JSFunction Readable.push (sfi = 0x9620a1d53b9)> (target TURBOFAN)]
282
- [marking 0x375fbd171549 <JSFunction parserOnMessageComplete (sfi = 0x1ec6619c98e9)> for optimized recompilation, reason: hot and stable]
283
- [compiling method 0x375fbd171549 <JSFunction parserOnMessageComplete (sfi = 0x1ec6619c98e9)> (target TURBOFAN) using TurboFan]
284
- [optimizing 0x375fbd171549 <JSFunction parserOnMessageComplete (sfi = 0x1ec6619c98e9)> (target TURBOFAN) - took 0.280, 1.316, 0.029 ms]
285
- [completed optimizing 0x375fbd171549 <JSFunction parserOnMessageComplete (sfi = 0x1ec6619c98e9)> (target TURBOFAN)]
286
- [marking 0x375fbd16be11 <JSFunction setRequestTimeout (sfi = 0x1ec6619d7831)> for optimized recompilation, reason: small function]
287
- [compiling method 0x375fbd16be11 <JSFunction setRequestTimeout (sfi = 0x1ec6619d7831)> (target TURBOFAN) using TurboFan]
288
- [optimizing 0x375fbd16be11 <JSFunction setRequestTimeout (sfi = 0x1ec6619d7831)> (target TURBOFAN) - took 0.135, 0.542, 0.020 ms]
289
- [completed optimizing 0x375fbd16be11 <JSFunction setRequestTimeout (sfi = 0x1ec6619d7831)> (target TURBOFAN)]
290
- [marking 0x3371bc619639 <JSFunction get (sfi = 0x23db58df6421)> for optimized recompilation, reason: small function]
291
- [compiling method 0x3371bc619639 <JSFunction get (sfi = 0x23db58df6421)> (target TURBOFAN) using TurboFan]
292
- [optimizing 0x3371bc619639 <JSFunction get (sfi = 0x23db58df6421)> (target TURBOFAN) - took 0.316, 1.404, 0.026 ms]
293
- [completed optimizing 0x3371bc619639 <JSFunction get (sfi = 0x23db58df6421)> (target TURBOFAN)]
294
- [marking 0x323d0cdc9c09 <JSFunction hasHooks (sfi = 0x3ed73b0f9c69)> for optimized recompilation, reason: small function]
295
- [compiling method 0x323d0cdc9c09 <JSFunction hasHooks (sfi = 0x3ed73b0f9c69)> (target TURBOFAN) using TurboFan]
296
- [optimizing 0x323d0cdc9c09 <JSFunction hasHooks (sfi = 0x3ed73b0f9c69)> (target TURBOFAN) - took 0.105, 0.389, 0.019 ms]
297
- [completed optimizing 0x323d0cdc9c09 <JSFunction hasHooks (sfi = 0x3ed73b0f9c69)> (target TURBOFAN)]
298
- [marking 0x323d0cddbd91 <JSFunction remove (sfi = 0x9620a1ed129)> for optimized recompilation, reason: small function]
299
- [compiling method 0x323d0cddbd91 <JSFunction remove (sfi = 0x9620a1ed129)> (target TURBOFAN) using TurboFan]
300
- [optimizing 0x323d0cddbd91 <JSFunction remove (sfi = 0x9620a1ed129)> (target TURBOFAN) - took 0.157, 0.692, 0.020 ms]
301
- [completed optimizing 0x323d0cddbd91 <JSFunction remove (sfi = 0x9620a1ed129)> (target TURBOFAN)]
302
- [marking 0x323d0cdc2261 <JSFunction removeAllListeners (sfi = 0x3ed73b0f2fe9)> for optimized recompilation, reason: hot and stable]
303
- [compiling method 0x323d0cdc2261 <JSFunction removeAllListeners (sfi = 0x3ed73b0f2fe9)> (target TURBOFAN) using TurboFan]
304
- [optimizing 0x323d0cdc2261 <JSFunction removeAllListeners (sfi = 0x3ed73b0f2fe9)> (target TURBOFAN) - took 0.145, 0.342, 0.015 ms]
305
- [completed optimizing 0x323d0cdc2261 <JSFunction removeAllListeners (sfi = 0x3ed73b0f2fe9)> (target TURBOFAN)]
306
- [marking 0x323d0cde5bc1 <JSFunction parse (sfi = 0x3a2f50f2ca41)> for optimized recompilation, reason: hot and stable]
307
- [compiling method 0x323d0cde5bc1 <JSFunction parse (sfi = 0x3a2f50f2ca41)> (target TURBOFAN) using TurboFan]
308
- [optimizing 0x323d0cde5bc1 <JSFunction parse (sfi = 0x3a2f50f2ca41)> (target TURBOFAN) - took 0.213, 0.478, 0.013 ms]
309
- [completed optimizing 0x323d0cde5bc1 <JSFunction parse (sfi = 0x3a2f50f2ca41)> (target TURBOFAN)]
310
- [marking 0x3666b2050931 <JSFunction get (sfi = 0x3371bc6039f1)> for optimized recompilation, reason: small function]
311
- [compiling method 0x3666b2050931 <JSFunction get (sfi = 0x3371bc6039f1)> (target TURBOFAN) using TurboFan]
312
- [optimizing 0x3666b2050931 <JSFunction get (sfi = 0x3371bc6039f1)> (target TURBOFAN) - took 0.090, 0.222, 0.017 ms]
313
- [completed optimizing 0x3666b2050931 <JSFunction get (sfi = 0x3371bc6039f1)> (target TURBOFAN)]
314
- [marking 0x323d0cdcd7a9 <JSFunction Writable.uncork (sfi = 0x9620a1e3729)> for optimized recompilation, reason: small function]
315
- [compiling method 0x323d0cdcd7a9 <JSFunction Writable.uncork (sfi = 0x9620a1e3729)> (target TURBOFAN) using TurboFan]
316
- [optimizing 0x323d0cdcd7a9 <JSFunction Writable.uncork (sfi = 0x9620a1e3729)> (target TURBOFAN) - took 0.115, 0.345, 0.015 ms]
317
- [completed optimizing 0x323d0cdcd7a9 <JSFunction Writable.uncork (sfi = 0x9620a1e3729)> (target TURBOFAN)]
318
- [marking 0x323d0cdc9bc9 <JSFunction getDefaultTriggerAsyncId (sfi = 0x3ed73b0f9b19)> for optimized recompilation, reason: small function]
319
- [compiling method 0x323d0cdc9bc9 <JSFunction getDefaultTriggerAsyncId (sfi = 0x3ed73b0f9b19)> (target TURBOFAN) using TurboFan]
320
- [optimizing 0x323d0cdc9bc9 <JSFunction getDefaultTriggerAsyncId (sfi = 0x3ed73b0f9b19)> (target TURBOFAN) - took 0.131, 0.399, 0.016 ms]
321
- [completed optimizing 0x323d0cdc9bc9 <JSFunction getDefaultTriggerAsyncId (sfi = 0x3ed73b0f9b19)> (target TURBOFAN)]
322
- [marking 0x323d0cddcd49 <JSFunction initAsyncResource (sfi = 0x9620a1f6ab1)> for optimized recompilation, reason: small function]
323
- [compiling method 0x323d0cddcd49 <JSFunction initAsyncResource (sfi = 0x9620a1f6ab1)> (target TURBOFAN) using TurboFan]
324
- [optimizing 0x323d0cddcd49 <JSFunction initAsyncResource (sfi = 0x9620a1f6ab1)> (target TURBOFAN) - took 0.282, 0.635, 0.021 ms]
325
- [completed optimizing 0x323d0cddcd49 <JSFunction initAsyncResource (sfi = 0x9620a1f6ab1)> (target TURBOFAN)]
326
- [marking 0x292d83484e91 <JSFunction setStreamTimeout (sfi = 0x2b79460f8fa1)> for optimized recompilation, reason: hot and stable]
327
- [compiling method 0x292d83484e91 <JSFunction setStreamTimeout (sfi = 0x2b79460f8fa1)> (target TURBOFAN) using TurboFan]
328
- [optimizing 0x292d83484e91 <JSFunction setStreamTimeout (sfi = 0x2b79460f8fa1)> (target TURBOFAN) - took 0.975, 3.152, 0.058 ms]
329
- [completed optimizing 0x292d83484e91 <JSFunction setStreamTimeout (sfi = 0x2b79460f8fa1)> (target TURBOFAN)]
330
- [marking 0x27a7f689a909 <JSFunction Socket._writeGeneric (sfi = 0x27a7f6892471)> for optimized recompilation, reason: hot and stable]
331
- [compiling method 0x27a7f689a909 <JSFunction Socket._writeGeneric (sfi = 0x27a7f6892471)> (target TURBOFAN) using TurboFan]
332
- [optimizing 0x27a7f689a909 <JSFunction Socket._writeGeneric (sfi = 0x27a7f6892471)> (target TURBOFAN) - took 0.599, 2.454, 0.045 ms]
333
- [completed optimizing 0x27a7f689a909 <JSFunction Socket._writeGeneric (sfi = 0x27a7f6892471)> (target TURBOFAN)]
334
- [marking 0x375fbd16bb79 <JSFunction onParserExecute (sfi = 0x1ec6619d76a1)> for optimized recompilation, reason: small function]
335
- [compiling method 0x375fbd16bb79 <JSFunction onParserExecute (sfi = 0x1ec6619d76a1)> (target TURBOFAN) using TurboFan]
336
- [optimizing 0x375fbd16bb79 <JSFunction onParserExecute (sfi = 0x1ec6619d76a1)> (target TURBOFAN) - took 0.277, 0.797, 0.028 ms]
337
- [completed optimizing 0x375fbd16bb79 <JSFunction onParserExecute (sfi = 0x1ec6619d76a1)> (target TURBOFAN)]
338
- [marking 0x323d0cdcd881 <JSFunction Writable.write (sfi = 0x9620a1e3619)> for optimized recompilation, reason: small function]
339
- [compiling method 0x323d0cdcd881 <JSFunction Writable.write (sfi = 0x9620a1e3619)> (target TURBOFAN) using TurboFan]
340
- [optimizing 0x323d0cdcd881 <JSFunction Writable.write (sfi = 0x9620a1e3619)> (target TURBOFAN) - took 0.503, 2.425, 0.061 ms]
341
- [completed optimizing 0x323d0cdcd881 <JSFunction Writable.write (sfi = 0x9620a1e3619)> (target TURBOFAN)]
342
- [marking 0x27a7f689a989 <JSFunction Socket._write (sfi = 0x27a7f6892571)> for optimized recompilation, reason: small function]
343
- [compiling method 0x27a7f689a989 <JSFunction Socket._write (sfi = 0x27a7f6892571)> (target TURBOFAN) using TurboFan]
344
- [optimizing 0x27a7f689a989 <JSFunction Socket._write (sfi = 0x27a7f6892571)> (target TURBOFAN) - took 0.096, 0.211, 0.013 ms]
345
- [completed optimizing 0x27a7f689a989 <JSFunction Socket._write (sfi = 0x27a7f6892571)> (target TURBOFAN)]
346
- [marking 0x375fbd16bd91 <JSFunction onParserExecuteCommon (sfi = 0x1ec6619d7791)> for optimized recompilation, reason: hot and stable]
347
- [compiling method 0x375fbd16bd91 <JSFunction onParserExecuteCommon (sfi = 0x1ec6619d7791)> (target TURBOFAN) using TurboFan]
348
- [optimizing 0x375fbd16bd91 <JSFunction onParserExecuteCommon (sfi = 0x1ec6619d7791)> (target TURBOFAN) - took 0.301, 1.443, 0.036 ms]
349
- [completed optimizing 0x375fbd16bd91 <JSFunction onParserExecuteCommon (sfi = 0x1ec6619d7791)> (target TURBOFAN)]
350
- [marking 0x323d0cddd351 <JSFunction insertGuarded (sfi = 0x9620a1f71c1)> for optimized recompilation, reason: hot and stable]
351
- [compiling method 0x323d0cddd351 <JSFunction insertGuarded (sfi = 0x9620a1f71c1)> (target TURBOFAN) using TurboFan]
352
- [optimizing 0x323d0cddd351 <JSFunction insertGuarded (sfi = 0x9620a1f71c1)> (target TURBOFAN) - took 0.124, 0.250, 0.017 ms]
353
- [completed optimizing 0x323d0cddd351 <JSFunction insertGuarded (sfi = 0x9620a1f71c1)> (target TURBOFAN)]
354
- [marking 0x323d0cdcb161 <JSFunction setHasTickScheduled (sfi = 0x3ed73b0fba21)> for optimized recompilation, reason: small function]
355
- [compiling method 0x323d0cdcb161 <JSFunction setHasTickScheduled (sfi = 0x3ed73b0fba21)> (target TURBOFAN) using TurboFan]
356
- [optimizing 0x323d0cdcb161 <JSFunction setHasTickScheduled (sfi = 0x3ed73b0fba21)> (target TURBOFAN) - took 0.097, 0.278, 0.018 ms]
357
- [completed optimizing 0x323d0cdcb161 <JSFunction setHasTickScheduled (sfi = 0x3ed73b0fba21)> (target TURBOFAN)]
358
- [marking 0x323d0cdcadc9 <JSFunction processPromiseRejections (sfi = 0x3ed73b0fee59)> for optimized recompilation, reason: hot and stable]
359
- [compiling method 0x323d0cdcadc9 <JSFunction processPromiseRejections (sfi = 0x3ed73b0fee59)> (target TURBOFAN) using TurboFan]
360
- [optimizing 0x323d0cdcadc9 <JSFunction processPromiseRejections (sfi = 0x3ed73b0fee59)> (target TURBOFAN) - took 0.193, 0.458, 0.022 ms]
361
- [completed optimizing 0x323d0cdcadc9 <JSFunction processPromiseRejections (sfi = 0x3ed73b0fee59)> (target TURBOFAN)]
362
- [marking 0x323d0cdddf79 <JSFunction unenroll (sfi = 0x9620a1ec4f1)> for optimized recompilation, reason: hot and stable]
363
- [compiling method 0x323d0cdddf79 <JSFunction unenroll (sfi = 0x9620a1ec4f1)> (target TURBOFAN) using TurboFan]
364
- [optimizing 0x323d0cdddf79 <JSFunction unenroll (sfi = 0x9620a1ec4f1)> (target TURBOFAN) - took 0.382, 1.846, 0.036 ms]
365
- [completed optimizing 0x323d0cdddf79 <JSFunction unenroll (sfi = 0x9620a1ec4f1)> (target TURBOFAN)]
366
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for call): begin. deoptimizing 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)>, opt id 12, bytecode offset 9, deopt exit 43, FP to SP delta 136, caller SP 0x7ffc87bde030, pc 0x7f95d2058128]
367
- [marking 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> for optimized recompilation, reason: hot and stable]
368
- [compiling method 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN) using TurboFan]
369
- [optimizing 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN) - took 0.679, 4.609, 0.070 ms]
370
- [completed optimizing 0x3666b206bc51 <JSFunction _storeHeader (sfi = 0x1ec6619cf3e9)> (target TURBOFAN)]
371
- [marking 0x292d834b1371 <JSFunction arrayClone (sfi = 0x3ed73b0f32e1)> for optimized recompilation, reason: hot and stable]
372
- [compiling method 0x292d834b1371 <JSFunction arrayClone (sfi = 0x3ed73b0f32e1)> (target TURBOFAN) using TurboFan]
373
- [optimizing 0x292d834b1371 <JSFunction arrayClone (sfi = 0x3ed73b0f32e1)> (target TURBOFAN) - took 0.175, 0.589, 0.020 ms]
374
- [completed optimizing 0x292d834b1371 <JSFunction arrayClone (sfi = 0x3ed73b0f32e1)> (target TURBOFAN)]
375
- [marking dependent code 0x7f95d204e001 (0x3371bc613861 <SharedFunctionInfo Module._nodeModulePaths>) (opt id 1) for deoptimization, reason: allocation-site-tenuring-changed]
376
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic named access): begin. deoptimizing 0x1f6d5ea57629 <JSFunction clearBuffer (sfi = 0x9620a1e3a59)>, opt id 22, bytecode offset 48, deopt exit 42, FP to SP delta 136, caller SP 0x7ffc87bde2f0, pc 0x7f95d206186a]
377
- [marking dependent code 0x7f95d206dda1 (0x23db58dc1c51 <SharedFunctionInfo Reply.send>) (opt id 44) for deoptimization, reason: prototype-check]
378
- [marking dependent code 0x7f95d207de81 (0x1ec6619d7791 <SharedFunctionInfo onParserExecuteCommon>) (opt id 86) for deoptimization, reason: prototype-check]
379
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic named access): begin. deoptimizing 0x1f6d5ea57789 <JSFunction onwrite (sfi = 0x9620a1e3919)>, opt id 38, bytecode offset 77, deopt exit 11, FP to SP delta 72, caller SP 0x7ffc87bddf40, pc 0x7f95d206b257]
380
- [marking dependent code 0x7f95d2068bc1 (0x09620a1e3dd1 <SharedFunctionInfo get>) (opt id 34) for deoptimization, reason: field-const]
381
- [marking dependent code 0x7f95d2069f01 (0x09620a1e3829 <SharedFunctionInfo writeOrBuffer>) (opt id 39) for deoptimization, reason: field-const]
382
- [marking dependent code 0x7f95d206b601 (0x1ec6619d0331 <SharedFunctionInfo end>) (opt id 40) for deoptimization, reason: field-const]
383
- [marking dependent code 0x7f95d206d301 (0x09620a1e3969 <SharedFunctionInfo afterWriteTick>) (opt id 43) for deoptimization, reason: field-const]
384
- [marking dependent code 0x7f95d2070381 (0x09620a1e35c9 <SharedFunctionInfo _write>) (opt id 49) for deoptimization, reason: field-const]
385
- [marking dependent code 0x7f95d207cf81 (0x09620a1e3619 <SharedFunctionInfo Writable.write>) (opt id 84) for deoptimization, reason: field-const]
386
- [marking dependent code 0x7f95d2058381 (0x09620a1d5729 <SharedFunctionInfo Readable.read>) (opt id 13) for deoptimization, reason: field-const]
387
- [marking dependent code 0x7f95d205a1e1 (0x09620a1d51f9 <SharedFunctionInfo ReadableState>) (opt id 16) for deoptimization, reason: field-const]
388
- [marking dependent code 0x7f95d2072d21 (0x09620a1d5851 <SharedFunctionInfo emitReadable_>) (opt id 55) for deoptimization, reason: field-const]
389
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for binary operation): begin. deoptimizing 0x323d0cdca529 <JSFunction nextTick (sfi = 0x3ed73b0fbb11)>, opt id 4, bytecode offset 175, deopt exit 5, FP to SP delta 64, caller SP 0x7ffc87bdde80, pc 0x7f95d205463b]
390
- [bailout (kind: deopt-lazy, reason: (unknown)): begin. deoptimizing 0x1f6d5ea57731 <JSFunction afterWriteTick (sfi = 0x9620a1e3969)>, opt id 43, bytecode offset 75, deopt exit 16, FP to SP delta 64, caller SP 0x7ffc87bde4b8, pc 0x7f95d206dd27]
391
- [bailout (kind: deopt-eager, reason: wrong map): begin. deoptimizing 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)>, opt id 8, bytecode offset 54, deopt exit 10, FP to SP delta 72, caller SP 0x7ffc87bde518, pc 0x7f95d2055939]
392
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic named access): begin. deoptimizing 0x1f6d5ea58c61 <JSFunction get (sfi = 0x9620a1ca521)>, opt id 33, bytecode offset 25, deopt exit 3, FP to SP delta 32, caller SP 0x7ffc87bde408, pc 0x7f95d2068ba1]
393
- [marking dependent code 0x7f95d2063b41 (0x09620a1d6b09 <SharedFunctionInfo endReadableNT>) (opt id 25) for deoptimization, reason: field-const]
394
- [marking dependent code 0x7f95d20710c1 (0x09620a1d61a1 <SharedFunctionInfo get>) (opt id 51) for deoptimization, reason: field-const]
395
- [marking dependent code 0x7f95d20766a1 (0x1ec6619cc6d9 <SharedFunctionInfo readStart>) (opt id 61) for deoptimization, reason: field-const]
396
- [marking dependent code 0x7f95d20789c1 (0x1ec6619c98e9 <SharedFunctionInfo parserOnMessageComplete>) (opt id 70) for deoptimization, reason: field-const]
397
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic keyed access): begin. deoptimizing 0x323d0cdc22e1 <JSFunction emit (sfi = 0x3ed73b0f2b79)>, opt id 10, bytecode offset 29, deopt exit 12, FP to SP delta 72, caller SP 0x7ffc87bde398, pc 0x7f95d2056757]
398
- [bailout (kind: deopt-eager, reason: wrong map): begin. deoptimizing 0x1f6d5ea59f01 <JSFunction Readable.removeListener (sfi = 0x9620a1d5b99)>, opt id 46, bytecode offset 47, deopt exit 13, FP to SP delta 88, caller SP 0x7ffc87bde210, pc 0x7f95d206fc61]
399
- [bailout (kind: deopt-eager, reason: wrong map): begin. deoptimizing 0x1f6d5ea56f49 <JSFunction emitCloseNT (sfi = 0x9620a1c8fd9)>, opt id 36, bytecode offset 0, deopt exit 0, FP to SP delta 64, caller SP 0x7ffc87bde418, pc 0x7f95d2069990]
400
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic named access): begin. deoptimizing 0x27a7f689a909 <JSFunction Socket._writeGeneric (sfi = 0x27a7f6892471)>, opt id 82, bytecode offset 48, deopt exit 20, FP to SP delta 64, caller SP 0x7ffc87bde028, pc 0x7f95d207ca6e]
401
- [bailout (kind: deopt-eager, reason: wrong map): begin. deoptimizing 0x323d0cdc2461 <JSFunction removeListener (sfi = 0x3ed73b0f2f79)>, opt id 41, bytecode offset 47, deopt exit 3, FP to SP delta 88, caller SP 0x7ffc87bde190, pc 0x7f95d206d0d2]
402
- [bailout (kind: deopt-soft, reason: Insufficient type feedback for generic named access): begin. deoptimizing 0x292d83484e39 <JSFunction writeGeneric (sfi = 0x2b79460f8e91)>, opt id 66, bytecode offset 48, deopt exit 13, FP to SP delta 64, caller SP 0x7ffc87bddf90, pc 0x7f95d20780e1]
403
- [marking dependent code 0x7f95d205dca1 (0x1ec6619c9849 <SharedFunctionInfo parserOnHeadersComplete>) (opt id 21) for deoptimization, reason: field-const]
404
- [marking 0x323d0cdc9d89 <JSFunction emitBeforeScript (sfi = 0x3ed73b0f9eb9)> for optimized recompilation, reason: small function]
405
- [compiling method 0x323d0cdc9d89 <JSFunction emitBeforeScript (sfi = 0x3ed73b0f9eb9)> (target TURBOFAN) using TurboFan]
406
- [optimizing 0x323d0cdc9d89 <JSFunction emitBeforeScript (sfi = 0x3ed73b0f9eb9)> (target TURBOFAN) - took 0.296, 0.754, 0.022 ms]
407
- [completed optimizing 0x323d0cdc9d89 <JSFunction emitBeforeScript (sfi = 0x3ed73b0f9eb9)> (target TURBOFAN)]
408
- [marking 0x1f6d5ea5eb69 <JSFunction shift (sfi = 0x3a2f50f05c21)> for optimized recompilation, reason: small function]
409
- [compiling method 0x1f6d5ea5eb69 <JSFunction shift (sfi = 0x3a2f50f05c21)> (target TURBOFAN) using TurboFan]
410
- [optimizing 0x1f6d5ea5eb69 <JSFunction shift (sfi = 0x3a2f50f05c21)> (target TURBOFAN) - took 0.200, 0.424, 0.020 ms]
411
- [completed optimizing 0x1f6d5ea5eb69 <JSFunction shift (sfi = 0x3a2f50f05c21)> (target TURBOFAN)]
412
- [marking 0x323d0cdc9b49 <JSFunction newAsyncId (sfi = 0x3ed73b0f9a79)> for optimized recompilation, reason: small function]
413
- [compiling method 0x323d0cdc9b49 <JSFunction newAsyncId (sfi = 0x3ed73b0f9a79)> (target TURBOFAN) using TurboFan]
414
- [optimizing 0x323d0cdc9b49 <JSFunction newAsyncId (sfi = 0x3ed73b0f9a79)> (target TURBOFAN) - took 0.118, 0.295, 0.015 ms]
415
- [completed optimizing 0x323d0cdc9b49 <JSFunction newAsyncId (sfi = 0x3ed73b0f9a79)> (target TURBOFAN)]
416
- [marking 0x375fbd153241 <JSFunction IncomingMessage (sfi = 0x1ec6619cc779)> for optimized recompilation, reason: hot and stable]
417
- [compiling method 0x375fbd153241 <JSFunction IncomingMessage (sfi = 0x1ec6619cc779)> (target TURBOFAN) using TurboFan]
418
- [marking 0x1f6d5ea5e9b1 <JSFunction push (sfi = 0x3a2f50f05999)> for optimized recompilation, reason: small function]
419
- [compiling method 0x1f6d5ea5e9b1 <JSFunction push (sfi = 0x3a2f50f05999)> (target TURBOFAN) using TurboFan]
420
- [optimizing 0x1f6d5ea5e9b1 <JSFunction push (sfi = 0x3a2f50f05999)> (target TURBOFAN) - took 0.107, 0.283, 0.024 ms]
421
- [completed optimizing 0x1f6d5ea5e9b1 <JSFunction push (sfi = 0x3a2f50f05999)> (target TURBOFAN)]
422
- [marking 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> for optimized recompilation, reason: hot and stable]
423
- [compiling method 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN) using TurboFan]
424
- [optimizing 0x375fbd153241 <JSFunction IncomingMessage (sfi = 0x1ec6619cc779)> (target TURBOFAN) - took 1.139, 7.205, 0.097 ms]
425
- [completed optimizing 0x375fbd153241 <JSFunction IncomingMessage (sfi = 0x1ec6619cc779)> (target TURBOFAN)]
426
- [optimizing 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN) - took 1.189, 3.703, 0.056 ms]
427
- [completed optimizing 0x323d0cdcb2a9 <JSFunction processTicksAndRejections (sfi = 0x3ed73b0fbac1)> (target TURBOFAN)]
428
- [marking 0x1f6d5ea5eb19 <JSFunction push (sfi = 0x3a2f50f05bd1)> for optimized recompilation, reason: small function]
429
- [compiling method 0x1f6d5ea5eb19 <JSFunction push (sfi = 0x3a2f50f05bd1)> (target TURBOFAN) using TurboFan]
430
- [optimizing 0x1f6d5ea5eb19 <JSFunction push (sfi = 0x3a2f50f05bd1)> (target TURBOFAN) - took 0.196, 0.373, 0.017 ms]
431
- [completed optimizing 0x1f6d5ea5eb19 <JSFunction push (sfi = 0x3a2f50f05bd1)> (target TURBOFAN)]