fastify 3.22.0 → 3.22.1

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.
@@ -166,62 +166,94 @@ backend static-backend
166
166
  ### Nginx
167
167
 
168
168
  ```nginx
169
+ # This upstream block groups 3 servers into one named backend fastify_app
170
+ # with 2 primary servers distributed via round-robin
171
+ # and one backup which is used when the first 2 are not reachable
172
+ # This also assumes your fastify servers are listening on port 80.
173
+ # more info: http://nginx.org/en/docs/http/ngx_http_upstream_module.html
169
174
  upstream fastify_app {
170
- # more info: http://nginx.org/en/docs/http/ngx_http_upstream_module.html
171
175
  server 10.10.11.1:80;
172
176
  server 10.10.11.2:80;
173
177
  server 10.10.11.3:80 backup;
174
178
  }
175
179
 
180
+ # This server block asks NGINX to respond with a redirect when
181
+ # an incoming request from port 80 (typically plain HTTP), to
182
+ # the same request URL but with HTTPS as protocol.
183
+ # This block is optional, and usually used if you are handling
184
+ # SSL termination in NGINX, like in the example here.
176
185
  server {
177
- # default server
186
+ # default server is a special parameter to ask NGINX
187
+ # to set this server block to the default for this address/port
188
+ # which in this case is any address and port 80
178
189
  listen 80 default_server;
179
190
  listen [::]:80 default_server;
180
191
 
181
- # specify host
192
+ # With a server_name directive you can also ask NGINX to
193
+ # use this server block only with matching server name(s)
182
194
  # listen 80;
183
195
  # listen [::]:80;
184
196
  # server_name example.tld;
185
197
 
198
+ # This matches all paths from the request and responds with
199
+ # the redirect mentioned above.
186
200
  location / {
187
201
  return 301 https://$host$request_uri;
188
202
  }
189
203
  }
190
204
 
205
+ # This server block asks NGINX to respond to requests from
206
+ # port 443 with SSL enabled and accept HTTP/2 connections.
207
+ # This is where the request is then proxied to the fastify_app
208
+ # server group via port 3000.
191
209
  server {
192
- # default server
210
+ # This listen directive asks NGINX to accept requests
211
+ # coming to any address, port 443, with SSL, and HTTP/2
212
+ # if possible.
193
213
  listen 443 ssl http2 default_server;
194
214
  listen [::]:443 ssl http2 default_server;
195
-
196
- # specify host
215
+
216
+ # With a server_name directive you can also ask NGINX to
217
+ # use this server block only with matching server name(s)
197
218
  # listen 443 ssl http2;
198
219
  # listen [::]:443 ssl http2;
199
220
  # server_name example.tld;
200
221
 
201
- # public private keys
222
+ # Your SSL/TLS certificate (chain) and secret key in the PEM format
202
223
  ssl_certificate /path/to/fullchain.pem;
203
224
  ssl_certificate_key /path/to/private.pem;
204
- ssl_trusted_certificate /path/to/chain.pem;
205
225
 
206
- # use https://ssl-config.mozilla.org/ for best practice configuration
226
+ # A generic best practice baseline for based
227
+ # on https://ssl-config.mozilla.org/
207
228
  ssl_session_timeout 1d;
208
229
  ssl_session_cache shared:FastifyApp:10m;
209
230
  ssl_session_tickets off;
210
-
211
- # modern configuration
231
+
232
+ # This tells NGINX to only accept TLS 1.3, which should be fine
233
+ # with most modern browsers including IE 11 with certain updates.
234
+ # If you want to support older browsers you might need to add
235
+ # additional fallback protocols.
212
236
  ssl_protocols TLSv1.3;
213
237
  ssl_prefer_server_ciphers off;
214
-
215
- # HSTS (ngx_http_headers_module is required) (63072000 seconds)
238
+
239
+ # This adds a header that tells browsers to only ever use HTTPS
240
+ # with this server.
216
241
  add_header Strict-Transport-Security "max-age=63072000" always;
217
-
218
- # OCSP stapling
242
+
243
+ # The following directives are only necessary if you want to
244
+ # enable OCSP Stapling.
219
245
  ssl_stapling on;
220
246
  ssl_stapling_verify on;
247
+ ssl_trusted_certificate /path/to/chain.pem;
221
248
 
222
- # custom resolver
249
+ # Custom nameserver to resolve upstream server names
223
250
  # resolver 127.0.0.1;
224
-
251
+
252
+ # This section matches all paths and proxies it to the backend server
253
+ # group specified above. Note the additional headers that forward
254
+ # information about the original request. You might want to set
255
+ # trustProxy to the address of your NGINX server so the X-Forwarded
256
+ * fields are used by fastify.
225
257
  location / {
226
258
  # more info: http://nginx.org/en/docs/http/ngx_http_proxy_module.html
227
259
  proxy_http_version 1.1;
@@ -232,8 +264,12 @@ server {
232
264
  proxy_set_header X-Real-IP $remote_addr;
233
265
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
234
266
  proxy_set_header X-Forwarded-Proto $scheme;
235
-
236
- proxy_pass http://fastify_app:3000;
267
+
268
+ # This is the directive that proxies requests to the specified server.
269
+ # If you are using an upstream group, then you do not need to specify a port.
270
+ # If you are directly proxying to a server e.g.
271
+ # proxy_pass http://127.0.0.1:3000 then specify a port.
272
+ proxy_pass http://fastify_app;
237
273
  }
238
274
  }
239
275
  ```
@@ -35,6 +35,9 @@ This example will get you up and running with Fastify and TypeScript. It results
35
35
  }
36
36
  }
37
37
  ```
38
+
39
+ *Note: Set `target` property in `tsconfig.json` to `es2017` or greater to avoid [FastifyDeprecation](https://github.com/fastify/fastify/issues/3284) warning.*
40
+
38
41
  3. Initialize a TypeScript configuration file:
39
42
  ```bash
40
43
  npx tsc --init
@@ -257,7 +257,7 @@ curl -X GET "http://localhost:3000/?ids=1
257
257
 
258
258
  You can also specify a custom schema validator for each parameter type (body, querystring, params, headers).
259
259
 
260
- For example, the following code disable type cohercion only for the `body` parameters, changing the ajv default options:
260
+ For example, the following code disable type coercion only for the `body` parameters, changing the ajv default options:
261
261
 
262
262
  ```js
263
263
  const schemaCompilers = {
package/fastify.d.ts CHANGED
@@ -15,6 +15,8 @@ import { FastifySchemaValidationError } from './types/schema'
15
15
  import { ConstructorAction, ProtoAction } from "./types/content-type-parser";
16
16
  import { Socket } from 'net'
17
17
  import { Options as FJSOptions } from 'fast-json-stringify'
18
+ import { ValidatorCompiler } from '@fastify/ajv-compiler'
19
+ import { FastifySerializerCompiler } from './types/schema';
18
20
 
19
21
  /**
20
22
  * Fastify factory function for the standard fastify http, https, or http2 server instance.
@@ -126,6 +128,17 @@ export type FastifyServerOptions<
126
128
  constraints?: {
127
129
  [name: string]: ConstraintStrategy<FindMyWayVersion<RawServer>, unknown>,
128
130
  },
131
+ schemaController?: {
132
+ bucket?: (parentSchemas?: unknown) => {
133
+ addSchema(schema: unknown): FastifyInstance;
134
+ getSchema(schemaId: string): unknown;
135
+ getSchemas(): Record<string, unknown>;
136
+ };
137
+ compilersFactory?: {
138
+ buildValidator?: ValidatorCompiler;
139
+ buildSerializer?: (externalSchemas: unknown, serializerOptsServerOption: FastifyServerOptions["serializerOpts"]) => FastifySerializerCompiler<unknown>;
140
+ };
141
+ };
129
142
  return503OnClosing?: boolean,
130
143
  ajv?: {
131
144
  customOptions?: AjvOptions,
package/fastify.js CHANGED
@@ -421,7 +421,7 @@ function fastify (options) {
421
421
  // If the server is not ready yet, this
422
422
  // utility will automatically force it.
423
423
  function inject (opts, cb) {
424
- // lightMyRequest is dynamically laoded as it seems very expensive
424
+ // lightMyRequest is dynamically loaded as it seems very expensive
425
425
  // because of Ajv
426
426
  if (lightMyRequest === undefined) {
427
427
  lightMyRequest = require('light-my-request')
package/lib/reply.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- const eos = require('readable-stream').finished
3
+ const eos = require('stream').finished
4
4
  const statusCodes = require('http').STATUS_CODES
5
5
  const flatstr = require('flatstr')
6
6
  const FJS = require('fast-json-stringify')
@@ -549,7 +549,9 @@ function handleError (reply, error, cb) {
549
549
  reply[kReplySent] = false
550
550
  reply[kReplyIsError] = false
551
551
  reply[kReplyErrorHandlerCalled] = true
552
- reply[kReplyHeaders]['content-length'] = undefined
552
+ // remove header is needed in here, because when we pipe to a stream
553
+ // `undefined` value header will directly passed to node response
554
+ reply.removeHeader('content-length')
553
555
  const result = errorHandler(error, reply.request, reply)
554
556
  if (result !== undefined) {
555
557
  if (result !== null && typeof result.then === 'function') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastify",
3
- "version": "3.22.0",
3
+ "version": "3.22.1",
4
4
  "description": "Fast and low overhead web framework, for Node.js",
5
5
  "main": "fastify.js",
6
6
  "type": "commonjs",
@@ -165,7 +165,7 @@
165
165
  "tap": "^15.0.5",
166
166
  "tap-mocha-reporter": "^5.0.1",
167
167
  "then-sleep": "^1.0.1",
168
- "tsd": "^0.17.0",
168
+ "tsd": "^0.18.0",
169
169
  "typescript": "^4.0.2",
170
170
  "undici": "^3.3.5",
171
171
  "x-xss-protection": "^2.0.0",
@@ -183,7 +183,6 @@
183
183
  "light-my-request": "^4.2.0",
184
184
  "pino": "^6.13.0",
185
185
  "proxy-addr": "^2.0.7",
186
- "readable-stream": "^3.4.0",
187
186
  "rfdc": "^1.1.4",
188
187
  "secure-json-parse": "^2.0.0",
189
188
  "semver": "^7.3.2",
@@ -7,7 +7,7 @@ const http = require('http')
7
7
  const NotFound = require('http-errors').NotFound
8
8
  const EventEmitter = require('events').EventEmitter
9
9
  const Reply = require('../../lib/reply')
10
- const { Writable } = require('readable-stream')
10
+ const { Writable } = require('stream')
11
11
  const {
12
12
  kReplyErrorHandlerCalled,
13
13
  kReplyHeaders,
@@ -6,6 +6,8 @@ const net = require('net')
6
6
  const Fastify = require('..')
7
7
  const statusCodes = require('http').STATUS_CODES
8
8
  const split = require('split2')
9
+ const fs = require('fs')
10
+ const path = require('path')
9
11
 
10
12
  const codes = Object.keys(statusCodes)
11
13
  codes.forEach(code => {
@@ -596,3 +598,29 @@ test('setting content-type on reply object should not hang the server case 3', t
596
598
  t.equal(res.statusCode, 200)
597
599
  })
598
600
  })
601
+
602
+ test('pipe stream inside error handler should not cause error', t => {
603
+ t.plan(3)
604
+ const location = path.join(__dirname, '..', 'package.json')
605
+ const json = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json')).toString('utf8'))
606
+
607
+ const fastify = Fastify()
608
+
609
+ fastify.setErrorHandler((_error, _request, reply) => {
610
+ const stream = fs.createReadStream(location)
611
+ reply.code(400).type('application/json; charset=utf-8').send(stream)
612
+ })
613
+
614
+ fastify.get('/', (request, reply) => {
615
+ throw new Error('This is an error.')
616
+ })
617
+
618
+ fastify.inject({
619
+ url: '/',
620
+ method: 'GET'
621
+ }, (err, res) => {
622
+ t.error(err)
623
+ t.equal(res.statusCode, 400)
624
+ t.same(JSON.parse(res.payload), json)
625
+ })
626
+ })
@@ -84,7 +84,7 @@ test('Ajv8 usage instead of the bundle one', t => {
84
84
 
85
85
  fastify.ready(err => {
86
86
  t.error(err)
87
- t.pass('startup successfull')
87
+ t.pass('startup successful')
88
88
  })
89
89
  })
90
90
  })
@@ -145,7 +145,7 @@ test('onSend hook stream should work even if payload is not a proper stream', t
145
145
  t.plan(1)
146
146
 
147
147
  const reply = proxyquire('../lib/reply', {
148
- 'readable-stream': {
148
+ stream: {
149
149
  finished: (...args) => {
150
150
  if (args.length === 2) { args[1](new Error('test-error')) }
151
151
  }
@@ -186,7 +186,7 @@ test('onSend hook stream should work on payload with "close" ending function', t
186
186
  t.plan(1)
187
187
 
188
188
  const reply = proxyquire('../lib/reply', {
189
- 'readable-stream': {
189
+ stream: {
190
190
  finished: (...args) => {
191
191
  if (args.length === 2) { args[1](new Error('test-error')) }
192
192
  }
@@ -26,9 +26,24 @@ expectType<FastifyInstance<https.Server, http.IncomingMessage, http.ServerRespon
26
26
  expectType<FastifyInstance<http2.Http2Server, http2.Http2ServerRequest, http2.Http2ServerResponse> & PromiseLike<FastifyInstance<http2.Http2Server, http2.Http2ServerRequest, http2.Http2ServerResponse>>>(fastify({ http2: true, http2SessionTimeout: 1000 }))
27
27
  expectType<FastifyInstance<http2.Http2SecureServer, http2.Http2ServerRequest, http2.Http2ServerResponse> & PromiseLike<FastifyInstance<http2.Http2SecureServer, http2.Http2ServerRequest, http2.Http2ServerResponse>>>(fastify({ http2: true, https: {}, http2SessionTimeout: 1000 }))
28
28
  expectType<LightMyRequestChain>(fastify({ http2: true, https: {} }).inject())
29
+ expectType<FastifyInstance<https.Server, http.IncomingMessage, http.ServerResponse> & PromiseLike<FastifyInstance<https.Server, http.IncomingMessage, http.ServerResponse>>>(fastify({ schemaController: {} }))
30
+ expectType<FastifyInstance<https.Server, http.IncomingMessage, http.ServerResponse> & PromiseLike<FastifyInstance<https.Server, http.IncomingMessage, http.ServerResponse>>>(
31
+ fastify({
32
+ schemaController: {
33
+ compilersFactory: {}
34
+ }
35
+ })
36
+ )
29
37
 
30
38
  expectError(fastify<http2.Http2Server>({ http2: false })) // http2 option must be true
31
39
  expectError(fastify<http2.Http2SecureServer>({ http2: false })) // http2 option must be true
40
+ expectError(
41
+ fastify({
42
+ schemaController: {
43
+ bucket: () => ({}) // cannot be empty
44
+ }
45
+ })
46
+ )
32
47
 
33
48
  // light-my-request
34
49
  expectAssignable<InjectOptions>({ query: '' })
@@ -1,4 +1,4 @@
1
- import { expectAssignable, expectError } from 'tsd'
1
+ import { expectAssignable, expectError, expectType } from 'tsd'
2
2
  import fastify, { FastifyInstance, FastifyPluginAsync } from '../../fastify'
3
3
 
4
4
  const testPluginOptsAsync: FastifyPluginAsync = async function (_instance, _opts) { }
@@ -14,3 +14,15 @@ expectAssignable<FastifyInstance>(
14
14
  testPluginOptsAsync, { prefix: '/example', logLevel: 'info', logSerializers: { key: (value: any) => `${value}` } }
15
15
  )
16
16
  )
17
+
18
+ expectAssignable<FastifyInstance>(
19
+ fastify().register(testPluginOptsAsync, () => {
20
+ return {}
21
+ })
22
+ )
23
+
24
+ expectAssignable<FastifyInstance>(
25
+ fastify().register(testPluginOptsAsync, (instance) => {
26
+ expectType<FastifyInstance>(instance)
27
+ })
28
+ )
@@ -1,5 +1,6 @@
1
1
  import { FastifyPluginOptions, FastifyPluginCallback, FastifyPluginAsync } from './plugin'
2
2
  import { LogLevel } from './logger'
3
+ import { FastifyInstance } from './instance'
3
4
 
4
5
  interface RegisterOptions {
5
6
  prefix?: string;
@@ -7,7 +8,7 @@ interface RegisterOptions {
7
8
  logSerializers?: Record<string, (value: any) => string>;
8
9
  }
9
10
 
10
- export type FastifyRegisterOptions<Options> = (RegisterOptions & Options) | (() => RegisterOptions & Options)
11
+ export type FastifyRegisterOptions<Options> = (RegisterOptions & Options) | ((instance: FastifyInstance) => RegisterOptions & Options)
11
12
 
12
13
  /**
13
14
  * FastifyRegister
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)]