[webkit-dev] LLInt alignment problem on ARM

2013-09-26 Thread Gabor Rapcsanyi
Hello! I'm fighting with a strange LLInt alignment problem on ARM. As I see we put the LLInt code into .rodata section instead of .text. Is there a specific reason why we are doing this? If there is not I would put them to the .text section. Here is the objdump:

Re: [webkit-dev] Changes in QtWebKit development

2013-09-26 Thread Andreas Kling
On Sep 25, 2013, at 12:40 PM, Allan Sandfeld Jensen k...@carewolf.com wrote: On Saturday 14 September 2013, Andreas Kling wrote: On Sep 14, 2013, at 11:24 AM, Allan Sandfeld Jensen k...@carewolf.com wrote: That said, in all likelihood the Qt port will not remain part of WebKit forever, ...

Re: [webkit-dev] LLInt alignment problem on ARM

2013-09-26 Thread Oliver Hunt
I believe that there’s a mnemonic that forces alignment that we could (arguably should?) be using before these labels. IIRC it’s something like .align N — if we aren’t doing this already we could make the lint assembler backend emit a .align 16 prior to each global symbol. —Oliver On Sep 26,

Re: [webkit-dev] LLInt alignment problem on ARM

2013-09-26 Thread Michael Saboff
I’m wondering if the alignment is the traditional ARM vs Thumb 2. The movw after lint_begin with hex 0xe30b3eef is a Thumb 2 instruction. - Michael On Sep 26, 2013, at 9:24 AM, Oliver Hunt oli...@apple.com wrote: I believe that there’s a mnemonic that forces alignment that we could

[webkit-dev] Proposal: remove style scoped

2013-09-26 Thread Benjamin Poulain
Dear WebKit, We have an unmaintained implementation of the scoped style feature in the tree. (http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#attr-style-scoped) It is getting in the way of improvements so I would like to remove it for now. From what I have found

Re: [webkit-dev] Proposal: remove style scoped

2013-09-26 Thread Antti Koivisto
I think it is a feature that we may want to have sooner or later. We will probably want to change the implementation quite a bit though and removing the dead code for now makes sense. antti On Thu, Sep 26, 2013 at 3:42 PM, Benjamin Poulain benja...@webkit.orgwrote: Dear WebKit, We have