Re: [webkit-dev] Adding blending mode to WebKit canvas

2012-11-12 Thread Dirk Schulze
On Nov 11, 2012, at 10:09 PM, Rik Cabanier caban...@gmail.commailto:caban...@gmail.com wrote: On Sun, Nov 11, 2012 at 9:52 PM, Dirk Schulze k...@webkit.orgmailto:k...@webkit.org wrote: On Sunday, November 11, 2012, Rik Cabanier wrote: On Sun, Nov 11, 2012 at 8:43 PM, Maciej Stachowiak

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Terry Anderson
If std::cerr fails, you could also try printing to a file. On Mon, Nov 12, 2012 at 10:07 AM, Mikhail Naganov mnaga...@chromium.orgwrote: Have you tried std::cerr? On Mon, Nov 12, 2012 at 10:00 AM, Zhao, Halley halley.z...@intel.com wrote: Nothing shows in terminal when I added some

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Thiago Marcos P. Santos
On Mon, Nov 12, 2012 at 12:00 PM, Zhao, Halley halley.z...@intel.com wrote: Nothing shows in terminal when I added some std::cout in source code, any hints to print some log in webkit? My build command line: “./build-webkit --gtk --3d-rendering 21 | tee build.log” My run command line:

Re: [webkit-dev] how could I use std::cout in webkit?

2012-11-12 Thread Zhao, Halley
The same code works for me when I'm back to work today. It is amazing, and I remember that used to work for me days ago. -Original Message- From: Thiago Marcos P. Santos [mailto:tmpsan...@gmail.com] Sent: Tuesday, November 13, 2012 1:36 AM To: Zhao, Halley Cc:

[webkit-dev] Instrumenting JavaScriptCore

2012-11-12 Thread Erick Lavoie
Hi, A research team instrumented JavaScriptCore in 2010 to gather empirical data about the dynamic behavior of JavaScript [1]. I am currently wondering how easy it would be to replicate their setup using the latest WebKit release. I noticed, in the latest release, that either the JIT or the

Re: [webkit-dev] Instrumenting JavaScriptCore

2012-11-12 Thread Mark Lam
Erick, If your instrumentation is not performance critical, you might be interested in using the llint C++ backend. To use that: 1. in WTF/wtf/Platform.h (or equivalent), #define ENABLE_JIT 0, and #define ENABLE_LLINT 1. This will allow you to build for the C++ llint which generates C++

Re: [webkit-dev] Instrumenting JavaScriptCore

2012-11-12 Thread Filip Pizlo
On Nov 12, 2012, at 7:55 PM, Erick Lavoie wrote: Hi, A research team instrumented JavaScriptCore in 2010 to gather empirical data about the dynamic behavior of JavaScript [1]. I am currently wondering how easy it would be to replicate their setup using the latest WebKit release. I