Re: [webkit-dev] Function Property Names

2010-05-03 Thread Zoltan Herczeg
Hi, https://bugs.webkit.org/show_bug.cgi?id=32561 Zoltan Is there any way to map specific bytecode instruction instances to the position in the source code of the JavaScript code they correspond to? -- View this message in context:

Re: [webkit-dev] Function Property Names

2010-05-03 Thread Nyx
I'm looking for a way to map the bytecodes that the interpreter is running back to source positions, not the machine code generated by the JIT. At the very least, I'd like to know if I can uniquely identify specific bytecode instructions by their offset and the source id of the code block they

Re: [webkit-dev] Function Property Names

2010-05-03 Thread Kent Hansen
ext Nyx wrote: I'm looking for a way to map the bytecodes that the interpreter is running back to source positions, not the machine code generated by the JIT. Have a look at bytecodeOffsetForPC(), CodeBlock::lineNumberForBytecodeOffset(), and Interpreter::throwException(). Kent

[webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Gustavo Sverzut Barbieri
Hi all, As some of you know, the EFL port is almost all merged, we just lack a build system in SVN by now. We initially started with automake, sharing with GTK, but it was quite slow and the Gtk guys had the willing to get it clean before any changes were made, in order to avoid it to get worse.

Re: [webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Adam Treat
Bill, could you look over these CMake files and give it an informal review? On Monday 03 May 2010 02:37:22 pm Gustavo Sverzut Barbieri wrote: Hi all, As some of you know, the EFL port is almost all merged, we just lack a build system in SVN by now. We initially started with automake,

[webkit-dev] HitTest'ing scrollbars

2010-05-03 Thread tonikitoo (Antonio Gomes)
Hi. While working on bug 16809 (Clicking a scrollbar blurs the currently focused element), a couple of questions raised about the current behavior of mouse clicks on scrollbars. On ports that do *not* use platform/native widgets for rendering scrollbars (including Qt, Windows, Chromium): 1)

Re: [webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Patrick Roland Gansterer
Hi, the file from Gustavo are mainly for the EFL port. It's not a general buildsystem and some parts are not real CMake style in the moment. I did some cleanup for the JavaScriptCore files already, but for the WebCore and WebKit parts it is a bigger task. As I already wrote at [1] I will help

Re: [webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Gustavo Sverzut Barbieri
On Mon, May 3, 2010 at 5:21 PM, Patrick Roland Gansterer par...@paroga.com wrote: Hi, the file from Gustavo are mainly for the EFL port. It's not a general buildsystem and some parts are not real CMake style in the moment. I did some cleanup for the JavaScriptCore files already, but for the

Re: [webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Patrick Roland Gansterer
Hi, On Mon, 3 May 2010 17:33:45 -0300, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: Did you see this new version? Leandro did the work on top of yours. However he removed the .h from the source list, he did it before he read that it may be useful to get some IDE to show it. If

Re: [webkit-dev] Help with review of EFL CMake patches?

2010-05-03 Thread Gustavo Sverzut Barbieri
On Mon, May 3, 2010 at 6:09 PM, Patrick Roland Gansterer par...@paroga.com wrote: Hi, On Mon, 3 May 2010 17:33:45 -0300, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: Did you see this new version?  Leandro did the work on top of yours. However he removed the .h from the source

Re: [webkit-dev] Function Property Names

2010-05-03 Thread Nyx
Is there any way to get the number of parameters a function has declared from a JSFunction object? I'm asking because I want to get the argument values a function is receiving in an op_call (in the interpreter). I copied this snipper of code for the case where a host function is called: