mirror of https://github.com/nodejs/node.git
zlib: pass object size hint to V8
Inform V8 that the zlib context object is tied to a large off-heap buffer. This makes the GC run more often (in theory) and improves the accuracy of --trace_external_memory.pull/24504/head
parent
8d14668992
commit
6b99fd2323
|
@ -74,9 +74,11 @@ class ZCtx : public ObjectWrap {
|
|||
|
||||
if (mode_ == DEFLATE || mode_ == GZIP || mode_ == DEFLATERAW) {
|
||||
(void)deflateEnd(&strm_);
|
||||
V8::AdjustAmountOfExternalAllocatedMemory(-kDeflateContextSize);
|
||||
} else if (mode_ == INFLATE || mode_ == GUNZIP || mode_ == INFLATERAW ||
|
||||
mode_ == UNZIP) {
|
||||
(void)inflateEnd(&strm_);
|
||||
V8::AdjustAmountOfExternalAllocatedMemory(-kInflateContextSize);
|
||||
}
|
||||
mode_ = NONE;
|
||||
|
||||
|
@ -375,12 +377,14 @@ class ZCtx : public ObjectWrap {
|
|||
ctx->windowBits_,
|
||||
ctx->memLevel_,
|
||||
ctx->strategy_);
|
||||
V8::AdjustAmountOfExternalAllocatedMemory(kDeflateContextSize);
|
||||
break;
|
||||
case INFLATE:
|
||||
case GUNZIP:
|
||||
case INFLATERAW:
|
||||
case UNZIP:
|
||||
ctx->err_ = inflateInit2(&ctx->strm_, ctx->windowBits_);
|
||||
V8::AdjustAmountOfExternalAllocatedMemory(kInflateContextSize);
|
||||
break;
|
||||
default:
|
||||
assert(0 && "wtf?");
|
||||
|
@ -441,6 +445,8 @@ class ZCtx : public ObjectWrap {
|
|||
}
|
||||
|
||||
private:
|
||||
static const int kDeflateContextSize = 16384; // approximate
|
||||
static const int kInflateContextSize = 10240; // approximate
|
||||
|
||||
bool init_done_;
|
||||
|
||||
|
|
Loading…
Reference in New Issue