I have the V8 engine embedded in a C++ application.

I wish to take advantage of the built in garbage collector (in particularly the compacting feature) in V8 but wish to store C++ objects instead.

I don't mind needing to call the collector manually to dispose of the object, as long as the memory can be reclaimed.

link|improve this question
feedback

2 Answers

Interesting thought. I have not used V8 but I have written C++ garbage collectors. I think the answer will actually depend on the algorithm V8 uses for garbage collection. A mark-and-sweep collector, which treats memory as completely flat, will work for any program but its terribly slow. Most collectors do more language specific optimizations and use actual object sizes and compiler hints to speed things up, this wont work with C++.

I should mention that generational collectors can also work as long as they don;t use compiler hints and treat memory naively.

The GC i wrote used my own version of smart pointers and it worked very well for my specific workload.

link|improve this answer
feedback

It's explained here: http://code.google.com/apis/v8/embed.html#handles

For more info search for v8 weak handles.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.