[v8-dev] Re: Deprecate Persistent functions which were marked to be deprecated. (issue 23707009)

2013-09-02 Thread marja
Thanks for review! This is now ready to land. svenpanne, can you land it? https://codereview.chromium.org/23707009/diff/1/test/cctest/test-declarative-accessors.cc File test/cctest/test-declarative-accessors.cc (right):

[v8-dev] Re: Issue 1844 in v8: Missing version macros for preprocessor

2013-09-02 Thread codesite-noreply
Updates: Status: Assigned Owner: bmeu...@chromium.org Labels: Type-FeatureRequest OS-All HW-All Priority-Low Comment #1 on issue 1844 by bmeu...@chromium.org: Missing version macros for preprocessor http://code.google.com/p/v8/issues/detail?id=1844 (No comment was

[v8-dev] Re: Issue 2866 in v8: Possibly incorrect order of evaluation with __defineGetter__

2013-09-02 Thread codesite-noreply
Updates: Status: Accepted Owner: verwa...@chromium.org Comment #2 on issue 2866 by verwa...@chromium.org: Possibly incorrect order of evaluation with __defineGetter__ http://code.google.com/p/v8/issues/detail?id=2866 (No comment was entered for this change.) -- You received

[v8-dev] Re: Issue 2866 in v8: Possibly incorrect order of evaluation with __defineGetter__

2013-09-02 Thread codesite-noreply
Updates: Status: Duplicate Mergedinto: 691 Comment #3 on issue 2866 by verwa...@chromium.org: Possibly incorrect order of evaluation with __defineGetter__ http://code.google.com/p/v8/issues/detail?id=2866 (No comment was entered for this change.) -- You received this message

[v8-dev] Re: Issue 691 in v8: Sequencing of getter side effects wrong

2013-09-02 Thread codesite-noreply
Comment #8 on issue 691 by verwa...@chromium.org: Sequencing of getter side effects wrong http://code.google.com/p/v8/issues/detail?id=691 Issue 2866 has been merged into this issue. -- You received this message because this project is configured to send all issue notifications to this

[v8-dev] Initial prototype of object layout generation. (issue 23604020)

2013-09-02 Thread mstarzinger
Reviewers: , Description: Initial prototype of object layout generation. R= Please review this at https://codereview.chromium.org/23604020/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M Makefile M src/objects-debug.cc A src/objects-gen.h A

[v8-dev] remove Isolate::Current from most files starting with 'a' (issue 23859002)

2013-09-02 Thread dcarney
Reviewers: Sven Panne, Description: remove Isolate::Current from most files starting with 'a' R=svenpa...@chromium.org BUG= Please review this at https://codereview.chromium.org/23859002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/accessors.cc M

[v8-dev] Re: ARM Bug fix: ConstantPoolSizeAt() (issue 23654005)

2013-09-02 Thread bangfu . tao
Reviewers: Benedikt Meurer, Message: On 2013/08/30 07:31:32, Benedikt Meurer wrote: Your patch broke the ARM tests, we had to revert. Please submit a new patch that actually passes the test suite. Sorry about that, we did not realize the bug had been fixed in the latest bleeding edge.

[v8-dev] Re: Initial prototype of object layout generation. (issue 23604020)

2013-09-02 Thread titzer
https://codereview.chromium.org/23604020/diff/1/src/objects.layout File src/objects.layout (right): https://codereview.chromium.org/23604020/diff/1/src/objects.layout#newcode56 src/objects.layout:56: { name: value, comment: the boxed contents. }, I guess a field without a type is just assumed

[v8-dev] Move version macros to public V8 header. (issue 23723003)

2013-09-02 Thread bmeurer
Reviewers: Sven Panne, Jakob, Message: PTAL Description: Move version macros to public V8 header. Move the V8 version macros to the public v8.h file, so it can be used by other projects for testing specific V8 versions at compile time. Adjust tools to work on include/v8.h instead of

[v8-dev] Re: Move version macros to public V8 header. (issue 23723003)

2013-09-02 Thread bmeurer
Hey Sven, Please have a look. CC'd Jakob for sanity checking of build system implications. https://codereview.chromium.org/23723003/ -- -- 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

[v8-dev] Re: Cleanup Semaphore class. (issue 23748003)

2013-09-02 Thread mstarzinger
Latest patch-set is busted. Can you upload it again? https://codereview.chromium.org/23748003/ -- -- 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

[v8-dev] Re: thread isolate in accessors.cc (issue 23824002)

2013-09-02 Thread svenpanne
lgtm https://codereview.chromium.org/23824002/ -- -- 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: Cleanup Semaphore class. (issue 23748003)

2013-09-02 Thread bmeurer
On 2013/09/02 09:04:35, Michael Starzinger wrote: Latest patch-set is busted. Can you upload it again? Done. https://codereview.chromium.org/23748003/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message because you are

[v8-dev] Remove OptimizedCodeEntry *sigh*. (issue 23584004)

2013-09-02 Thread titzer
Reviewers: Toon Verwaest, Description: Remove OptimizedCodeEntry *sigh*. BUG= Please review this at https://codereview.chromium.org/23584004/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M include/v8.h M src/factory.h M src/factory.cc M src/heap.h

[v8-dev] Re: remove Isolate::Current from most files starting with 'a' (issue 23859002)

2013-09-02 Thread svenpanne
LGTM. It's a pity that we have to keep the Isolate field in the AST visitor because of the stack check. Otherwise this should really belong to the subclasses... :-P https://codereview.chromium.org/23859002/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev

[v8-dev] Re: thread isolate in accessors.cc (issue 23824002)

2013-09-02 Thread dcarney
Committed patchset #1 manually as r16462 (presubmit successful). https://codereview.chromium.org/23824002/ -- -- 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

[v8-dev] [v8] r16462 committed - thread isolate in accessors.cc...

2013-09-02 Thread codesite-noreply
Revision: 16462 Author: dcar...@chromium.org Date: Mon Sep 2 09:25:20 2013 UTC Log: thread isolate in accessors.cc R=svenpa...@chromium.org BUG= Review URL: https://codereview.chromium.org/23824002 http://code.google.com/p/v8/source/detail?r=16462 Modified:

[v8-dev] Re: remove Isolate::Current from most files starting with 'a' (issue 23859002)

2013-09-02 Thread dcarney
Committed patchset #1 manually as r16463 (presubmit successful). https://codereview.chromium.org/23859002/ -- -- 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

[v8-dev] [v8] r16463 committed - remove Isolate::Current from most files starting with 'a'...

2013-09-02 Thread codesite-noreply
Revision: 16463 Author: dcar...@chromium.org Date: Mon Sep 2 09:27:27 2013 UTC Log: remove Isolate::Current from most files starting with 'a' R=svenpa...@chromium.org BUG= Review URL: https://codereview.chromium.org/23859002 http://code.google.com/p/v8/source/detail?r=16463

[v8-dev] Re: Move ToI conversions to the MacroAssembler (issue 22290005)

2013-09-02 Thread olivf
Committed patchset #8 manually as r16464 (presubmit successful). https://codereview.chromium.org/22290005/ -- -- 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

[v8-dev] [v8] r16464 committed - Move ToI conversions to the MacroAssembler...

2013-09-02 Thread codesite-noreply
Revision: 16464 Author: ol...@chromium.org Date: Mon Sep 2 09:30:54 2013 UTC Log: Move ToI conversions to the MacroAssembler + Replace DeferredTaggedToINoSSE2 by DoubleToIStub and a fpu version. + Prevent truncating TaggedToI from bailing out. BUG= R=verwa...@chromium.org Review

[v8-dev] Re: Remove OptimizedCodeEntry *sigh*. (issue 23584004)

2013-09-02 Thread verwaest
lgtm https://codereview.chromium.org/23584004/ -- -- 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] thread isolate in PreallocatedStorageAllocationPolicy (issue 23479015)

2013-09-02 Thread dcarney
Reviewers: Sven Panne, Description: thread isolate in PreallocatedStorageAllocationPolicy R=svenpa...@chromium.org BUG= Please review this at https://codereview.chromium.org/23479015/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/allocation-inl.h M

[v8-dev] Re: Remove OptimizedCodeEntry *sigh*. (issue 23584004)

2013-09-02 Thread titzer
Committed patchset #1 manually as r16465 (presubmit successful). https://codereview.chromium.org/23584004/ -- -- 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

[v8-dev] Fix OSR to ignore phis without merge index in loop entry. (issue 23503025)

2013-09-02 Thread mstarzinger
Reviewers: titzer, Description: Fix OSR to ignore phis without merge index in loop entry. This fixes a corner case introduced by escape analysis where phis are introduced in OSR loop entry blocks that don't have a merge index and hence cannot contain OSR values. R=tit...@chromium.org

[v8-dev] Re: thread isolate in PreallocatedStorageAllocationPolicy (issue 23479015)

2013-09-02 Thread svenpanne
LGTM. I'm not totally happy with our template magic for policies, but this has been there before. We'll clean this up later. :-D https://codereview.chromium.org/23479015/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this message

[v8-dev] [v8] r16465 committed - Remove OptimizedCodeEntry *sigh*....

2013-09-02 Thread codesite-noreply
Revision: 16465 Author: tit...@chromium.org Date: Mon Sep 2 10:35:34 2013 UTC Log: Remove OptimizedCodeEntry *sigh*. BUG= R=verwa...@chromium.org Review URL: https://codereview.chromium.org/23584004 http://code.google.com/p/v8/source/detail?r=16465 Modified:

[v8-dev] Prepare push to trunk. Now working on version 3.21.9. (issue 23620015)

2013-09-02 Thread jkummerow
Reviewers: Sven Panne, Description: Prepare push to trunk. Now working on version 3.21.9. R=svenpa...@chromium.org Please review this at https://codereview.chromium.org/23620015/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M ChangeLog M src/version.cc

[v8-dev] Re: Move version macros to public V8 header. (issue 23723003)

2013-09-02 Thread jkummerow
High-level comment: I'm not convinced that we want this change. Given the rate at which the V8 API changes, and the rate at which new branches are created and old branches become unsupported, I'm hesitant to create the appearance that supporting several V8 versions in embedding code is

[v8-dev] Re: Prepare push to trunk. Now working on version 3.21.9. (issue 23620015)

2013-09-02 Thread jkummerow
Committed patchset #1 manually as r16466 (presubmit successful). https://codereview.chromium.org/23620015/ -- -- 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

[v8-dev] [v8] r16466 committed - Prepare push to trunk. Now working on version 3.21.9....

2013-09-02 Thread codesite-noreply
Revision: 16466 Author: jkumme...@chromium.org Date: Mon Sep 2 11:01:06 2013 UTC Log: Prepare push to trunk. Now working on version 3.21.9. R=svenpa...@chromium.org Review URL: https://codereview.chromium.org/23620015 http://code.google.com/p/v8/source/detail?r=16466 Modified:

[v8-dev] Re: Prepare push to trunk. Now working on version 3.21.9. (issue 23620015)

2013-09-02 Thread svenpanne
lgtm https://codereview.chromium.org/23620015/ -- -- 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: Move version macros to public V8 header. (issue 23723003)

2013-09-02 Thread bmeurer
On 2013/09/02 11:00:47, Jakob wrote: High-level comment: I'm not convinced that we want this change. Given the rate at which the V8 API changes, and the rate at which new branches are created and old branches become unsupported, I'm hesitant to create the appearance that supporting several

[v8-dev] Re: Issue 1844 in v8: Missing version macros for preprocessor

2013-09-02 Thread codesite-noreply
Updates: Status: Invalid Comment #2 on issue 1844 by bmeu...@chromium.org: Missing version macros for preprocessor http://code.google.com/p/v8/issues/detail?id=1844 Rejected, see Jakob's comment in https://codereview.chromium.org/23723003/. -- You received this message because this

[v8-dev] thread isolate for files starting with 'c' and 'd' (issue 23729006)

2013-09-02 Thread dcarney
Reviewers: Sven Panne, Description: thread isolate for files starting with 'c' and 'd' R=svenpa...@chromium.org BUG= Please review this at https://codereview.chromium.org/23729006/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/builtins.h M

[v8-dev] Re: thread isolate in PreallocatedStorageAllocationPolicy (issue 23479015)

2013-09-02 Thread dcarney
Committed patchset #2 manually as r16467 (presubmit successful). https://codereview.chromium.org/23479015/ -- -- 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

[v8-dev] [v8] r16467 committed - thread isolate in PreallocatedStorageAllocationPolicy...

2013-09-02 Thread codesite-noreply
Revision: 16467 Author: dcar...@chromium.org Date: Mon Sep 2 11:20:42 2013 UTC Log: thread isolate in PreallocatedStorageAllocationPolicy R=svenpa...@chromium.org BUG= Review URL: https://codereview.chromium.org/23479015 http://code.google.com/p/v8/source/detail?r=16467 Modified:

[v8-dev] Introduce speculative concurrent on-stack replacement. (issue 23710014)

2013-09-02 Thread yangguo
Reviewers: titzer, Description: Introduce speculative concurrent on-stack replacement. Currently disabled behind --speculative-osr. R=tit...@chromium.org BUG= Please review this at https://codereview.chromium.org/23710014/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

[v8-dev] [v8] r16468 committed - revert thread isolate in PreallocatedStorageAllocationPolicy...

2013-09-02 Thread codesite-noreply
Revision: 16468 Author: dcar...@chromium.org Date: Mon Sep 2 11:39:23 2013 UTC Log: revert thread isolate in PreallocatedStorageAllocationPolicy This reverts 16467 for breaking windows build TBR=svenpa...@chromium.org BUG= Review URL: https://codereview.chromium.org/23824005

[v8-dev] revert thread isolate in PreallocatedStorageAllocationPolicy (issue 23824005)

2013-09-02 Thread dcarney
Reviewers: Sven Panne, Message: Committed patchset #1 manually as r16468. Description: revert thread isolate in PreallocatedStorageAllocationPolicy This reverts 16467 for breaking windows build TBR=svenpa...@chromium.org BUG= Committed: https://code.google.com/p/v8/source/detail?r=16468

[v8-dev] Issue 2867 in v8: Infinite optimization/deoptimization cycle from generic property store

2013-09-02 Thread codesite-noreply
Status: New Owner: CC: a...@google.com, verwa...@chromium.org, hpa...@chromium.org Labels: Type-Bug Priority-Medium New issue 2867 by fschnei...@chromium.org: Infinite optimization/deoptimization cycle from generic property store http://code.google.com/p/v8/issues/detail?id=2867 The

[v8-dev] Re: Cleanup Semaphore class. (issue 23748003)

2013-09-02 Thread mstarzinger
LGTM. https://codereview.chromium.org/23748003/diff/24001/test/cctest/test-semaphore.cc File test/cctest/test-semaphore.cc (right): https://codereview.chromium.org/23748003/diff/24001/test/cctest/test-semaphore.cc#newcode28 test/cctest/test-semaphore.cc:28: // Tests of the TokenLock class from

[v8-dev] Representation of interceptor / handler properties are tagged. (issue 23533012)

2013-09-02 Thread verwaest
Reviewers: Jakob, Message: PTAL Description: Representation of interceptor / handler properties are tagged. Otherwise store ICs will never be initialized, due to lookup-CanHoldValue(value); BUG=chromium:256330 Please review this at https://chromiumcodereview.appspot.com/23533012/ SVN Base:

[v8-dev] [v8] r16470 committed - Tagging version 3.21.8

2013-09-02 Thread codesite-noreply
Revision: 16470 Author: jkumme...@chromium.org Date: Mon Sep 2 11:48:34 2013 UTC Log: Tagging version 3.21.8 http://code.google.com/p/v8/source/detail?r=16470 Added: /tags/3.21.8 -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You

[v8-dev] Re: Representation of interceptor / handler properties are tagged. (issue 23533012)

2013-09-02 Thread jkummerow
LGTM. Can we have a testcase (that asserts that a function doesn't deopt when optimized code sees the same types that the IC did)? https://chromiumcodereview.appspot.com/23533012/ -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You received this

[v8-dev] Re: Fix definition of V8_LIBRT_NOT_AVAILABLE in v8.gyp since we test for it using #elif in time.cc. (issue 23718004)

2013-09-02 Thread jkummerow
As discussed offline, this patch doesn't change anything, as defined values default to 1 anyway. It doesn't hurt to keep it in for now, but the next cleanup can take it out again. https://codereview.chromium.org/23718004/ -- -- v8-dev mailing list v8-dev@googlegroups.com

[v8-dev] Re: Cleanup Semaphore class. (issue 23748003)

2013-09-02 Thread bmeurer
https://codereview.chromium.org/23748003/diff/24001/test/cctest/test-semaphore.cc File test/cctest/test-semaphore.cc (right): https://codereview.chromium.org/23748003/diff/24001/test/cctest/test-semaphore.cc#newcode28 test/cctest/test-semaphore.cc:28: // Tests of the TokenLock class from lock.h

[v8-dev] Re: Representation of interceptor / handler properties are tagged. (issue 23533012)

2013-09-02 Thread jkummerow
Thanks! LGTM. https://chromiumcodereview.appspot.com/23533012/ -- -- 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

[v8-dev] [v8] r16471 committed - Representation of interceptor / handler properties are tagged....

2013-09-02 Thread codesite-noreply
Revision: 16471 Author: verwa...@chromium.org Date: Mon Sep 2 12:16:02 2013 UTC Log: Representation of interceptor / handler properties are tagged. Otherwise store ICs will never be initialized, due to lookup-CanHoldValue(value); BUG=chromium:256330 R=jkumme...@chromium.org

[v8-dev] Re: Representation of interceptor / handler properties are tagged. (issue 23533012)

2013-09-02 Thread verwaest
Committed patchset #2 manually as r16471 (presubmit successful). https://chromiumcodereview.appspot.com/23533012/ -- -- 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.

[v8-dev] Re: In reporting step-in positions be more accurate with a position the debugger paused at (issue 23264015)

2013-09-02 Thread prybin
Committed patchset #4 manually as r16472 (presubmit successful). https://codereview.chromium.org/23264015/ -- -- 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

[v8-dev] Re: Cleanup Semaphore class. (issue 23748003)

2013-09-02 Thread bmeurer
Committed patchset #8 manually as r16473 (presubmit successful). https://codereview.chromium.org/23748003/ -- -- 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

[v8-dev] Re: Issue 2867 in v8: Infinite optimization/deoptimization cycle from generic property store

2013-09-02 Thread codesite-noreply
Updates: Status: Accepted Owner: verwa...@chromium.org Comment #1 on issue 2867 by verwa...@chromium.org: Infinite optimization/deoptimization cycle from generic property store http://code.google.com/p/v8/issues/detail?id=2867 (No comment was entered for this change.) -- You

[v8-dev] [v8] r16474 committed - Fix Mac llvm-gcc42 build after commit r16473....

2013-09-02 Thread codesite-noreply
Revision: 16474 Author: bmeu...@chromium.org Date: Mon Sep 2 12:36:08 2013 UTC Log: Fix Mac llvm-gcc42 build after commit r16473. TBR=machenb...@chromium.org Review URL: https://codereview.chromium.org/23437020 http://code.google.com/p/v8/source/detail?r=16474 Modified:

[v8-dev] Fix Mac llvm-gcc42 build after commit r16473. (issue 23437020)

2013-09-02 Thread bmeurer
Reviewers: machenbach, Message: Committed patchset #1 manually as r16474. Description: Fix Mac llvm-gcc42 build after commit r16473. TBR=machenb...@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=16474 Please review this at https://codereview.chromium.org/23437020/ SVN

[v8-dev] Re: thread isolate for files starting with 'c' and 'd' (issue 23729006)

2013-09-02 Thread svenpanne
https://codereview.chromium.org/23729006/diff/1/src/code-stubs.cc File src/code-stubs.cc (right): https://codereview.chromium.org/23729006/diff/1/src/code-stubs.cc#newcode49 src/code-stubs.cc:49: miss_handler_(), Is this change intentional? I can't easily see why it's correct/needed...

[v8-dev] Allow uncacheable identifiers to go generic. (issue 23453019)

2013-09-02 Thread verwaest
Reviewers: Jakob, Message: PTAL Description: Allow uncacheable identifiers to go generic. BUG=v8:2867 Please review this at https://chromiumcodereview.appspot.com/23453019/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/ic.cc M src/objects-inl.h M

[v8-dev] Re: Fix OSR to ignore phis without merge index in loop entry. (issue 23503025)

2013-09-02 Thread mstarzinger
Addressed offline comments. https://codereview.chromium.org/23503025/ -- -- 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

[v8-dev] Re: Issue 2867 in v8: Infinite optimization/deoptimization cycle from generic property store

2013-09-02 Thread codesite-noreply
Updates: Status: Fixed Comment #2 on issue 2867 by verwa...@chromium.org: Infinite optimization/deoptimization cycle from generic property store http://code.google.com/p/v8/issues/detail?id=2867 Will be fixed by https://chromiumcodereview.appspot.com/23453019/ -- You received this

[v8-dev] Re: thread isolate for files starting with 'c' and 'd' (issue 23729006)

2013-09-02 Thread dcarney
https://codereview.chromium.org/23729006/diff/1/src/code-stubs.cc File src/code-stubs.cc (right): https://codereview.chromium.org/23729006/diff/1/src/code-stubs.cc#newcode49 src/code-stubs.cc:49: miss_handler_(), On 2013/09/02 12:40:52, Sven Panne wrote: Is this change intentional? I can't

[v8-dev] Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 (issue 23604023)

2013-09-02 Thread jkummerow
Reviewers: Michael Starzinger, Message: As discussed. PTAL. Description: Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 to allow allocation of large packed arrays in paged spaces. BUG=v8:2790 Please review this at https://codereview.chromium.org/23604023/ SVN Base:

[v8-dev] Re: limit InitialMaxFastElement by MaxRegularSpaceAllocationSize (issue 23622016)

2013-09-02 Thread jkummerow
If I understand correctly, this CL is functionally equivalent to: #if V8_TARGET_ARCH_X64 static const int kInitialMaxFastElementArray = 98297; #else static const int kInitialMaxFastElementArray = 10; #endif Right? While a computed value is arguably cleaner (and more robust towards

[v8-dev] Enable escape analysis for Hydrogen. (issue 23629016)

2013-09-02 Thread mstarzinger
Reviewers: Jakob, Description: Enable escape analysis for Hydrogen. R=jkumme...@chromium.org Please review this at https://codereview.chromium.org/23629016/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/flag-definitions.h Index:

[v8-dev] Re: Enable escape analysis for Hydrogen. (issue 23629016)

2013-09-02 Thread jkummerow
lgtm https://codereview.chromium.org/23629016/ -- -- 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] Fix ChangeLog entry for 3.20.15 (issue 23871002)

2013-09-02 Thread jkummerow
Reviewers: Sven Panne, Message: Please take a thorough look. Do I win the CL of the month award? Description: Fix ChangeLog entry for 3.20.15 BUG=v8:2845 Please review this at https://codereview.chromium.org/23871002/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected

[v8-dev] Re: Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 (issue 23604023)

2013-09-02 Thread mstarzinger
LGTM with comments. https://codereview.chromium.org/23604023/diff/1/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/23604023/diff/1/src/heap.cc#newcode195 src/heap.cc:195: ASSERT(MaxRegularSpaceAllocationSize() = The initial_semispace_size might change at runtime, so this

[v8-dev] remove Isolate::Current from most files starting with 'd' and 'e' (issue 23606012)

2013-09-02 Thread dcarney
Reviewers: Sven Panne, Description: remove Isolate::Current from most files starting with 'd' and 'e' R=svenpa...@chromium.org BUG= Please review this at https://codereview.chromium.org/23606012/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M

[v8-dev] Re: MIPS: Support for DoubleToIStub (truncating). (issue 23694014)

2013-09-02 Thread rmcilroy
https://codereview.chromium.org/23694014/diff/1/src/mips/macro-assembler-mips.cc File src/mips/macro-assembler-mips.cc (right): https://codereview.chromium.org/23694014/diff/1/src/mips/macro-assembler-mips.cc#newcode1588 src/mips/macro-assembler-mips.cc:1588: not_in_int32_range); Any particular

[v8-dev] Re: Allow uncacheable identifiers to go generic. (issue 23453019)

2013-09-02 Thread jkummerow
LGTM with comment. https://chromiumcodereview.appspot.com/23453019/diff/2001/src/objects-inl.h File src/objects-inl.h (right): https://chromiumcodereview.appspot.com/23453019/diff/2001/src/objects-inl.h#newcode2652 src/objects-inl.h:2652: static bool IsIdentifier(UnicodeCache* cache, Name*

[v8-dev] Re: Fix ChangeLog entry for 3.20.15 (issue 23871002)

2013-09-02 Thread bmeurer
LGTM :-) https://codereview.chromium.org/23871002/ -- -- 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: Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 (issue 23604023)

2013-09-02 Thread jkummerow
Thanks for the review, landing. https://codereview.chromium.org/23604023/diff/1/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/23604023/diff/1/src/heap.cc#newcode195 src/heap.cc:195: ASSERT(MaxRegularSpaceAllocationSize() = On 2013/09/02 13:12:43, Michael Starzinger

[v8-dev] Re: Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 (issue 23604023)

2013-09-02 Thread jkummerow
Committed patchset #2 manually as r16475 (presubmit successful). https://codereview.chromium.org/23604023/ -- -- 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

[v8-dev] [v8] r16475 committed - Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5...

2013-09-02 Thread codesite-noreply
Revision: 16475 Author: jkumme...@chromium.org Date: Mon Sep 2 13:36:49 2013 UTC Log: Bump MaxRegularSpaceAllocationSize to InitialSemiSpaceSize() * 4/5 to allow allocation of large packed arrays in paged spaces. BUG=v8:2790 R=mstarzin...@chromium.org Review URL:

[v8-dev] Re: Fix ChangeLog entry for 3.20.15 (issue 23871002)

2013-09-02 Thread jkummerow
Committed patchset #1 manually as r16476 (presubmit successful). https://codereview.chromium.org/23871002/ -- -- 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

[v8-dev] [v8] r16476 committed - Fix ChangeLog entry for 3.20.15...

2013-09-02 Thread codesite-noreply
Revision: 16476 Author: jkumme...@chromium.org Date: Mon Sep 2 13:42:20 2013 UTC Log: Fix ChangeLog entry for 3.20.15 BUG=v8:2845 R=bmeu...@chromium.org Review URL: https://codereview.chromium.org/23871002 http://code.google.com/p/v8/source/detail?r=16476 Modified:

[v8-dev] Re: Issue 2845 in v8: ChangeLog entry missing for v3.20.15

2013-09-02 Thread codesite-noreply
Updates: Status: Fixed Owner: jkumme...@chromium.org Comment #1 on issue 2845 by jkumme...@chromium.org: ChangeLog entry missing for v3.20.15 http://code.google.com/p/v8/issues/detail?id=2845 Fixed in r16476. No regression test, though. -- You received this message because

[v8-dev] Re: remove Isolate::Current from most files starting with 'd' and 'e' (issue 23606012)

2013-09-02 Thread svenpanne
LGTM with a nit. https://codereview.chromium.org/23606012/diff/1/src/execution.cc File src/execution.cc (right): https://codereview.chromium.org/23606012/diff/1/src/execution.cc#newcode159 src/execution.cc:159: Isolate* isolate = Isolate::Current(); I think all callers have the Isolate

[v8-dev] Re: thread isolate for files starting with 'b' and 'c' (issue 23729006)

2013-09-02 Thread svenpanne
lgtm https://codereview.chromium.org/23729006/ -- -- 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] Merged r16324 into 3.20 branch. (issue 23506017)

2013-09-02 Thread jkummerow
Reviewers: Michael Starzinger, Description: Merged r16324 into 3.20 branch. Lower kInitialMaxFastElementArray constant to 95K BUG=v8:2790 R=mstarzin...@chromium.org Please review this at https://codereview.chromium.org/23506017/ SVN Base: https://v8.googlecode.com/svn/branches/3.20 Affected

[v8-dev] Import ConditionVariable class. (issue 23548007)

2013-09-02 Thread bmeurer
Reviewers: Michael Starzinger, Message: New ConditionVariable class, PTAL. Description: Import ConditionVariable class. Condition variables are synchronization primitives that can be used to block one or more threads while waiting for condition to become true. Right now we have only

[v8-dev] Re: Merged r16324 into 3.20 branch. (issue 23506017)

2013-09-02 Thread mstarzinger
LGTM. https://codereview.chromium.org/23506017/ -- -- 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] [v8] r16477 committed - Merged r16324 into 3.20 branch....

2013-09-02 Thread codesite-noreply
Revision: 16477 Author: jkumme...@chromium.org Date: Mon Sep 2 14:34:05 2013 UTC Log: Merged r16324 into 3.20 branch. Lower kInitialMaxFastElementArray constant to 95K BUG=v8:2790 R=mstarzin...@chromium.org Review URL: https://codereview.chromium.org/23506017

[v8-dev] Re: Merged r16324 into 3.20 branch. (issue 23506017)

2013-09-02 Thread jkummerow
Committed patchset #1 manually as r16477 (presubmit successful). https://codereview.chromium.org/23506017/ -- -- 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

[v8-dev] Merged r16324 into 3.19 branch. (issue 23821003)

2013-09-02 Thread jkummerow
Reviewers: Michael Starzinger, Description: Merged r16324 into 3.19 branch. Lower kInitialMaxFastElementArray constant to 95K BUG=v8:2790 R=mstarzin...@chromium.org Please review this at https://codereview.chromium.org/23821003/ SVN Base: https://v8.googlecode.com/svn/branches/3.19 Affected

[v8-dev] [v8] r16478 committed - Tagging version 3.20.17.5

2013-09-02 Thread codesite-noreply
Revision: 16478 Author: jkumme...@chromium.org Date: Mon Sep 2 14:34:28 2013 UTC Log: Tagging version 3.20.17.5 http://code.google.com/p/v8/source/detail?r=16478 Added: /tags/3.20.17.5 -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev --- You

[v8-dev] Re: Merged r16324 into 3.19 branch. (issue 23821003)

2013-09-02 Thread mstarzinger
LGTM (rubber-stamped). https://codereview.chromium.org/23821003/ -- -- 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

[v8-dev] [v8] r16479 committed - Merged r16324 into 3.19 branch....

2013-09-02 Thread codesite-noreply
Revision: 16479 Author: jkumme...@chromium.org Date: Mon Sep 2 14:36:37 2013 UTC Log: Merged r16324 into 3.19 branch. Lower kInitialMaxFastElementArray constant to 95K BUG=v8:2790 R=mstarzin...@chromium.org Review URL: https://codereview.chromium.org/23821003

[v8-dev] Re: Merged r16324 into 3.19 branch. (issue 23821003)

2013-09-02 Thread jkummerow
Committed patchset #1 manually as r16479 (presubmit successful). https://codereview.chromium.org/23821003/ -- -- 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

[v8-dev] [v8] r16480 committed - Tagging version 3.19.18.22

2013-09-02 Thread codesite-noreply
Revision: 16480 Author: jkumme...@chromium.org Date: Mon Sep 2 14:36:59 2013 UTC Log: Tagging version 3.19.18.22 http://code.google.com/p/v8/source/detail?r=16480 Added: /tags/3.19.18.22 -- -- v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev ---

[v8-dev] Propagate bailout and dont_optimize reasons to cpu-profiler (issue 23817003)

2013-09-02 Thread yurys
https://codereview.chromium.org/23817003/diff/1/include/v8-profiler.h File include/v8-profiler.h (right): https://codereview.chromium.org/23817003/diff/1/include/v8-profiler.h#newcode63 include/v8-profiler.h:63: HandleString GetBailoutReason() const; Can we start returning const char* instead

[v8-dev] Re: Issue 2744 in v8: Meta-Bug: TSAN finds many data races in V8

2013-09-02 Thread codesite-noreply
Comment #7 on issue 2744 by mstarzin...@chromium.org: Meta-Bug: TSAN finds many data races in V8 http://code.google.com/p/v8/issues/detail?id=2744 As far as I know we fixed three issues found through these warnings so far. A huge bulk of the warnings (i.e. all in v8.cc, v8.h and

[v8-dev] Move global V8::UseCrankshaft() into the Isolate. (issue 23441029)

2013-09-02 Thread mstarzinger
Reviewers: Jakob, Description: Move global V8::UseCrankshaft() into the Isolate. R=jkumme...@chromium.org BUG=v8:2744 Please review this at https://codereview.chromium.org/23441029/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/compiler.h M

[v8-dev] Re: remove Isolate::Current from most files starting with 'd' and 'e' (issue 23606012)

2013-09-02 Thread dcarney
https://codereview.chromium.org/23606012/diff/1/src/execution.cc File src/execution.cc (right): https://codereview.chromium.org/23606012/diff/1/src/execution.cc#newcode159 src/execution.cc:159: Isolate* isolate = Isolate::Current(); On 2013/09/02 14:23:45, Sven Panne wrote: I think all callers

[v8-dev] Add premonomorphic store ICs. This also fixes wrongly inlined accessors due to monomorphic store IC… (issue 23442016)

2013-09-02 Thread verwaest
Reviewers: Jakob, Message: PTAL Description: Add premonomorphic store ICs. This also fixes wrongly inlined accessors due to monomorphic store ICs with interceptors. BUG= Please review this at https://chromiumcodereview.appspot.com/23442016/ SVN Base:

[v8-dev] Re: Propagate bailout and dont_optimize reasons to cpu-profiler (issue 23817003)

2013-09-02 Thread loislo
Reviewers: Yury Semikhatsky, Message: comments addressed https://codereview.chromium.org/23817003/diff/1/include/v8-profiler.h File include/v8-profiler.h (right): https://codereview.chromium.org/23817003/diff/1/include/v8-profiler.h#newcode63 include/v8-profiler.h:63: HandleString

[v8-dev] Re: Allow uncacheable identifiers to go generic. (issue 23453019)

2013-09-02 Thread verwaest
Addressed comment https://chromiumcodereview.appspot.com/23453019/ -- -- 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

[v8-dev] Re: Propagate bailout and dont_optimize reasons to cpu-profiler (issue 23817003)

2013-09-02 Thread loislo
https://codereview.chromium.org/23817003/ -- -- 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, send

[v8-dev] [v8] r16481 committed - Allow uncacheable identifiers to go generic....

2013-09-02 Thread codesite-noreply
Revision: 16481 Author: verwa...@chromium.org Date: Mon Sep 2 16:32:11 2013 UTC Log: Allow uncacheable identifiers to go generic. BUG=v8:2867 R=jkumme...@chromium.org Review URL: https://chromiumcodereview.appspot.com/23453019 http://code.google.com/p/v8/source/detail?r=16481

[v8-dev] Remove obsolete global V8::IsRunning() predicate. (issue 23597013)

2013-09-02 Thread mstarzinger
Reviewers: Yang, Description: Remove obsolete global V8::IsRunning() predicate. R=yang...@chromium.org BUG=v8:2744 Please review this at https://codereview.chromium.org/23597013/ SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge Affected files: M src/bootstrapper.cc M

  1   2   >