Re: [webkit-dev] String::operator+= considered harmful

2012-09-07 Thread Anders Carlsson
On Sep 4, 2012, at 5:52 PM, Benjamin Poulain wrote: > On Tue, Sep 4, 2012 at 4:22 PM, Adam Barth wrote: > Removing operator+= will likely require changes to a number of > port-specific files. I'll do my best to remove these, but I might > need some help from maintainers of individual ports. I

[webkit-dev] Hashing pairs in WTF

2012-09-07 Thread Dana Jansens
Hello WebKittens, I noticed the other day that our hashing method in wtf/HashFunctions.h for hashing of pairs can be improved. We have a hash method (WTF::intHash) for a single integer that takes 32 bits as input and produces a key of 32 bits. This works well enough for hashing an integer, as it

Re: [webkit-dev] Replacing the JSC classic C++ interpreter with a llint generated C++ interpreter

2012-09-07 Thread Thiago Marcos P. Santos
On Thu, Sep 6, 2012 at 11:02 PM, Mark Lam wrote: > As part of an effort to simplify future development, the JSC team is > deprecating the classic C++ interpreter (and will delete it shortly on Sept > 24). In its place, we will use the LLINT (low level interpreter) with the > C++ back-end (see htt