[v8-dev] Re: Third try to mark test expectation.

2009-03-10 Thread ager
LGTM http://codereview.chromium.org/40322 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Simplify the map collection regression test. This test is the minimal...

2009-03-10 Thread ager
Reviewers: Kasper Lund, William Hesse, Message: Bill, feel free to add back another test case for this if this is not sufficient. The old test case took far too long to run. Description: Simplify the map collection regression test. This test is the minimal example that would trigger the bug.

[v8-dev] Re: Simplify the map collection regression test. This test is the minimal...

2009-03-10 Thread kasperl
LGTM. http://codereview.chromium.org/43004 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Implemented invalid UTF8 detection in decodeURI.

2009-03-10 Thread lrn
LGTM. http://codereview.chromium.org/40300/diff/1/2 File src/regexp-delay.js (right): http://codereview.chromium.org/40300/diff/1/2#newcode304 Line 304: Was the comment wrong, or has Firefox changed to 1? http://codereview.chromium.org/40300/diff/1/3 File src/uri.js (right): http://codereview

[v8-dev] [v8 commit] r1467 - branches/bleeding_edge/test/mjsunit/regress

2009-03-10 Thread codesite-noreply
Author: a...@chromium.org Date: Tue Mar 10 00:23:22 2009 New Revision: 1467 Modified: branches/bleeding_edge/test/mjsunit/regress/regress-1493017.js Log: Simplify the map collection regression test. This test is the minimal example that would trigger the bug. Review URL: http://codereview.c

[v8-dev] Issue 267 in v8: Indirect eval fails in eval-tainted scope.

2009-03-10 Thread codesite-noreply
Status: Accepted Owner: l...@chromium.org Labels: Type-Bug Priority-Medium New issue 267 by l...@chromium.org: Indirect eval fails in eval-tainted scope. http://code.google.com/p/v8/issues/detail?id=267 The script var foo = "outer"; (function(fn){var foo="inner"; return [fn("foo")];})(eval

[v8-dev] Re: Implemented invalid UTF8 detection in decodeURI.

2009-03-10 Thread christian . plesner . hansen
http://codereview.chromium.org/40300/diff/1/2 File src/regexp-delay.js (right): http://codereview.chromium.org/40300/diff/1/2#newcode304 Line 304: The comment was wrong in the sense that the spec does say something about the length of exec and test. I don't anticipate any compatibility issues.

[v8-dev] Re: Added unique id to all scripts

2009-03-10 Thread ager
LGTM http://codereview.chromium.org/40317/diff/1/14 File src/debug-delay.js (right): http://codereview.chromium.org/40317/diff/1/14#newcode1019 Line 1019: }; Is indentation off by one here? http://codereview.chromium.org/40317 --~--~-~--~~~---~--~~ v8-dev maili

[v8-dev] Re: Added unique id to all scripts

2009-03-10 Thread sgjesse
http://codereview.chromium.org/40317/diff/1/14 File src/debug-delay.js (right): http://codereview.chromium.org/40317/diff/1/14#newcode1019 Line 1019: }; On 2009/03/10 07:53:14, Mads Ager wrote: > Is indentation off by one here? Done. http://codereview.chromium.org/40317 --~--~-~--~---

[v8-dev] [v8 commit] r1468 - in branches/bleeding_edge: include src test/cctest test/mjsunit

2009-03-10 Thread codesite-noreply
Author: sgje...@chromium.org Date: Tue Mar 10 01:10:50 2009 New Revision: 1468 Modified: branches/bleeding_edge/include/v8.h branches/bleeding_edge/src/accessors.cc branches/bleeding_edge/src/accessors.h branches/bleeding_edge/src/api.cc branches/bleeding_edge/src/bootstrapper

[v8-dev] Re: Allow hidden properties and implement GetIdentityHash

2009-03-10 Thread ager
Overall, this looks good. I agree with Kasper on the timing. We need to get the new compiler pushed to trunk before landing this in bleeding_edge. Once we land this in bleeding_edge, we need to make sure that the real hiding of the property happens fairly quickly so we are not blocked from push

[v8-dev] Re: Optimizing generation of nested literals for both object and array literals.

2009-03-10 Thread olehougaard
It dawned on me that I needed to make the change for ARM as well, so please take another look. Specific comments addressed below. http://codereview.chromium.org/40295/diff/1/3 File src/ast.h (right): http://codereview.chromium.org/40295/diff/1/3#newcode667 Line 667: CONSTANT, // Pro

[v8-dev] Fix probably harmless thinko in StringCharAt (causes...

2009-03-10 Thread erik . corry
Reviewers: Lasse Reichstein, Description: Fix probably harmless thinko in StringCharAt (causes slow-case code to be run). Please review this at http://codereview.chromium.org/43005 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/string.js Index: sr

[v8-dev] Re: Optimizing generation of nested literals for both object and array literals.

2009-03-10 Thread kasperl
LGTM. http://codereview.chromium.org/40295 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Fix probably harmless thinko in StringCharAt (causes...

2009-03-10 Thread lrn
LGTM, if this is what you want. http://codereview.chromium.org/43005/diff/1/2 File src/string.js (right): http://codereview.chromium.org/43005/diff/1/2#newcode65 Line 65: var subject = ToString(this); This changes the behavior on non-string receivers to potentially use the fast case, but at the

[v8-dev] Issue 268 in v8: Valgrind reports leaks in code generator

2009-03-10 Thread codesite-noreply
Status: Accepted Owner: Labels: Type-Bug Priority-High New issue 268 by christian.plesner.hansen: Valgrind reports leaks in code generator http://code.google.com/p/v8/issues/detail?id=268 Running valgrind --leak-check=full --smc-check=all ./shell_g ../test/mjsunit/{mjsunit,bugs/bug-90

[v8-dev] Re: Fix probably harmless thinko in StringCharAt (causes...

2009-03-10 Thread lrn
http://codereview.chromium.org/43005/diff/1/2 File src/string.js (right): http://codereview.chromium.org/43005/diff/1/2#newcode65 Line 65: var subject = ToString(this); My bad. The real problem was ofcourse that subject was used before it was initialized. http://codereview.chromium.org/43005 -

[v8-dev] Re: Fix probably harmless thinko in StringCharAt (causes...

2009-03-10 Thread erik . corry
http://codereview.chromium.org/43005 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Fixed whitespace.

2009-03-10 Thread olehougaard
Reviewers: Christian Plesner Hansen, Description: Fixed whitespace. Please review this at http://codereview.chromium.org/43006 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/parser.h Index: src/parser.h

[v8-dev] Re: Fixed whitespace.

2009-03-10 Thread christian . plesner . hansen
Lgtm http://codereview.chromium.org/43006 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Issue 244 in v8: Uri encode/decode don't handle malformed sequences correctly

2009-03-10 Thread codesite-noreply
Updates: Status: Fixed Comment #1 on issue 244 by christian.plesner.hansen: Uri encode/decode don't handle malformed sequences correctly http://code.google.com/p/v8/issues/detail?id=244 (No comment was entered for this change.) -- You received this message because you are listed in th

[v8-dev] Issue 268 in v8: Valgrind reports leaks in code generator

2009-03-10 Thread codesite-noreply
Updates: Owner: kmilli...@chromium.org Comment #1 on issue 268 by kmilli...@chromium.org: Valgrind reports leaks in code generator http://code.google.com/p/v8/issues/detail?id=268 (No comment was entered for this change.) -- You received this message because you are listed in the owne

[v8-dev] Re: Add constant folding and optimization for constant smi operands to...

2009-03-10 Thread whesse
This changelist has moved from experimental compiler branch to bleeding-edge, with a new issue number, http://codereview.chromium.org/42006. http://codereview.chromium.org/21538 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google

[v8-dev] [v8 commit] r1471 - in branches/bleeding_edge: src test/mjsunit/regress

2009-03-10 Thread codesite-noreply
Author: christian.plesner.han...@gmail.com Date: Tue Mar 10 02:08:05 2009 New Revision: 1471 Added: branches/bleeding_edge/test/mjsunit/regress/regress-244.js Modified: branches/bleeding_edge/src/regexp-delay.js branches/bleeding_edge/src/uri.js Log: Implemented invalid UTF8 detectio

[v8-dev] Optimize binary operations in which one or both operands is a constant smi.

2009-03-10 Thread whesse
Reviewers: Kevin Millikin, iposva, Message: This changelist is a continuation of changelist http://codereview.chromium.org/21538, which is moved from the experimental compiler branch to bleeding-edge to make this new issue. This change has been reviewed extensively under the old number, and pass

[v8-dev] [v8 commit] r1472 - branches/bleeding_edge/src

2009-03-10 Thread codesite-noreply
Author: olehougaard Date: Tue Mar 10 02:30:10 2009 New Revision: 1472 Modified: branches/bleeding_edge/src/parser.h Log: Fixed whitespace. Review URL: http://codereview.chromium.org/43006 Modified: branches/bleeding_edge/src/parser.h =

[v8-dev] [v8 commit] r1469 - in branches/bleeding_edge: src test/mjsunit

2009-03-10 Thread codesite-noreply
Author: olehougaard Date: Tue Mar 10 01:59:00 2009 New Revision: 1469 Modified: branches/bleeding_edge/src/ast.cc branches/bleeding_edge/src/ast.h branches/bleeding_edge/src/codegen-arm.cc branches/bleeding_edge/src/codegen-ia32.cc branches/bleeding_edge/src/heap.h branche

[v8-dev] [v8 commit] r1470 - branches/bleeding_edge/src

2009-03-10 Thread codesite-noreply
Author: erik.co...@gmail.com Date: Tue Mar 10 02:00:04 2009 New Revision: 1470 Modified: branches/bleeding_edge/src/string.js Log: Fix probably harmless thinko in StringCharAt (causes slow-case code to be run). Review URL: http://codereview.chromium.org/43005 Modified: branches/bleeding_edg

[v8-dev] Re: Optimize binary operations in which one or both operands is a constant smi.

2009-03-10 Thread kmillikin
Looks good. A few comments. http://codereview.chromium.org/42006/diff/1/3 File src/codegen-ia32.cc (right): http://codereview.chromium.org/42006/diff/1/3#newcode686 Line 686: // should be inlined, placed in the stub, or omitted entirely. To parallel the order of the enum, "should be placed in

[v8-dev] Make unique id to all scripts work with snapshot

2009-03-10 Thread sgjesse
Reviewers: Mads Ager, Message: Should I remove Factory::NewNumberFromUint as well? It is not used anymore. Description: Moved the storage of the last script id into the heap to make it part of the serialized data when starting V8 on a snapshot. Currently the script ids wrap when positive smi va

[v8-dev] Fixed a few more incompatibilities

2009-03-10 Thread christian . plesner . hansen
Reviewers: Lasse Reichstein, Description: Made the Error prototype into an error. Allow \c at the end of regexps. Throw a type error when calling regexp methods on non-regexps. Please review this at http://codereview.chromium.org/42007 Affected files: M src/messages.js M src/parser.cc

[v8-dev] Re: Make unique id to all scripts work with snapshot

2009-03-10 Thread ager
LGTM Yes, please remove the dead code as well. http://codereview.chromium.org/43008 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Fixed a few more incompatibilities

2009-03-10 Thread lrn
LGTM http://codereview.chromium.org/42007 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] [v8 commit] r1473 - in branches/bleeding_edge: src test/cctest

2009-03-10 Thread codesite-noreply
Author: christian.plesner.han...@gmail.com Date: Tue Mar 10 04:32:19 2009 New Revision: 1473 Modified: branches/bleeding_edge/src/messages.js branches/bleeding_edge/src/parser.cc branches/bleeding_edge/src/regexp-delay.js branches/bleeding_edge/test/cctest/test-regexp.cc Log: Mad

[v8-dev] 买便宜五金

2009-03-10 Thread 复活节法
买便宜五金请到《青远五金网 》 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Introduce a BreakTarget subclass of JumpTarget used to represent the...

2009-03-10 Thread kmillikin
Reviewers: Kasper Lund, Message: Part I. Description: Introduce a BreakTarget subclass of JumpTarget used to represent the blocks labeled by "break", "continue", and "return". BreakTargets are the only jump targets that appear in the AST, the only ones that can be uninitialized, and the only on

[v8-dev] Fix issue 269: Functions now called with global object as receiver.

2009-03-10 Thread lrn
Reviewers: Mads Ager, Message: Codereview, please. Description: Issue 269: Calls to arguments in eval-tainted function scope uses global object as receiver. Please review this at http://codereview.chromium.org/42009 Affected files: M src/ast.h M src/codegen-arm.cc M src/codegen-ia32.c

[v8-dev] [v8 commit] r1474 - in branches/bleeding_edge: src test/mjsunit

2009-03-10 Thread codesite-noreply
Author: sgje...@chromium.org Date: Tue Mar 10 05:05:20 2009 New Revision: 1474 Modified: branches/bleeding_edge/src/factory.cc branches/bleeding_edge/src/heap-inl.h branches/bleeding_edge/src/heap.cc branches/bleeding_edge/src/heap.h branches/bleeding_edge/test/mjsunit/debug-s

[v8-dev] Re: Introduce a BreakTarget subclass of JumpTarget used to represent the...

2009-03-10 Thread kasperl
LGTM. http://codereview.chromium.org/42008 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Fix issue 267: Functions now called with global object as receiver.

2009-03-10 Thread ager
LGTM http://codereview.chromium.org/42009 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Fix issue 267: Functions now called with global object as receiver.

2009-03-10 Thread kmillikin
http://codereview.chromium.org/42009/diff/10/13 File src/codegen-ia32.cc (right): http://codereview.chromium.org/42009/diff/10/13#newcode3920 Line 3920: frame_->SpillAll(); I know it's not your code, but you could try getting rid of the SpillAll here and changing the EmitPush to PushElementAt, j

[v8-dev] Re: Fix issue 267: Functions now called with global object as receiver.

2009-03-10 Thread lrn
http://codereview.chromium.org/42009/diff/10/13 File src/codegen-ia32.cc (right): http://codereview.chromium.org/42009/diff/10/13#newcode3920 Line 3920: frame_->SpillAll(); Done. http://codereview.chromium.org/42009 --~--~-~--~~~---~--~~ v8-dev mailing list v8-d

[v8-dev] [v8 commit] r1475 - branches/bleeding_edge/src

2009-03-10 Thread codesite-noreply
Author: kmilli...@chromium.org Date: Tue Mar 10 05:11:56 2009 New Revision: 1475 Modified: branches/bleeding_edge/src/ast.cc branches/bleeding_edge/src/ast.h branches/bleeding_edge/src/codegen-arm.cc branches/bleeding_edge/src/codegen-arm.h branches/bleeding_edge/src/codegen-i

[v8-dev] Issue 267 in v8: Indirect eval fails in eval-tainted scope.

2009-03-10 Thread codesite-noreply
Updates: Status: Fixed Comment #1 on issue 267 by l...@chromium.org: Indirect eval fails in eval-tainted scope. http://code.google.com/p/v8/issues/detail?id=267 Fixed on bleeding edge in release 1476. -- You received this message because you are listed in the owner or CC fields of thi

[v8-dev] Remove spaces to satisfy linter

2009-03-10 Thread sgjesse
Reviewers: Mads Ager, Description: Remove spaces to satisfy linter tbr=a...@chromium.org Please review this at http://codereview.chromium.org/43012 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/factory.cc Index: src/factory.cc ==

[v8-dev] [v8 commit] r1476 - in branches/bleeding_edge: src test/mjsunit/regress

2009-03-10 Thread codesite-noreply
Author: l...@chromium.org Date: Tue Mar 10 05:28:34 2009 New Revision: 1476 Added: branches/bleeding_edge/test/mjsunit/regress/regress-267.js Modified: branches/bleeding_edge/src/ast.h branches/bleeding_edge/src/codegen-arm.cc branches/bleeding_edge/src/codegen-ia32.cc branche

[v8-dev] [v8 commit] r1477 - branches/bleeding_edge/src

2009-03-10 Thread codesite-noreply
Author: sgje...@chromium.org Date: Tue Mar 10 05:41:11 2009 New Revision: 1477 Modified: branches/bleeding_edge/src/factory.cc Log: Remove spaces to satisfy linter tbr=a...@chromium.org Review URL: http://codereview.chromium.org/43012 Modified: branches/bleeding_edge/src/factory.cc ===

[v8-dev] Re: Remove spaces to satisfy linter

2009-03-10 Thread Mads Sig Ager
OK On Tue, Mar 10, 2009 at 1:40 PM, wrote: > Reviewers: Mads Ager, > > Description: > Remove spaces to satisfy linter > > tbr=a...@chromium.org > > Please review this at http://codereview.chromium.org/43012 > > SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ > > Affected files: >

[v8-dev] Tweaked semantics of error prototype.

2009-03-10 Thread christian . plesner . hansen
Reviewers: Lasse Reichstein, Description: Tweaked semantics of error prototype. Please review this at http://codereview.chromium.org/43015 Affected files: M src/messages.js A test/mjsunit/error-constructors.js Index: src/messages.js diff --git a/src/messages.js b/src/messages.js index

[v8-dev] Re: Tweaked semantics of error prototype.

2009-03-10 Thread lrn
LGTM http://codereview.chromium.org/43015 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] [v8 commit] r1478 - in branches/bleeding_edge: src test/mjsunit

2009-03-10 Thread codesite-noreply
Author: christian.plesner.han...@gmail.com Date: Tue Mar 10 06:15:24 2009 New Revision: 1478 Added: branches/bleeding_edge/test/mjsunit/error-constructors.js Modified: branches/bleeding_edge/src/messages.js Log: Tweaked semantics of error prototype. Modified: branches/bleeding_edge/src

[v8-dev] [v8 commit] r1479 - branches/bleeding_edge/test/mjsunit

2009-03-10 Thread codesite-noreply
Author: kmilli...@chromium.org Date: Tue Mar 10 06:23:43 2009 New Revision: 1479 Modified: branches/bleeding_edge/test/mjsunit/mjsunit.status Log: Change expectation for the bug-265 test to allow crashing in release builds. Modified: branches/bleeding_edge/test/mjsunit/mjsunit.status =

[v8-dev] [v8 commit] r1480 - branches/bleeding_edge/test/mjsunit

2009-03-10 Thread codesite-noreply
Author: kasp...@chromium.org Date: Tue Mar 10 06:35:28 2009 New Revision: 1480 Modified: branches/bleeding_edge/test/mjsunit/mjsunit.status Log: Fix typo. Modified: branches/bleeding_edge/test/mjsunit/mjsunit.status ===

[v8-dev] Re: Optimize binary operations in which one or both operands is a constant smi.

2009-03-10 Thread iposva
LGTM when Kevin's comments are addressed plus some more comments. Also what is the impact on compilation time and benchmark scores on top of the code bloat question in the comments? Thanks, -Ivan http://codereview.chromium.org/42006/diff/1/3 File src/codegen-ia32.cc (right): http://coderevi

[v8-dev] Move InitLineEnds and GetLineNumber to handles.cc to avoid...

2009-03-10 Thread kasperl
Reviewers: Mikhail Naganov, Erik Corry, Mads Ager, Description: Move InitLineEnds and GetLineNumber to handles.cc to avoid issues with a raw this pointer and GC. Fix issue with FlattenString where we may keep a StringShape alive across a GC. Please review this at http://codereview.chromium.org/

[v8-dev] Issue 268 in v8: Valgrind reports leaks in code generator

2009-03-10 Thread codesite-noreply
Comment #2 on issue 268 by kasp...@chromium.org: Valgrind reports leaks in code generator http://code.google.com/p/v8/issues/detail?id=268 This is probably because all the JumpTargets embedded in AST nodes never gets their deconstructor called (because they are ZoneObjects). -- You received

[v8-dev] Re: Move InitLineEnds and GetLineNumber to handles.cc to avoid...

2009-03-10 Thread mikhail . naganov
LGTM http://codereview.chromium.org/43020 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Issue 269 in v8: Debugger crashes when stepping into apply()

2009-03-10 Thread codesite-noreply
Status: Accepted Owner: sgje...@chromium.org Labels: Type-Bug Priority-High New issue 269 by sgje...@chromium.org: Debugger crashes when stepping into apply() http://code.google.com/p/v8/issues/detail?id=269 Running the following code with active debugger (e.g. in D8 or Chrome with debugger op

[v8-dev] [v8 commit] r1481 - in branches/bleeding_edge: src test/cctest

2009-03-10 Thread codesite-noreply
Author: kasp...@chromium.org Date: Tue Mar 10 08:08:45 2009 New Revision: 1481 Modified: branches/bleeding_edge/src/accessors.cc branches/bleeding_edge/src/compiler.cc branches/bleeding_edge/src/handles.cc branches/bleeding_edge/src/handles.h branches/bleeding_edge/src/objects

[v8-dev] Add a test case for bug 269

2009-03-10 Thread sgjesse
Reviewers: Mads Ager, Description: See http://code.google.com/p/v8/issues/detail?id=269. BUG=269 Please review this at http://codereview.chromium.org/43023 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: A test/mjsunit/bugs/bug-269.js M test/mjsuni

[v8-dev] - Added ability to call histograms from within v8...

2009-03-10 Thread davemoore
Reviewers: iposva, Message: My last changeset got messed up on my drive (bad svn entries file). So I've made the changes suggested in http://codereview.chromium.org/39256/show and created a new one. Description: - Added ability to call histograms from within v8 - Changed the StatsRates to use th

[v8-dev] Re: Move InitLineEnds and GetLineNumber to handles.cc to avoid...

2009-03-10 Thread ager
LGTM http://codereview.chromium.org/43020/diff/1/3 File src/handles.cc (right): http://codereview.chromium.org/43020/diff/1/3#newcode189 Line 189: CALL_HEAP_FUNCTION_VOID(string->TryFlattenIfNotFlat(StringShape(*string))); I think this change makes the code much clearer (and I think we should g

[v8-dev] Re: Add a test case for bug 269

2009-03-10 Thread ager
LGTM http://codereview.chromium.org/43023/diff/1/3 File test/mjsunit/mjsunit.status (right): http://codereview.chromium.org/43023/diff/1/3#newcode42 Line 42: bugs/bug-269: CRASH, FAIL if $mode == debug Do you need this line? All tests in the bugs directory are expected to fail. Maybe they are

[v8-dev] Re: - Added ability to call histograms from within v8...

2009-03-10 Thread iposva
Many comments about comments, but otherwise LGTM. -Ivan http://codereview.chromium.org/42020/diff/1/2 File include/v8.h (right): http://codereview.chromium.org/42020/diff/1/2#newcode1916 Line 1916: static void SetAddHistogramSampleFunction(AddHistogramSampleCallback); Please add comments doc

[v8-dev] Fix issue 265 by handling extra statement state on the frame based on...

2009-03-10 Thread kmillikin
Reviewers: Kasper Lund, Message: Now ported to ARM (as much as was necessary). Description: Fix issue 265 by handling extra statement state on the frame based on the expectation at the break, continue, and return labels (including shadowed ones) instead of based on the AST nodes. See http://cod

[v8-dev] Re: Fix issue 265 by handling extra statement state on the frame based on...

2009-03-10 Thread Kasper Lund
If you deal with the virtual Initialize invocation in the JumpTarget constructor, this LGTM. Cheers, Kasper On Wed, Mar 11, 2009 at 6:50 AM, wrote: > Reviewers: Kasper Lund, > > Message: > Now ported to ARM (as much as was necessary). > > Description: > Fix issue 265 by handling extra statemen

[v8-dev] [v8 commit] r1482 - in branches/bleeding_edge: src test/mjsunit test/mjsunit/bugs test/mjsunit/regress

2009-03-10 Thread codesite-noreply
Author: kmilli...@chromium.org Date: Tue Mar 10 23:17:19 2009 New Revision: 1482 Added: branches/bleeding_edge/test/mjsunit/regress/regress-265.js Removed: branches/bleeding_edge/test/mjsunit/bugs/bug-265.js Modified: branches/bleeding_edge/src/assembler-arm.h branches/bleeding_ed

[v8-dev] [v8 commit] r1483 - branches/bleeding_edge/src

2009-03-10 Thread codesite-noreply
Author: kmilli...@chromium.org Date: Tue Mar 10 23:31:21 2009 New Revision: 1483 Modified: branches/bleeding_edge/src/jump-target.cc Log: Fix formatting problem. Modified: branches/bleeding_edge/src/jump-target.cc