[v8-dev] Re: Issue 3348 in v8: v8 Intl doesn't handle failure conditions

2014-07-23 Thread codesite-noreply via v8-dev
Comment #9 on issue 3348 by srl...@gmail.com: v8 Intl doesn't handle failure conditions http://code.google.com/p/v8/issues/detail?id=3348 renamed patch Attachments: patch-3348.patch 1.9 KB -- You received this message because this project is configured to send all issue notificat

[v8-dev] Re: Issue 3348 in v8: v8 Intl doesn't handle failure conditions

2014-07-23 Thread codesite-noreply via v8-dev
Comment #8 on issue 3348 by srl...@gmail.com: v8 Intl doesn't handle failure conditions http://code.google.com/p/v8/issues/detail?id=3348 Here you go Attachments: patch-3344.patch 1.9 KB -- You received this message because this project is configured to send all issue notificatio

[v8-dev] Re: Issue 3345 in v8: i18n: Make break iterator use optional

2014-07-23 Thread codesite-noreply via v8-dev
Comment #7 on issue 3345 by srl...@gmail.com: i18n: Make break iterator use optional http://code.google.com/p/v8/issues/detail?id=3345 To test this patch: * add "#define UCONFIG_NO_BREAK_ITERATION 1" to the top of ./third_party/icu/source/common/unicode/uconfig.h * build v8 * run "d8 bt

[v8-dev] [v8] r22578 committed - Tagging version 3.28.35

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22578 Author: machenb...@chromium.org Date: Thu Jul 24 00:05:54 2014 UTC Log: Tagging version 3.28.35 http://code.google.com/p/v8/source/detail?r=22578 Added: /tags/3.28.35 -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You rece

[v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread arv
Switching to use a LookupIterator cleaned this up a bit. https://codereview.chromium.org/384963002/diff/190001/src/unscopables.h File src/unscopables.h (right): https://codereview.chromium.org/384963002/diff/190001/src/unscopables.h#newcode24 src/unscopables.h:24: if (it->state() == LookupItera

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #9 on issue 3463 by verwa...@chromium.org: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 No, just interesting to see. The reason why you are getting the ASSERT is because we let interceptors through on the prototype only if it's on the glo

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #8 on issue 3463 by fedor.in...@gmail.com: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 They are just no-ops right now, as far as I can see. Not sure why they were introduced in first place... Are they causing the problem right now? -- Y

[v8-dev] Re: Fix issue with setters and their holders in accessors.cc (issue 417793002 by a...@chromium.org)

2014-07-23 Thread verwaest
lgtm https://codereview.chromium.org/417793002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #7 on issue 3463 by verwa...@chromium.org: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 You guys also use access checks? Do you have a document on how they are used? We are thinking of alternatives for use in chrome. We kinda expected th

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #6 on issue 3463 by verwa...@chromium.org: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 Yes that's exactly what I meant. The load receiver is the global proxy, but the interceptor holder behind it is a global object. In blink there's an

[v8-dev] Re: Fix issue with setters and their holders in accessors.cc (issue 417793002 by a...@chromium.org)

2014-07-23 Thread adamk
object-observe test looks good to me, I'll leave accessors.cc for verwaest https://codereview.chromium.org/417793002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" gr

[v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread arv
PTAL https://codereview.chromium.org/384963002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #5 on issue 3463 by fedor.in...@gmail.com: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 Ah, actually it is not a JSGlobalProxy, sorry! It is just a Global object with interceptors: https://github.com/joyent/node/blob/61ddad1314824ac32bb2

[v8-dev] Re: Fix issue with setters and their holders in accessors.cc (issue 417793002 by a...@chromium.org)

2014-07-23 Thread arv
Adding Adam to look at the O.o related changes. https://codereview.chromium.org/417793002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from t

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #4 on issue 3463 by fedor.in...@gmail.com: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 Hah, it kind of does. This is not the part of code that I wrote, so I have incomplete understanding of the reasoning behind this choices. But I will

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #3 on issue 3463 by verwa...@chromium.org: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 OK, that assert is benign. I'll extend it with an assert for that particular case tomorrow. Interesting that you have named interceptor setters on th

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Comment #2 on issue 3463 by fedor.in...@gmail.com: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 The receiver is most likely a JSGlobalProxy, AFAIK. -- You received this message because this project is configured to send all issue notifications to

[v8-dev] Fix issue with setters and their holders in accessors.cc (issue 417793002 by a...@chromium.org)

2014-07-23 Thread arv
Reviewers: Toon Verwaest, Message: PTAL Description: Fix issue with setters and their holders in accessors.cc BUG=3462 LOG=Y Please review this at https://codereview.chromium.org/417793002/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+86, -21 lines): M src

[v8-dev] Re: Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Updates: Status: Accepted Owner: verwa...@chromium.org Comment #1 on issue 3463 by verwa...@chromium.org: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 Is the receiver perhaps the JSGlobalProxy, and do you guys install an intercepto

[v8-dev] Re: Fix ArrayLengthSetter to not throw on non-extensible receivers. (issue 411983003 by verwa...@chromium.org)

2014-07-23 Thread verwaest
Committed patchset #1 manually as r22576 (presubmit successful). https://codereview.chromium.org/411983003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] [v8] r22576 committed - Fix ArrayLengthSetter to not throw on non-extensible receivers....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22576 Author: verwa...@chromium.org Date: Wed Jul 23 20:27:32 2014 UTC Log: Fix ArrayLengthSetter to not throw on non-extensible receivers. BUG=v8:3460 LOG=n R=ish...@chromium.org Review URL: https://codereview.chromium.org/411983003 http://code.google.com/p/v8/source/detail

[v8-dev] Re: Fix ArrayLengthSetter to not throw on non-extensible receivers. (issue 411983003 by verwa...@chromium.org)

2014-07-23 Thread ishell
lgtm https://codereview.chromium.org/411983003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Re: Fix ArrayLengthSetter to not throw on non-extensible receivers. (issue 411983003 by verwa...@chromium.org)

2014-07-23 Thread arv
What if the instance has a non writable length property? https://codereview.chromium.org/411983003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscri

[v8-dev] Fix ArrayLengthSetter to not throw on non-extensible receivers. (issue 411983003 by verwa...@chromium.org)

2014-07-23 Thread verwaest
Reviewers: Igor Sheludko, Message: PTAL Description: Fix ArrayLengthSetter to not throw on non-extensible receivers. BUG=v8:3460 Please review this at https://codereview.chromium.org/411983003/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+11, -5 lines): M

[v8-dev] [v8] r22575 committed - The accessors should get the value from the holder and not from this....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22575 Author: verwa...@chromium.org Date: Wed Jul 23 20:11:33 2014 UTC Log: The accessors should get the value from the holder and not from this. These are all data properties and if they get invoked it means that they should just return the value of the property from the

[v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread Toon Verwaest
Landed that other CL for you, so it's unblocked ;) On Wed, Jul 23, 2014 at 8:13 PM, wrote: > This is now blocked by https://codereview.chromium.org/410923003 > > https://codereview.chromium.org/384963002/ > -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-d

[v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread verwaest
Committed patchset #3 manually as r22575 (presubmit successful). https://codereview.chromium.org/410923003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Restructure the IC / Handler compilers (issue 411973002 by verwa...@chromium.org)

2014-07-23 Thread verwaest
Reviewers: Igor Sheludko, mvstanton, Message: PTAL Description: Restructure the IC / Handler compilers BUG= Please review this at https://codereview.chromium.org/411973002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+886, -1533 lines): M src/arm/code-stu

[v8-dev] Issue 3463 in v8: Crash with named interceptor (3.26.33)

2014-07-23 Thread codesite-noreply via v8-dev
Status: New Owner: New issue 3463 by fedor.in...@gmail.com: Crash with named interceptor (3.26.33) http://code.google.com/p/v8/issues/detail?id=3463 When running following chunk of code on the latest node.js master (v0.11.14-pre): vm = require('vm'); ctx = vm.createContext({console:

[v8-dev] Whitespace change to trigger bots. (issue 417593004 by machenb...@chromium.org)

2014-07-23 Thread machenbach
Reviewers: , Message: Committed patchset #1 manually as r22574 (tree was closed). Description: Whitespace change to trigger bots. TBR=machenb...@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=22574 Please review this at https://codereview.chromium.org/417593004/ SVN Bas

[v8-dev] [v8] r22574 committed - Whitespace change to trigger bots....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22574 Author: machenb...@chromium.org Date: Wed Jul 23 18:58:43 2014 UTC Log: Whitespace change to trigger bots. TBR=machenb...@chromium.org Review URL: https://codereview.chromium.org/417593004 http://code.google.com/p/v8/source/detail?r=22574 Modified: /branches/bleeding

[v8-dev] Issue 3462 in v8: FunctionPrototypeSetter is not correct

2014-07-23 Thread codesite-noreply via v8-dev
Status: Accepted Owner: a...@chromium.org CC: verwa...@chromium.org Labels: Type-Bug Priority-Medium New issue 3462 by a...@chromium.org: FunctionPrototypeSetter is not correct http://code.google.com/p/v8/issues/detail?id=3462 var o = {__proto__: function() {}}; o.prototype = 42; assert(o.hasOwn

[v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread arv
This is now blocked by https://codereview.chromium.org/410923003 https://codereview.chromium.org/384963002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Re: Move GCTracer to separate files. (issue 416543003 by ern...@chromium.org)

2014-07-23 Thread jkummerow
DBC: Please update BUILD.gn too. https://codereview.chromium.org/416543003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and s

[v8-dev] Re: Revert "Minor clarifications and simplifications as well as additional checks." (issue 410083005 by n...@chromium.org)

2014-07-23 Thread jkummerow
DBC: when reverting commits, please mention the SVN revision being reverted rather than the git hash. Due to the way git-svn works, the git hash is unique to your checkout. https://codereview.chromium.org/410083005/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/gr

[v8-dev] [v8] r22573 committed - Minor clarifications and simplifications as well as additional checks....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22573 Author: n...@chromium.org Date: Wed Jul 23 17:17:48 2014 UTC Log: Minor clarifications and simplifications as well as additional checks. R=rossb...@chromium.org BUG= Review URL: https://codereview.chromium.org/417553003 http://code.google.com/p/v8/source/detail?r=22

[v8-dev] Re: Minor clarifications and simplifications as well as additional checks. (issue 417553003 by n...@chromium.org)

2014-07-23 Thread neis
Committed patchset #1 manually as r22573 (presubmit successful). https://codereview.chromium.org/417553003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Re: Minor clarifications and simplifications as well as additional checks. (issue 417553003 by n...@chromium.org)

2014-07-23 Thread rossberg
lgtm https://codereview.chromium.org/417553003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Minor clarifications and simplifications as well as additional checks. (issue 417553003 by n...@chromium.org)

2014-07-23 Thread neis
Reviewers: rossberg, Description: Minor clarifications and simplifications as well as additional checks. R=rossb...@chromium.org BUG= Please review this at https://codereview.chromium.org/417553003/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+29, -28 lines)

[v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread arv
Updated. Would you mind landing this for me when you get the chance? Thanks. https://codereview.chromium.org/410923003/diff/20001/src/accessors.cc File src/accessors.cc (right): https://codereview.chromium.org/410923003/diff/20001/src/accessors.cc#newcode250 src/accessors.cc:250: ASSERT(value

[v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread verwaest
LGTM if you fix the test failure (test/mjsunit/regress/regress-1062422.js) https://codereview.chromium.org/410923003/diff/20001/src/accessors.cc File src/accessors.cc (right): https://codereview.chromium.org/410923003/diff/20001/src/accessors.cc#newcode250 src/accessors.cc:250: ASSERT(value->Is

[v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread arv
PTAL This now passes all the unscopables test I have in 384963002 as well as all the tests in debug mode (I'll run the webkit tests too now) Please pay extra attention to StringLengthGetter. Everything else was straight forward. https://codereview.chromium.org/410923003/ -- -- v8-dev mai

[v8-dev] X87: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers (issue 412903003 by chunyang....@intel.com)

2014-07-23 Thread chunyang . dai
Reviewers: Toon Verwaest, Message: Hello. Toon & Danno. Please help to review and commit this porting patch. thanks. Description: X87: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers port r22551. original commit message: Always use the LoadStubCompiler for Loa

[v8-dev] X87: Only to the relevant checks in LoadFunctionPrototype (issue 410223002 by chunyang....@intel.com)

2014-07-23 Thread chunyang . dai
Reviewers: Toon Verwaest, Message: Hello. Toon & Danno. Please help to review and commit this porting patch. The owner of X87 port asked for annual leave and I have to ask for help from you. thanks. Description: X87: Only to the relevant checks in LoadFunctionPrototype port r22550. original co

[v8-dev] X87: Move function prototype handling into a special handler rather than IC (issue 410203002 by chunyang....@intel.com)

2014-07-23 Thread chunyang . dai
Reviewers: Toon Verwaest, Message: Hello. Toon & Danno. Please help to review and commit this porting patch. The owner of X87 port asked for annual leave and I have to ask for help form you. thanks. Description: X87: Move function prototype handling into a special handler rather than IC port r2

[v8-dev] [v8] r22572 committed - Revert "Track history of events in GCTracer."...

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22572 Author: machenb...@chromium.org Date: Wed Jul 23 16:12:02 2014 UTC Log: Revert "Track history of events in GCTracer." This reverts commit 22567 for breaking win64 compile. BUG= TBR=ern...@chromium.org Review URL: https://codereview.chromium.org/414743002 http://code.g

[v8-dev] Revert "Track history of events in GCTracer." (issue 414743002 by machenb...@chromium.org)

2014-07-23 Thread machenbach
Reviewers: ernstm, Message: Committed patchset #1 manually as r22572 (presubmit successful). Description: Revert "Track history of events in GCTracer." This reverts commit 22567 for breaking win64 compile. BUG= TBR=ern...@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=22

[v8-dev] [v8] r22571 committed - [Auto-roll] Bump up version to 3.28.34.0...

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22571 Author: machenb...@chromium.org Date: Wed Jul 23 15:56:57 2014 UTC Log: [Auto-roll] Bump up version to 3.28.34.0 TBR=machenb...@chromium.org Review URL: https://codereview.chromium.org/411003002 http://code.google.com/p/v8/source/detail?r=22571 Modified: /branches/bl

[v8-dev] Re: [Auto-roll] Bump up version to 3.28.34.0 (issue 411003002 by machenb...@chromium.org)

2014-07-23 Thread machenbach
Committed patchset #1 manually as r22571. https://codereview.chromium.org/411003002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this gr

[v8-dev] [Auto-roll] Bump up version to 3.28.34.0 (issue 411003002 by machenb...@chromium.org)

2014-07-23 Thread machenbach
Reviewers: Michael Achenbach, Description: [Auto-roll] Bump up version to 3.28.34.0 TBR=machenb...@chromium.org Please review this at https://codereview.chromium.org/411003002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+1, -1 lines): M src/version.cc I

[v8-dev] [v8] r22570 committed - MIPS: Always use the LoadStubCompiler for Load handlers, also for keye...

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22570 Author: balazs.kilv...@imgtec.com Date: Wed Jul 23 15:53:00 2014 UTC Log: MIPS: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers. Port r22551 (0cc23b1) BUG= R=paul.l...@imgtec.com Review URL: https://codereview.chromium.org/415623002 h

[v8-dev] Re: MIPS: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers. (issue 415623002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread balazs . kilvady
Committed patchset #1 manually as r22570 (tree was closed). https://codereview.chromium.org/415623002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubs

[v8-dev] Move GCTracer to separate files. (issue 416543003 by ern...@chromium.org)

2014-07-23 Thread ernstm
Reviewers: Hannes Payer, Message: PTAL Description: Move GCTracer to separate files. - No functional changes. R=hpa...@chromium.org BUG= Please review this at https://codereview.chromium.org/416543003/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+548, -521

Re: [v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread Toon Verwaest
No sure, go ahead. On Wed, Jul 23, 2014 at 5:34 PM, Erik Arvidsson wrote: > Do you mind if I bundle these up into one CL? (I'll update the description) > > > On Wed, Jul 23, 2014 at 11:10 AM, wrote: > >> lgtm >> >> >> >> https://codereview.chromium.org/410923003/ >> >> >> -- >> -- >> v8-dev ma

[v8-dev] [v8] r22569 committed - Revert "Minor clarifications and simplifications as well as additional...

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22569 Author: n...@chromium.org Date: Wed Jul 23 15:39:08 2014 UTC Log: Revert "Minor clarifications and simplifications as well as additional checks." This reverts commit d32eacbdea3fc0c119da06abe95b07a83c67aa48. TBR=rossb...@chromium.org BUG= Review URL: https://codere

[v8-dev] Re: Revert "Minor clarifications and simplifications as well as additional checks." (issue 410083005 by n...@chromium.org)

2014-07-23 Thread neis
Committed patchset #1 manually as r22569 (presubmit successful). https://codereview.chromium.org/410083005/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Revert "Minor clarifications and simplifications as well as additional checks." (issue 410083005 by n...@chromium.org)

2014-07-23 Thread neis
Reviewers: rossberg, Description: Revert "Minor clarifications and simplifications as well as additional checks." This reverts commit d32eacbdea3fc0c119da06abe95b07a83c67aa48. TBR=rossb...@chromium.org BUG= Please review this at https://codereview.chromium.org/410083005/ SVN Base: https://

Re: [v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread Erik Arvidsson
Do you mind if I bundle these up into one CL? (I'll update the description) On Wed, Jul 23, 2014 at 11:10 AM, wrote: > lgtm > > > > https://codereview.chromium.org/410923003/ > > > -- > -- > v8-dev mailing list > v8-dev@googlegroups.com > http://groups.google.com/group/v8-dev > ---You received

[v8-dev] [v8] r22568 committed - Minor clarifications and simplifications as well as additional checks....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22568 Author: n...@chromium.org Date: Wed Jul 23 15:30:34 2014 UTC Log: Minor clarifications and simplifications as well as additional checks. R=rossb...@chromium.org BUG= Review URL: https://codereview.chromium.org/409743004 http://code.google.com/p/v8/source/detail?r=22

[v8-dev] Re: MIPS: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers. (issue 415623002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread paul . lind
lgtm https://codereview.chromium.org/415623002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] [v8] r22567 committed - Track history of events in GCTracer....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22567 Author: ern...@chromium.org Date: Wed Jul 23 15:16:53 2014 UTC Log: Track history of events in GCTracer. - track incremental marking stats directly on GCTracer. - add simple ring buffer class. - track last 10 scavenges and mark-compacts in ring buffers on GCTracer. - va

[v8-dev] MIPS: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers. (issue 415623002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread balazs . kilvady
Reviewers: danno, Toon Verwaest, paul.l..., gergely.kis.imgtec, akos.palfi.imgtec, dusmil.imgtec, Description: MIPS: Always use the LoadStubCompiler for Load handlers, also for keyedload handlers. Port r22551 (0cc23b1) BUG= Please review this at https://codereview.chromium.org/415623002/ SV

[v8-dev] Re: Track history of events in GCTracer. (issue 391413006 by ern...@chromium.org)

2014-07-23 Thread ernstm
Committed patchset #6 manually as r22567 (presubmit successful). https://codereview.chromium.org/391413006/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Re: Issue 3461 in v8: ArrayLengthGetter uses the wrong object

2014-07-23 Thread codesite-noreply via v8-dev
Comment #2 on issue 3461 by a...@chromium.org: ArrayLengthGetter uses the wrong object http://code.google.com/p/v8/issues/detail?id=3461 And FunctionNameGetter... Probably anything that use This()/GetThisFrom in accessors.cc. -- You received this message because this project is configured

[v8-dev] Re: Issue 3461 in v8: ArrayLengthGetter uses the wrong object

2014-07-23 Thread codesite-noreply via v8-dev
Comment #1 on issue 3461 by a...@chromium.org: ArrayLengthGetter uses the wrong object http://code.google.com/p/v8/issues/detail?id=3461 FunctionLengthGetter has the same problem -- You received this message because this project is configured to send all issue notifications to this address

[v8-dev] Re: MIPS: Only to the relevant checks in LoadFunctionPrototype. (issue 416513002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread balazs . kilvady
Committed patchset #1 manually as r22566 (presubmit successful). https://codereview.chromium.org/416513002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] [v8] r22566 committed - MIPS: Only to the relevant checks in LoadFunctionPrototype....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22566 Author: balazs.kilv...@imgtec.com Date: Wed Jul 23 15:12:40 2014 UTC Log: MIPS: Only to the relevant checks in LoadFunctionPrototype. Port r22550 (c5209a6) BUG= R=paul.l...@imgtec.com Review URL: https://codereview.chromium.org/416513002 http://code.google.com/p/v8/so

Re: [v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread Toon Verwaest
Care about fixing all the other getters as well? Shouldn't be too much work... On Wed, Jul 23, 2014 at 5:10 PM, Toon Verwaest wrote: > Ok, great. Thanks for the report ;) > > > On Wed, Jul 23, 2014 at 4:53 PM, 'Erik Arvidsson' via v8-dev < > v8-dev@googlegroups.com> wrote: > >> > I can't do it

[v8-dev] Re: Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread verwaest
lgtm https://codereview.chromium.org/410923003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Issue 3461 in v8: ArrayLengthGetter uses the wrong object

2014-07-23 Thread codesite-noreply via v8-dev
Status: Accepted Owner: a...@chromium.org CC: verwa...@chromium.org Labels: Type-Bug Priority-Medium New issue 3461 by a...@chromium.org: ArrayLengthGetter uses the wrong object http://code.google.com/p/v8/issues/detail?id=3461 We should get the value off of the holder and not from the receiver.

Re: [v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread Toon Verwaest
Ok, great. Thanks for the report ;) On Wed, Jul 23, 2014 at 4:53 PM, 'Erik Arvidsson' via v8-dev < v8-dev@googlegroups.com> wrote: > > I can't do it yet, since I'm waiting for dom accessors to be turned > into real JS accessors > > Get in line ;-) > > I made the change to ArrayLengthGetter and a

[v8-dev] Re: Track history of events in GCTracer. (issue 391413006 by ern...@chromium.org)

2014-07-23 Thread ernstm
https://codereview.chromium.org/391413006/diff/80001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/391413006/diff/80001/src/heap.cc#newcode6082 src/heap.cc:6082: Max(current_.start_time - previous_.end_time, 0.0); On 2014/07/23 14:35:15, Hannes Payer wrote: Can this line

[v8-dev] Re: Minor clarifications and simplifications. (issue 409743004 by n...@chromium.org)

2014-07-23 Thread rossberg
https://codereview.chromium.org/409743004/diff/1/src/types.h File src/types.h (right): https://codereview.chromium.org/409743004/diff/1/src/types.h#newcode71 src/types.h:71: // UntaggedInt = UntaggedInt8 \/ UntaggedInt16 \/ UntaggedInt32) Should include Int1 now. Also, spurious paren. https:/

[v8-dev] Fix ArrayLengthGetter (issue 410923003 by a...@chromium.org)

2014-07-23 Thread arv
Reviewers: Toon Verwaest, Description: Fix ArrayLengthGetter Get the length from the holder instead of manually walking the prototype chain. BUG=None LOG=N Please review this at https://codereview.chromium.org/410923003/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge Affected

[v8-dev] [v8] r22565 committed - Fix cross-compilation in Makefile....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22565 Author: paul.l...@imgtec.com Date: Wed Jul 23 14:54:12 2014 UTC Log: Fix cross-compilation in Makefile. Fix r22531, I dropped a necessary pair of parens. BUG= R=jkumme...@chromium.org Review URL: https://codereview.chromium.org/410003003 http://code.google.com/p/v8/so

Re: [v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread 'Erik Arvidsson' via v8-dev
> I can't do it yet, since I'm waiting for dom accessors to be turned into real JS accessors Get in line ;-) I made the change to ArrayLengthGetter and all tests still pass. However, the ArrayLengthSetter has some issues and I ran into a new bug (3460). On Wed, Jul 23, 2014 at 10:27 AM, Toon Ve

[v8-dev] Re: Fix cross-compilation in Makefile. (issue 410003003 by paul.l...@imgtec.com)

2014-07-23 Thread paul . lind
Committed patchset #1 manually as r22565 (presubmit successful). https://codereview.chromium.org/410003003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Re: MIPS: Only to the relevant checks in LoadFunctionPrototype. (issue 416513002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread paul . lind
lgtm https://codereview.chromium.org/416513002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Issue 3459 in v8: AstValueFactory bypasses regular string internalization

2014-07-23 Thread codesite-noreply via v8-dev
Status: Assigned Owner: ma...@chromium.org CC: rossb...@chromium.org, sigu...@chromium.org, mstarzin...@chromium.org, yang...@chromium.org Labels: Type-Bug Priority-Medium New issue 3459 by rossb...@chromium.org: AstValueFactory bypasses regular string internalization http://code.google.

[v8-dev] Re: Track history of events in GCTracer. (issue 391413006 by ern...@chromium.org)

2014-07-23 Thread hpayer
LGTM, just nits. https://codereview.chromium.org/391413006/diff/80001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/391413006/diff/80001/src/heap.cc#newcode6082 src/heap.cc:6082: Max(current_.start_time - previous_.end_time, 0.0); Can this line be negative? That's strang

[v8-dev] MIPS: Only to the relevant checks in LoadFunctionPrototype. (issue 416513002 by balazs.kilv...@imgtec.com)

2014-07-23 Thread balazs . kilvady
Reviewers: danno, Toon Verwaest, paul.l..., gergely.kis.imgtec, akos.palfi.imgtec, dusmil.imgtec, Description: MIPS: Only to the relevant checks in LoadFunctionPrototype. Port r22550 (c5209a6) BUG= Please review this at https://codereview.chromium.org/416513002/ SVN Base: https://v8.googlec

Re: [v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread Toon Verwaest
Yeah I think so. I'm actually kinda surprised that the getters are implemented in this way at this point. I'd update all those methods to use the Holder() they get from the info. In GetPropertyWithAccessor you can see that the holder passed to the PropertyCallbackArguments is the holder of the acc

Re: [v8-dev] Intl failures

2014-07-23 Thread Jakob Kummerow
Known problem, people are working on it. On Jul 23, 2014 4:01 PM, "Andy Wingo" wrote: > Hi, > > I am seeing some failures in the intl tests. I have done a fresh clone > and make dependencies. > > One of the failing tests is intl/number-format/parse-percent.js. It > starts off like this: > > v

[v8-dev] Re: Issue 3457 in v8: Serializing code object in ARM64 hits assertion.

2014-07-23 Thread Vincent Belliard
I made once some tries to optimize the constants pool. I had this message when, during serialization, I mixed relocations within the code and relocations within the constants pool. To avoid the problem, during serialization, all the relocations should be in the constant pool. I hope that will he

Re: [v8-dev] Re: Unscopables WIP (issue 384963002 by a...@chromium.org)

2014-07-23 Thread Erik Arvidsson
On Wed, Jul 23, 2014 at 8:08 AM, wrote: > My comment below is based on a short explanation of the problem by > rossberg. Let > me know if some things are still unclear. > > Overall: Please don't work around "bugs" (wasn't really a bug until > unscopable > since it wasn't observable in any way) in

[v8-dev] Re: Fix Handle-related bug in RangeType constructor. (issue 415603002 by n...@chromium.org)

2014-07-23 Thread neis
Committed patchset #1 manually as r22564 (presubmit successful). https://codereview.chromium.org/415603002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] [v8] r22564 committed - Fix Handle-related bug in RangeType constructor....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22564 Author: n...@chromium.org Date: Wed Jul 23 14:11:30 2014 UTC Log: Fix Handle-related bug in RangeType constructor. R=rossb...@chromium.org BUG= Review URL: https://codereview.chromium.org/415603002 http://code.google.com/p/v8/source/detail?r=22564 Modified: /branches

[v8-dev] Re: Fix Handle-related bug in RangeType constructor. (issue 415603002 by n...@chromium.org)

2014-07-23 Thread rossberg
lgtm https://codereview.chromium.org/415603002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Re: Issue 3458 in v8: Object.freeze fails to work in certain cases in version 3.26 and 3.27

2014-07-23 Thread codesite-noreply via v8-dev
Comment #1 on issue 3458 by rono.mu...@gmail.com: Object.freeze fails to work in certain cases in version 3.26 and 3.27 http://code.google.com/p/v8/issues/detail?id=3458 The faulty frozen object allows to 'delete container.field;' (it deletes the field) and then 'Object.isFrozen(test())' re

[v8-dev] Fix Handle-related bug in RangeType constructor. (issue 415603002 by n...@chromium.org)

2014-07-23 Thread neis
Reviewers: rossberg, Description: Fix Handle-related bug in RangeType constructor. R=rossb...@chromium.org BUG= Please review this at https://codereview.chromium.org/415603002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+4, -2 lines): M src/types.h Inde

[v8-dev] Issue 3458 in v8: Object.freeze fails to work in certain cases in version 3.26 and 3.27

2014-07-23 Thread codesite-noreply via v8-dev
Status: New Owner: New issue 3458 by rono.mu...@gmail.com: Object.freeze fails to work in certain cases in version 3.26 and 3.27 http://code.google.com/p/v8/issues/detail?id=3458 Recently, since the release of Chrome 36, we started having an issue with frozen objects not always being f

[v8-dev] Intl failures

2014-07-23 Thread Andy Wingo
Hi, I am seeing some failures in the intl tests. I have done a fresh clone and make dependencies. One of the failing tests is intl/number-format/parse-percent.js. It starts off like this: var nf = new Intl.NumberFormat(['en'], {style: 'percent'}); assertEquals(1.2343, nf.v8Parse('123.43%'

[v8-dev] Re: Issue 3457 in v8: Serializing code object in ARM64 hits assertion.

2014-07-23 Thread codesite-noreply via v8-dev
Comment #1 on issue 3457 by rodolph@gmail.com: Serializing code object in ARM64 hits assertion. http://code.google.com/p/v8/issues/detail?id=3457 It doesn't sounds familiar to me. -- You received this message because this project is configured to send all issue notifications to this ad

[v8-dev] Re: Fix checks to bit flags of PreParserExpression (issue 410873004 by ape...@igalia.com)

2014-07-23 Thread svenpanne
On 2014/07/23 13:36:50, aperez wrote: Agreed, while making the fix I was thinking that it would be nice to use the BitField template from "src/utils.h"... anyway, the idea was to have this fix applied ASAP, so let's leave cleanups for another day. Yes, using BitField would be much better, a

[v8-dev] [v8] r22563 committed - Mark mjsunit/deserialize-reference as PASS, FAIL on arm64....

2014-07-23 Thread codesite-noreply via v8-dev
Revision: 22563 Author: yang...@chromium.org Date: Wed Jul 23 13:40:01 2014 UTC Log: Mark mjsunit/deserialize-reference as PASS, FAIL on arm64. R=svenpa...@chromium.org BUG=v8:3457 LOG=N Review URL: https://codereview.chromium.org/415583002 http://code.google.com/p/v8/source/detail?r=

[v8-dev] Re: Mark mjsunit/deserialize-reference as PASS, FAIL on arm64. (issue 415583002 by yang...@chromium.org)

2014-07-23 Thread yangguo
Committed patchset #1 manually as r22563 (presubmit successful). https://codereview.chromium.org/415583002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To u

[v8-dev] Re: Mark mjsunit/deserialize-reference as PASS, FAIL on arm64. (issue 415583002 by yang...@chromium.org)

2014-07-23 Thread svenpanne
lgtm https://codereview.chromium.org/415583002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from

[v8-dev] Re: Fix checks to bit flags of PreParserExpression (issue 410873004 by ape...@igalia.com)

2014-07-23 Thread aperez
Reviewers: wingo, rossberg, Sven Panne, mstarzinger, Dmitry Lomov (chromium), Message: On 2014/07/23 13:26:06, Sven Panne wrote: LGTM, http://wowhead.com has been resurrected by this patch, I'll land it for you. https://codereview.chromium.org/410873004/diff/1/src/preparser.h File src/prep

[v8-dev] Mark mjsunit/deserialize-reference as PASS, FAIL on arm64. (issue 415583002 by yang...@chromium.org)

2014-07-23 Thread yangguo
Reviewers: Sven Panne, Description: Mark mjsunit/deserialize-reference as PASS, FAIL on arm64. R=svenpa...@chromium.org BUG=v8:3457 LOG=N Please review this at https://codereview.chromium.org/415583002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files (+3, -0 line

[v8-dev] Re: Issue 3456 in v8: Prefix operation parsing broken

2014-07-23 Thread codesite-noreply via v8-dev
Comment #13 on issue 3456 by svenpa...@chromium.org: Prefix operation parsing broken http://code.google.com/p/v8/issues/detail?id=3456 Issue chromium:396432 has been merged into this issue. -- You received this message because this project is configured to send all issue notifications to t

  1   2   3   >