-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
buffer: optimize hex parsing. #7602
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
len: [0, 1, 64, 1024], | ||
n: [1e7] | ||
}); | ||
|
||
function main(conf) { | ||
const len = conf.len | 0; | ||
const n = conf.n | 0; | ||
const buf = Buffer.alloc(len); | ||
|
||
for (let i = 0; i < buf.length; i++) | ||
buf[i] = i & 0xff; | ||
|
||
const hex = buf.toString('hex'); | ||
|
||
bench.start(); | ||
|
||
for (let i = 0; i < n; i += 1) | ||
Buffer.from(hex, 'hex'); | ||
|
||
bench.end(n); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
const Buffer = require('buffer').Buffer; | ||
|
||
// Test hex strings and bad hex strings | ||
{ | ||
const buf1 = Buffer.alloc(4); | ||
assert.strictEqual(buf1.length, 4); | ||
assert.deepStrictEqual(buf1, new Buffer([0, 0, 0, 0])); | ||
assert.strictEqual(buf1.write('abcdxx', 0, 'hex'), 2); | ||
assert.deepStrictEqual(buf1, new Buffer([0xab, 0xcd, 0x00, 0x00])); | ||
assert.strictEqual(buf1.toString('hex'), 'abcd0000'); | ||
assert.strictEqual(buf1.write('abcdef01', 0, 'hex'), 4); | ||
assert.deepStrictEqual(buf1, new Buffer([0xab, 0xcd, 0xef, 0x01])); | ||
assert.strictEqual(buf1.toString('hex'), 'abcdef01'); | ||
|
||
const buf2 = Buffer.from(buf1.toString('hex'), 'hex'); | ||
assert.strictEqual(buf1.toString('hex'), buf2.toString('hex')); | ||
|
||
const buf3 = Buffer.alloc(5); | ||
assert.strictEqual(buf3.write('abcdxx', 1, 'hex'), 2); | ||
assert.strictEqual(buf3.toString('hex'), '00abcd0000'); | ||
|
||
const buf4 = Buffer.alloc(4); | ||
assert.deepStrictEqual(buf4, new Buffer([0, 0, 0, 0])); | ||
assert.strictEqual(buf4.write('xxabcd', 0, 'hex'), 0); | ||
assert.deepStrictEqual(buf4, new Buffer([0, 0, 0, 0])); | ||
assert.strictEqual(buf4.write('xxab', 1, 'hex'), 0); | ||
assert.deepStrictEqual(buf4, new Buffer([0, 0, 0, 0])); | ||
assert.strictEqual(buf4.write('cdxxab', 0, 'hex'), 1); | ||
assert.deepStrictEqual(buf4, new Buffer([0xcd, 0, 0, 0])); | ||
|
||
const buf5 = Buffer.alloc(256); | ||
for (let i = 0; i < 256; i++) | ||
buf5[i] = i; | ||
|
||
const hex = buf5.toString('hex'); | ||
assert.deepStrictEqual(Buffer.from(hex, 'hex'), buf5); | ||
|
||
const badHex = hex.slice(0, 256) + 'xx' + hex.slice(256, 510); | ||
assert.deepStrictEqual(Buffer.from(badHex, 'hex'), buf5.slice(0, 128)); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this still work with
unhex()
’s return type changed? It seems to me some of the speedup may come from the compiler eliminating this branch completely because it knows the upper bits ofa
andb
will never be set:(aka we need more tests to cover these cases?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@addaleax, good catch. I didn't notice the type difference. It looks like you're right.
Applying this patch:
Kills some of the gained perf, but large hex strings are still faster:
I'll see what else I can do, and probably add a test for bad hex strings.