Skip to content

Commit 2551c1d

Browse files
committedMar 16, 2015
src: use Number::New() for heapTotal/heapUsed
With --max_old_space_size=12345 it's possible to create a JS heap that is larger than what fits in an unsigned int so use Number::New() rather than Integer::NewFromUnsigned(). Performance-wise, it doesn't matter much. If V8 can fit the double in a SMI, it will. PR-URL: #1148 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
1 parent 4f39499 commit 2551c1d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/node.cc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1932,10 +1932,10 @@ void MemoryUsage(const FunctionCallbackInfo<Value>& args) {
19321932
HeapStatistics v8_heap_stats;
19331933
env->isolate()->GetHeapStatistics(&v8_heap_stats);
19341934

1935-
Local<Integer> heap_total =
1936-
Integer::NewFromUnsigned(env->isolate(), v8_heap_stats.total_heap_size());
1937-
Local<Integer> heap_used =
1938-
Integer::NewFromUnsigned(env->isolate(), v8_heap_stats.used_heap_size());
1935+
Local<Number> heap_total =
1936+
Number::New(env->isolate(), v8_heap_stats.total_heap_size());
1937+
Local<Number> heap_used =
1938+
Number::New(env->isolate(), v8_heap_stats.used_heap_size());
19391939

19401940
Local<Object> info = Object::New(env->isolate());
19411941
info->Set(env->rss_string(), Number::New(env->isolate(), rss));

0 commit comments

Comments
 (0)
Please sign in to comment.