python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How does hidden classes really avoid dynamic lookups?
So we have all heard that v8 uses the thing called hidden classes where when many objects have the same shape, they just store a pointer to the shape struct which stores fixed offsets. I have heard th...
Null
Votes: 0
Answers: 1
V8 Embedding. Cannot print out the `v8::Local` object
In Short
I was trying to print out the v8::Local object content, with either of v8/tools/gdbinit and v8/tools/lldb_commands.py helper scripts, I got Empty Line OR Syntax Error messages. Is there anyth...
absuu
Votes: 0
Answers: 1
Why cannot v8/nodejs allocate a max-size array if sufficient memory?
I'm aware the maximum length of a JavaScript array is 2^32-1, but regardless of how much memory I permit it will still fail to allocate. What's going on? One-line repro:
node --max-old-space-size=1000...
Aaron
Votes: 0
Answers: 1
JavaScript: V8 question: are small integers pooled?
was looking at this V8 design doc where it has a section for Constant Pool Entries
it says
Constant pools are used to store heap objects and small integers that are referenced as constants in generat...

Joji
Votes: 0
Answers: 1