V8 is Google's open source JavaScript engine.

learn more… | top users | synonyms

0
votes
0answers
17 views

What are the best practices for optimising JavaScript for (potential) future browser assembly-language optimisations?

As I understand it, the V8 engine in Chrome has been using assembly level optimisations for some time, and now the (at the time of writing) upcoming release of OdinMonkey on Firefox indicates that ...
1
vote
0answers
10 views

Chromium: is communicating with the page faster than communicating with a worker?

Suppose I've got the following parts in my system: Storage (S) and a number of Clients (C). The clients are separate Web Workers and I'm actually trying to emulate something like shared memory for ...
0
votes
0answers
10 views

v8::Persistent MarkIndependent, what does this method exactly do?

Following is v8 code comment, I don't quite understand explaination. /** * Marks the reference to this object independent. Garbage collector * is free to ignore any object groups containing this ...
0
votes
1answer
13 views

How to remove V8 from CentOS 6.3?

nodejs crashed on startup when run with no arguments: [root@lcnolw1073 ~]# nodejs nodejs: ../src/handle_wrap.cc:65: static v8::Handle<v8::Value> node::HandleWrap::Unref(const ...
1
vote
0answers
14 views

Node.js fails to start with v8 symbol error

I installed the nodejs package on CentOS release 6.3 (Final) But it crashed on startup when run with no arguments: [root@lcnolw1073 ~]# nodejs nodejs: ../src/handle_wrap.cc:65: static ...
1
vote
0answers
23 views

Correct use of HandleScope in Asynchronous Addon

I'm writing a asynchronous Node Addon, but I have been struggling to figure out if I need to use a HandleScope in the "After" function that calls the client JavaScript callback. I've seen examples ...
0
votes
2answers
33 views

Does nodejs/V8 store compiled machine code anywhere on disk?

Edit: as @dystroy notes below, node uses machine code directly, not bytecode. I do a lot of Python coding, and there's always bytecode lying around in .pyc files. I was wondering if node stores ...
1
vote
2answers
27 views

How to send HTTP requests to the v8 debugger?

The V8 javascript engine implements this debugger protocol. I start V8 (node.js) and I can connect through the browser to the open port (5858). What is the format of a request that needs to be send to ...
2
votes
0answers
36 views

Running MongoDB queries from AS3 client?

Is it possible to run native Javascript functions for the mongo shell on server side from AS3 client AIR app? I have a lot experience in running Javascript methods embedded/loaded on HTML where SWF ...
0
votes
1answer
42 views

How to populate a v8 array?

I have a vector std::vector<std::string> path and I would like to copy it to a v8 array and return it from my function. I have tried creating a new array v8::Handle<v8::Array> result; ...
0
votes
1answer
26 views

How to return different types in v8

I have not been able to find a general list for returning different types in v8. For instance to return an Number in v8 you would do Handle<Value> some_function(const v8::Arguments& args) { ...
1
vote
0answers
49 views

Node.js source code build giving segmentation fault on ARM

tl;dr: I tried to install node.js on my ARMv7-based Cubox running Ubuntu 12.10 (quantal). When compiling node.js from source (see "Second attempt" below), node produces a segmentation fault. What can ...
0
votes
2answers
39 views

How to convert std::string to v8's Local<string>

I have a function which is ment to take in a string and then pass it to my c++ function add_node() Handle<Value> Graph::add_node(const v8::Arguments& args) { HandleScope scope; Graph* ...
0
votes
0answers
25 views

What is an internal field count and what is SetInternalFieldCount used for?

I'm having trouble understanding what the SetInternalFieldCount() function actually does. In the v8 documentation the function is described as setting "the number of internal fields for objects ...
0
votes
1answer
33 views

How to read javascript values from python with PyV8

I've implemented PyV8 into Python. I have an example javascript file that looks like this: main-js.js: var numOne = 1+2; var numTwo = 3+1; var numThree = 5; How do I read each variable into Python ...
2
votes
1answer
47 views

Configuring v8's memory management to be smart for a node.js process

We run an XMPP server on node.js, on a machine with around 3.8 GB RAM. Here are the command line parameters we pass while invoking node : /opt/node/bin/node --max-old-space-size=3000 ...
5
votes
1answer
83 views

Node.JS Regex engine fails on large input

The question is a bit complicated, and googling didn't really help. I will try to put in only relevant aspects of it. I have a large document in approximately the following format: Sample Input: ...
0
votes
1answer
57 views

Chrome FATAL crash

I have a Node.js / Meteor app that is left consistently running on a screen - it works no problem for around 20 hours, then without fail (when I'm out of the office) I get the infamous "Aw Snap" ...
0
votes
2answers
88 views

How can I create another thread in the v8

I want to set timeout for v8::Script::Run. Unfortunately,I have a little experience with v8. I understood that I need to use StartPreemtion + Loker + TerminateException. Consequently, v8::Script::Run ...
0
votes
0answers
51 views

How can I maintain zero-copy in a native node module?

I'm writing a native node module for an in-process database which features zero-copy data lookups. I'd like my module to also have this ability. In other words, when I get data from the database, I'd ...
2
votes
1answer
49 views

SetTimeout issue in Node.js

I've the following code which runs fine under Chrome (V8) but fails inside node: var id; id = setTimeout("TimeoutHandler()", 10); console.log ('SET'); function TimeoutHandler() { clearTimeout(id); ...
0
votes
0answers
27 views

Can a multi dimensional array be converted to a v8 Array Object?

I have a multi dimensional array of longs that I'm working with in C++. Is there a way to convert this array to a v8::Array? Essentially, I would like to pass this array to a Node JS callback ...
2
votes
2answers
162 views

Implementing Clojure on top of V8 engine

I am just wondering if it would make sense to implement Clojure on top of Googles V8 Javascript engine. I never use Java interoperability. I also am learning ClojureScript. So I could see an advantage ...
2
votes
3answers
62 views

JavaScript memory leak caused by function scope?

Using the chrome development tools i recently found out, that my application which uses a modular concept leaves over some Module objects in memory even if they are not referenced directly by any ...
-1
votes
0answers
33 views

What exactly is v8?

I don't fully understand what is v8. Can someone please explain what it is and the use of it? It's a programming language, it's a compiler/Parser, What can i do with it, Who its corresponding? My ...
0
votes
1answer
73 views

Why to obfuscate a JavaScript code is a bad style?

I know, that in the society of the web-developers to use a minifying process for their JavaScript code representing as a well stuff. But if you want to obfuscate a JavaScript code, such an action will ...
1
vote
1answer
68 views

Wrapping a C++ Object to a v8 Object in a Node Addon

I'm currently writing a Node addon in C++, and I'm running into an issue where I need to make and return a v8 Array filled with v8 wrapped C++ object instances. At the moment, the code looks ...
0
votes
2answers
47 views

Does V8 have Unicode support?

I'm using v8 to use JavaScript in native(c++) code. To call a Javascript function I need to convert all the parameters to v8 data types. For eg: Code to convert char* to v8 data type char* value; ...
0
votes
0answers
49 views

Error logging and formatting

I'm doing some error logging in Node.js and for some reason I keep having the same issue. console.log(myError.stack); Error.prepareStackTrace = function(error, stack) { return stack; }; ...
1
vote
0answers
31 views

Extending V8 JavaScript engine

http://docs.python.org/2/extending/ I have some experience with extending/embedding the python interpreter. I also know some of the tools that make this easier like cython. Now I am curious about ...
6
votes
2answers
59 views

switch-case performance in ECMAscript

I'm using switch-case statements on regular bases in ECMAscript. Beside my personal endorsement about it, there is tons of specialist literature out, about performance in this language in general and ...
1
vote
0answers
26 views

is there a way to limit node's --trace option's output?

node has this great option: --trace (trace function calls) which gives you tons of output of exactly how your program is running. when you have an error that causes node to crash without any ...
0
votes
1answer
58 views

Compiling V8 on Windows to Use with g++

I have gone through all the procedures on how to compile V8 and actually managed to compile it on Windows platform. However, the problem is that the compilation procedure on Windows forces you to ...
0
votes
1answer
38 views

Will V8 Generate Hidden Classes for an Object Used as an Associative Array? (Large number of properties)

I am trying to implement a straightforward associative array (no duplicates) with string keys and instances of my own "classes" as values in JavaScript. I am happy with expected O(1) behaviour of a ...
0
votes
0answers
71 views

Node.js addon callback using member variables

So I'm making an addon for node.js as in: http://nodejs.org/api/addons.html#addons_wrapping_c_objects. However: my class has a pthread that loops forever and performs callbacks via uv_async_send() as ...
0
votes
1answer
76 views

How to create v8::FunctionTemplate with C++ lambda function?

I've read the previous question here but it seems a bit unrelated. C++ lambda, when it captured nothing, is fine to be an argument of the v8::FunctionTemplate. But when it captured something I needed, ...
0
votes
0answers
29 views

Setting hidden properties on V8 clone objects reflected in all clones created

I am using Google V8 component as JS engine for my project. I have pre-installed few JS objects (FunctionTemplates) which are used to create JS objects from JS environment. I have a particular need ...
1
vote
0answers
120 views

Type of ajax response data (Spidermonkey vs V8)

I have noticed this while performing an Ajax request to Google Elevation service: jQuery.ajax({ url: elevation_url, method: "get", async: false, data: { locations : ...
0
votes
1answer
56 views

How to apply callback with v8::Arguments?

I'm writing a Node.js native module with a function accepting arbitrary length arguments, and it's similar with this in JS: cb = function( ) { // Receive arguments and do something... } foo = ...
0
votes
1answer
96 views

*v8::String::Utf8Value(args[0]->ToString()) does not return the string of node.js addon argument

I've found that *v8::String::Utf8Value(args[0]->ToString()) returns the proper string on node 0.8.2 32-bit and does not return the proper string on node 0.8.8 64-bit. does anybody understand why? ...
0
votes
0answers
53 views

How to make Javascript shell code compatible with both JSC and V8?

I'm programming with Javascript in console through the JSC engine for OSX 10.6 (Snow Leopard). Now, I've just installed V8 engine through MacPorts and I'm getting error messages from V8 as it doesn't ...
2
votes
2answers
74 views

Embed GWT in C++?

I want to write code in java, compile with GWT and embed output JavaScript into C++ program via v8. Everything seems logical and thus possible. I didn't use GWT before, so i'm not sure. Maybe someone ...
6
votes
1answer
150 views

Manipulating the V8 ast

I intend to implement a js code coverage directly in the v8 code. My initial target is to add a simple print for every statement in the abstract syntax tree. I saw that there is an AstVisitor class , ...
0
votes
1answer
61 views

How to store and recall v8::Value from javascript on C++ vector

Lets say that my class is like this: namespace foo { class Item { public: Item(); ~Item(); std::string Name; v8::Local<v8::Value> DataValue; ...
0
votes
1answer
60 views

V8 How to convert v8::Persistent<v8::Primitive> to v8::Primitive?

I'm using V8 javascript engine and storing some values in a C++ object using this: v8::Persistent<v8::Primitive> m_Value; I want to use the saved value to set another Primitive and return ...
2
votes
0answers
141 views

Android v8 - works on ARM, crashes on x86

I have an existing Android app that uses an embedded v8. We have previously only built for ARM and are able to run without crashing. Now we want to add x86 support. I built a release version of v8 ...
2
votes
1answer
66 views

How do you check if an object is a regular expression across V8 contexts?

I recently discovered that when you use the literal regular expression syntax in one V8 context, instanceof RegExp returns false even if you share the global RegExp object between contexts. var ...
1
vote
0answers
137 views

Is it possible to run IE9 or IE10 Chakra JS engine standalone?

I need to run some benchmark tests on different JS engines, need to measure timing, CPU and memory usage. I'd like to run my tests from the commandline. Found some solutions for V8 and SpiderMonkey, ...
0
votes
2answers
105 views

How to bind a std::function to JavaScript V8?

I just started using JavaScript V8 and compiled a basic example from the Embedder's Guide. Now I want to bind C++ functions to the JavaScript context. For now I only have a more or less blank class ...
1
vote
3answers
142 views

Can javascript embedded in a C++ program faster than javascript on the web [closed]

I'm strictly a beginner with C++, but I was wondering if javascript (or Lua or any scripting language) running inside a C++ program is subject to the same kind of hardware acceleration that the C++ ...

1 2 3 4 5 12