[webkit-dev] Where to call Codeblock::dump from within webcore

2012-04-18 Thread pgsery
I want to call CodeBlock::dump from webcore in addition to the jsc shell. I've compiled webkit-1.6.1 with the --enable-debug option, modified dump to print to a file, instead of stdout, and set options.dump=true. This works from the shell, but now I need to find where to call dump from within w

Re: [webkit-dev] CMake for Apple's Windows port

2012-04-18 Thread Thomas Fletcher
I will say Thank You ... we use cmake as the base for nearly every new WebKit port we engage in. We have a native Windows build that is cmake to replace the Apple/CF based one and it is so much easier to maintain than the previous collection of VS property pages and build configurations. Not only

Re: [webkit-dev] CMake for Apple's Windows port

2012-04-18 Thread Patrick Gansterer
Am 19.04.2012 um 03:46 schrieb Mark Rowe: >> >> Is it possible to get a (detailed) list of requirements? It's hard for >> people don't knowing the internal Apple build process to work on it. > > We don't have anything of this nature available for external consumption at > this time. Does that

Re: [webkit-dev] CMake for Apple's Windows port

2012-04-18 Thread Mark Rowe
On 2012-04-18, at 18:43, Patrick Gansterer wrote: > > Am 12.04.2012 um 20:06 schrieb Dirk Pranke: >> Patrick, have you documented what all you need to install on a Win box >> in order to be able to run CMake and do the build? > > You need to install CMake and the same tools listed at > http:/

Re: [webkit-dev] CMake for Apple's Windows port

2012-04-18 Thread Patrick Gansterer
Am 12.04.2012 um 20:06 schrieb Dirk Pranke: > Patrick, have you documented what all you need to install on a Win box > in order to be able to run CMake and do the build? You need to install CMake and the same tools listed at http://trac.webkit.org/wiki/WinCE#Build and http://www.webkit.org/buil

Re: [webkit-dev] Feature announcement: Font Boosting

2012-04-18 Thread Kenneth Rohde Christiansen
I think it would be great to talk about this at the WebKit summit tomorrow, if you are there. Cheers Kenneth On Tue, Apr 17, 2012 at 10:17 PM, John Mellor wrote: > Hi webkit-dev, > > You may have heard that Chrome for > Android includes a "Font Boosting" fe

Re: [webkit-dev] run-webkit-tests --pixel-tests and text-based tests

2012-04-18 Thread Dirk Pranke
On Wed, Apr 18, 2012 at 10:40 AM, Milian Wolff wrote: > Hey all, > > I'm working on isPrinting() support for the Qt port and noticed that if I do > something like this: > > ./Tools/Scripts/run-webkit-tests -p LayoutTests/printing/ > > Then I get lots of "failures" due to missing image baselines fo

[webkit-dev] run-webkit-tests --pixel-tests and text-based tests

2012-04-18 Thread Milian Wolff
Hey all, I'm working on isPrinting() support for the Qt port and noticed that if I do something like this: ./Tools/Scripts/run-webkit-tests -p LayoutTests/printing/ Then I get lots of "failures" due to missing image baselines for tests like printing/page-rule-css-text-expected.html. Thing is:

Re: [webkit-dev] SFX instructions emission slow cases

2012-04-18 Thread Oliver Hunt
LLInt is on if the target platform is a supported architecture (currently only x86, x86-64, and ARM w/Thumb2 I believe) on a platform with an ABI we understand (which I believe is normal unix-derivative cdecl) --Oliver On Apr 18, 2012, at 4:35 AM, wingoog moon wrote: > > Thanks for anwers. >

Re: [webkit-dev] github mirror

2012-04-18 Thread Jarred Nicholls
(from correct address) On Wed, Apr 18, 2012 at 11:06 AM, Jarred Nicholls wrote: > On Wed, Apr 18, 2012 at 11:02 AM, Simon Hausmann > wrote: > >> On Wednesday, April 18, 2012 06:53:46 AM ext Shezan Baig wrote: >> > Hi WebKit, >> > >> > I've been using a fork of the following repo: >> > https://g

Re: [webkit-dev] github mirror

2012-04-18 Thread Shezan Baig
On Wed, Apr 18, 2012 at 11:02 AM, Simon Hausmann wrote: > > I believe the reason for them being different is because in the github > repo the > commit author fields are resolved. > > That would certainly explain it :) I don't have a git.webkit.org checkout, so I couldn't tell ___

Re: [webkit-dev] github mirror

2012-04-18 Thread Simon Hausmann
On Wednesday, April 18, 2012 06:53:46 AM ext Shezan Baig wrote: > Hi WebKit, > > I've been using a fork of the following repo: > https://github.com/WebKit/webkit > > However, yesterday there was discussion on #webkit that the SHA-1 checksums > on this repo are different from repo at git.webkit.or

Re: [webkit-dev] github mirror

2012-04-18 Thread Shezan Baig
(resending to all) Yes, I think it would be better to mirror git.webkit.org to github instead of mirroring from svn to github. In theory, it really shouldn't make a difference though, so i'm actually surprised that the sha1 are out of sync. But mirroring from git.webkit.org will guarantee they are

Re: [webkit-dev] github mirror

2012-04-18 Thread Jarred Nicholls
Wouldn't we need to continually mirror git.webkit.org to github as well? I presume github is mirroring directly from svn right now. I'd think the out-of-sync issue would simply occur again unless we started to mirror git. webkit.org to github instead of svn to github. I don't know what all Git t

[webkit-dev] SFX API.

2012-04-18 Thread wingoog moon
Hi. Does SFX API cover all bytecode instructions. i.e. can I implement all SFX bytecode Instructions trough SFX API? Thanks. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] SFX instructions emission slow cases

2012-04-18 Thread wingoog moon
Thanks for anwers. Can you please tell more about LLInt and is it turned on by default? On Wed, Apr 18, 2012 at 12:48 PM, Filip Pizlo wrote: > JavaScript is a dynamically typed language. Therefore, we cannot know for > sure what types of values may flow into an instruction at the time we > compi

[webkit-dev] github mirror

2012-04-18 Thread Shezan Baig
Hi WebKit, I've been using a fork of the following repo: https://github.com/WebKit/webkit However, yesterday there was discussion on #webkit that the SHA-1 checksums on this repo are different from repo at git.webkit.org, which means folks working on both need to have both versions checked out.

Re: [webkit-dev] SFX instructions emission slow cases

2012-04-18 Thread Filip Pizlo
JavaScript is a dynamically typed language. Therefore, we cannot know for sure what types of values may flow into an instruction at the time we compile it. a + b may be an integer addition that produces an integer result, an integer addition that overflows and produces a double, an addition of a

[webkit-dev] SFX instructions emission slow cases

2012-04-18 Thread wingoog moon
Hi! As I understand there are two passes to translate SFX bytecode to the native code(functions privateCompileMainPass() and privateCompileSlowCases()). So whats the purpose of privateCompileSlowCases(). Why we need slow cases for each bytecodeInstruction? Is it needed when arguments of instructi