Tagged Questions

1
vote
1answer
32 views

Is it possible to use d8 to measure memory usage?

With the release of the Closure compiler, I was hoping to see if there was a difference in memory usage between a js file using the compiler and one which had not. In particular, …
3
votes
1answer
122 views

Throwing a JavaScript exception from C++ code using Google V8

I'm programming a JavaScript application which accesses some C++ code over Google's V8. Everything works fine, but I couldn't figure out how I can throw a JavaScript exception whi …
1
vote
3answers
283 views

How to turn the V8 compiled javascript into an EXE?

I know that google's v8 compiles javascript into native machine (binary if I understand correctly) code. Is there a way to take the output and turn it into a exe?
1
vote
2answers
137 views

How to incoparate or implement a DOM API to v8?

I am writing a server application that is able to manipulate the DOM before it is served to the client. I am using C++ and Google's v8 as a javascript engine but I don't see any DO …
1
vote
1answer
141 views

How do you include another js file in Google’s v8?

How do you include another script file inside a .js script file in v8? There's the <script> tag in HTML but how can it be done inside a v8 embedded program?
7
votes
6answers
994 views

Referencing Google’s V8 engine from a .NET app

I'm building a .NET 3.5 application and have the need to evaluate JS code on the server - basically a user provided rule set that can work within a browser or on the server. Manage …
1
vote
1answer
105 views

Building v8 without JIT

Hello, I would like to run some tests on v8 with and without JIT to compare performances. I know JIT will improve my average speed performance, but it would be nice for me to have …
3
votes
14answers
1k views

Is Google Chrome’s V8 engine really that good?

Did anyone have time to take a look at it? I've read a bit and it promises a lot, if it's half what they say, it'll change web programming a lot
0
votes
1answer
393 views

Can’t convert function pointer argument

The error I'm getting: error C2664: 'v8::FunctionTemplate::New' : cannot convert parameter 1 from 'v8::Handle<T> (__cdecl *)(const v8::Arguments &)' to 'v8::InvocationCa …
3
votes
2answers
221 views

What are the code and data footprints of the leading javascript engines? (V8, Squirrelfish, TraceMonkey..)

Since the speed of the top Javascript engines seems to be on par, the next criteria is footprint. What are the code and data footprints of the leading javascript engines?
1
vote
4answers
546 views

V8 JavaScript Engine on Windows (MinGW)

The build instructions of V8 JavaScript Engine mention only Visual Studio 2005 and 2008. Has anybody been successful with MinGW on Windows XP/Vista?
1
vote
4answers
1k views

Aw, Snap! (Google Chrome error)

I'm currently giving Windows 7 (32-bit) a spin, and I decided to also check out Google Chrome. However, when I loaded up this page: http://sof.modos.org/tracker/chart/6309/all (do …
5
votes
3answers
523 views

How do you free a wrapped C++ object when associated Javascript object is garbage collected in V8?

V8's documentation explains how to create a Javascript object that wraps a C++ object. The Javascript object holds on to a pointer to a C++ object instance. My question is, let's s …
3
votes
2answers
222 views

How can I see the machine code generated by v8?

Does anybody know how I can see the actual machine code that v8 generates from Javascript? I've gotten as far as Script::Compile() in src/api.cc but I can't figure out where to go …
3
votes
2answers
412 views

How do the various Javascript optimization projects affect DOM performance?

There's a lot of capital C, capital S computer science going into Javascript via the Tracemonkey, Squirrelfish, and V8 projects. Do any of these projects (or others) address the p …

1 2 next
15 30 50 per page