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.