[v8-dev] Issue 422 in v8: Order of object properties in a for..in loop is not in insertion order

2009-08-13 Thread codesite-noreply
Updates: Status: Duplicate Mergedinto: 164 Comment #2 on issue 422 by sgje...@chromium.org: Order of object properties in a for..in loop is not in insertion order http://code.google.com/p/v8/issues/detail?id=422 (No comment was entered for this change.) -- You received this me

[v8-dev] Issue 164 in v8: Wrong order in Object properties interation

2009-08-13 Thread codesite-noreply
Comment #5 on issue 164 by sgje...@chromium.org: Wrong order in Object properties interation http://code.google.com/p/v8/issues/detail?id=164 Issue 422 has been merged into this issue. -- You received this message because you are listed in the owner or CC fields of this issue, or because you

[v8-dev] Issue 422 in v8: Order of object properties in a for..in loop is not in insertion order

2009-08-13 Thread codesite-noreply
Comment #1 on issue 422 by kasp...@chromium.org: Order of object properties in a for..in loop is not in insertion order http://code.google.com/p/v8/issues/detail?id=422 Just a quick comment: The latest V8 doesn't have the behavior you mention. It sorts the properties with array-index keys be

[v8-dev] Re: Fixing the const correctness of String::Value.

2009-08-13 Thread thiago . farina
On 2009/08/12 15:07:10, tfarina wrote: > On 2009/08/12 07:04:23, Christian Plesner Hansen wrote: > > I'm unclear on why all the operator*s should return const types. > > > > http://codereview.chromium.org/165208/diff/1/2 > > File include/v8.h (right): > > > > http://codereview.chromium.org/165208/

[v8-dev] Issue 422 in v8: Order of object properties in a for..in loop is not in insertion order

2009-08-13 Thread codesite-noreply
Status: New Owner: New issue 422 by d...@google.com: Order of object properties in a for..in loop is not in insertion order http://code.google.com/p/v8/issues/detail?id=422 In v8, the order of iteration of javascript properties in a for..in loop is not the insertion order of object proper

[v8-dev] [v8] r2686 committed - Revert http://code.google.com/p/v8/source/detail?r=2670...

2009-08-13 Thread codesite-noreply
Revision: 2686 Author: f...@chromium.org Date: Thu Aug 13 15:13:45 2009 Log: Revert http://code.google.com/p/v8/source/detail?r=2670 Now we can pass '--expose_gc' to V8 in the layout test controller. This is probably a better option. Review URL: http://codereview.chromium.org/164520 http://cod

[v8-dev] Revert http://code.google.com/p/v8/source/detail?r=2670...

2009-08-13 Thread iposva
LGTMA -ip http://codereview.chromium.org/164520 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Fix strict aliasing crash on x64.

2009-08-13 Thread deanm
In case you feel like digging, the aliasing rules are 3.10 paragraph 15 of the C++ (n1905) spec. On 2009/08/13 18:49:06, Dean McNamee wrote: http://codereview.chromium.org/164498 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.g

[v8-dev] Fix strict aliasing crash on x64.

2009-08-13 Thread deanm
Reviewers: Mads Ager, agl, Description: Fix strict aliasing crash on x64. Please review this at http://codereview.chromium.org/164498 Affected files: M SConstruct M src/handles-inl.h M src/handles.h Index: SConstruct diff --git a/SConstruct b/SConstruct index c981ef91398778d152e920

[v8-dev] Re: Tuned Heap Sizes & Snapshotting

2009-08-13 Thread Mike Belshe
On Wed, Aug 12, 2009 at 11:32 AM, Kevin Millikin wrote: > There's also an API call to change those parameters. A few months ago > (probably about 6 I guess) it was working, from the command line, with and > without snapshots. OK - good to know. > > What doesn't work and probably crashes is if

[v8-dev] [v8] r2685 committed - Changed Heap::Shrink to free as many pages as possible....

2009-08-13 Thread codesite-noreply
Revision: 2685 Author: b...@chromium.org Date: Thu Aug 13 07:58:35 2009 Log: Changed Heap::Shrink to free as many pages as possible. As a benefit, this eliminates an ifdef ARDROID. Review URL: http://codereview.chromium.org/165453 http://code.google.com/p/v8/source/detail?r=2685 Modified: /bra

[v8-dev] Re: Changed Heap::Shrink to free as many pages as possible....

2009-08-13 Thread ager
LGTM http://codereview.chromium.org/165453 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] [v8] r2684 committed - erikcorry: Remember to put objects back in fast case after adding func...

2009-08-13 Thread codesite-noreply
Revision: 2684 Author: whe...@chromium.org Date: Thu Aug 13 07:04:49 2009 Log: erikcorry: Remember to put objects back in fast case after adding functions. P.S. for reasons unknown the original change (2681), also by erikcorry, was attributed to Bill. Review URL: http://codereview.chromium.org/1

[v8-dev] [v8] r2683 committed - Fix mac-nm script to support filenames w/spaces...

2009-08-13 Thread codesite-noreply
Revision: 2683 Author: mikhail.naga...@gmail.com Date: Thu Aug 13 07:03:12 2009 Log: Fix mac-nm script to support filenames w/spaces Review URL: http://codereview.chromium.org/164476 http://code.google.com/p/v8/source/detail?r=2683 Modified: /branches/bleeding_edge/tools/mac-nm =

[v8-dev] Re: Fix mac-nm script to support filenames w/spaces

2009-08-13 Thread sgjesse
LGTM http://codereview.chromium.org/164476 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Changed Heap::Shrink to free as many pages as possible....

2009-08-13 Thread bak
Reviewers: Mads Ager, Description: Changed Heap::Shrink to free as many pages as possible. As a benefit, this eliminates an ifdef ARDROID. Please review this at http://codereview.chromium.org/165453 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/sp

[v8-dev] Re: erikcorry: Remember to put objects back in fast case after adding functions....

2009-08-13 Thread ager
LGTM http://codereview.chromium.org/164479 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] X64: Do not use an AllocateWithoutSpill register if it is invalid.

2009-08-13 Thread whesse
Reviewers: Erik Corry, Description: X64: Do not use an AllocateWithoutSpill register if it is invalid. Please review this at http://codereview.chromium.org/164480 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/codegen-x64.cc Index: src/x64/cod

[v8-dev] Re: X64: Change testl to testb if mask fits in 1 byte. Shortens smi test.

2009-08-13 Thread whesse
http://codereview.chromium.org/164472/diff/1/2 File src/x64/assembler-x64.cc (right): http://codereview.chromium.org/164472/diff/1/2#newcode1611 Line 1611: EnsureSpace ensure_space(this); On 2009/08/13 12:12:27, Lasse Reichstein wrote: > Move ensure_space below the call to testb, which has its o

[v8-dev] Re: X64: Implement RegExp natively.

2009-08-13 Thread erik . corry
LGTM http://codereview.chromium.org/165443/diff/42/1004 File src/ia32/regexp-macro-assembler-ia32.cc (right): http://codereview.chromium.org/165443/diff/42/1004#newcode1165 Line 1165: Address new_stack_top = RegExpStack::EnsureCapacity(size * 2); Shouldn't new_stack_top be new_stack_base? http

[v8-dev] erikcorry: Remember to put objects back in fast case after adding functions....

2009-08-13 Thread erik . corry
Reviewers: Mads Ager, Description: erikcorry: Remember to put objects back in fast case after adding functions. P.S. for reasons unknown the original change (2681), also by erikcorry, was attributed to Bill. Please review this at http://codereview.chromium.org/164479 SVN Base: http://v8.googlec

[v8-dev] Re: X64: Implement RegExp natively.

2009-08-13 Thread lrn
Addressed comments http://codereview.chromium.org/165443/diff/42/1014 File src/x64/assembler-x64.cc (right): http://codereview.chromium.org/165443/diff/42/1014#newcode449 Line 449: void Assembler::arithmetic_op_16(byte opcode, Register dst, Register src) { Done http://codereview.chromium.org/1

[v8-dev] fix nm script

2009-08-13 Thread mikhail . naganov
Reviewers: Søren Gjesse, Description: fix nm script Please review this at http://codereview.chromium.org/164476 Affected files: M tools/mac-nm Index: tools/mac-nm diff --git a/tools/mac-nm b/tools/mac-nm index 9c181779780bef5454cd06e4d4ee74dbfd20005d..07efb07bae8eb5cd276340f8265e7c3a87348

[v8-dev] [v8] r2682 committed - Push version 1.3.4 to trunk....

2009-08-13 Thread codesite-noreply
Revision: 2682 Author: a...@chromium.org Date: Thu Aug 13 05:44:13 2009 Log: Push version 1.3.4 to trunk. Added a readline() command to the d8 shell. Fixed bug in json parsing. Added idle notification to the API and reduced memory on idle notifications. Review URL: http://codereview.chromium.o

[v8-dev] [v8] r2681 committed - Avoid map transitions and multiple backing arrays for builtin prototyp...

2009-08-13 Thread codesite-noreply
Revision: 2681 Author: whe...@chromium.org Date: Thu Aug 13 05:35:59 2009 Log: Avoid map transitions and multiple backing arrays for builtin prototypes while adding functions and other properties. This gives around 2% on context-create, more if we don't GC on every new context. Also fix accoun

[v8-dev] Re: Push version 1.3.4 to trunk....

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

[v8-dev] [v8] r2680 committed - X64: Change testl to testb if mask fits in 1 byte. Shortens smi test....

2009-08-13 Thread codesite-noreply
Revision: 2680 Author: whe...@chromium.org Date: Thu Aug 13 05:35:09 2009 Log: X64: Change testl to testb if mask fits in 1 byte. Shortens smi test. Review URL: http://codereview.chromium.org/164472 http://code.google.com/p/v8/source/detail?r=2680 Modified: /branches/bleeding_edge/src/x64/asse

[v8-dev] Issue 421 in v8: Native regexp string comparison

2009-08-13 Thread codesite-noreply
Updates: Labels: -Type-Bug -Priority-Medium Type-FeatureRequest Priority-Low Area-Irregexp Comment #1 on issue 421 by l...@chromium.org: Native regexp string comparison http://code.google.com/p/v8/issues/detail?id=421 (No comment was entered for this change.) -- You received this mess

[v8-dev] Issue 421 in v8: Native regexp string comparison

2009-08-13 Thread codesite-noreply
Status: Accepted Owner: l...@chromium.org Labels: Type-Bug Priority-Medium New issue 421 by l...@chromium.org: Native regexp string comparison http://code.google.com/p/v8/issues/detail?id=421 Combine character compares to do 4 or 8 at a time for a long literal, instead of checking one characte

[v8-dev] Push version 1.3.4 to trunk....

2009-08-13 Thread ager
Reviewers: Christian Plesner Hansen, Description: Push version 1.3.4 to trunk. Added a readline() command to the d8 shell. Fixed bug in json parsing. Added idle notification to the API and reduced memory on idle notifications. Please review this at http://codereview.chromium.org/164475 SVN

[v8-dev] Issue 420 in v8: JS tick processor script fails on incomplete log files

2009-08-13 Thread codesite-noreply
Status: Accepted Owner: mikhail.naganov Labels: Type-Bug Priority-Medium OS-All New issue 420 by mikhail.naganov: JS tick processor script fails on incomplete log files http://code.google.com/p/v8/issues/detail?id=420 Log files can finish abruptly with log event cut in the middle. This breaks

[v8-dev] [v8] r2679 committed - Prepare push to trunk to get JSON parser fix into Chromium....

2009-08-13 Thread codesite-noreply
Revision: 2679 Author: a...@chromium.org Date: Thu Aug 13 05:21:11 2009 Log: Prepare push to trunk to get JSON parser fix into Chromium. Now working on version 1.3.5. Review URL: http://codereview.chromium.org/164474 http://code.google.com/p/v8/source/detail?r=2679 Modified: /branches/bleeding

[v8-dev] Re: Prepare push to trunk to get JSON parser fix into Chromium....

2009-08-13 Thread christian . plesner . hansen
Lgtm http://codereview.chromium.org/164474/diff/1/3 File ChangeLog (right): http://codereview.chromium.org/164474/diff/1/3#newcode10 Line 10: Implemented more arithmetic operation optimizations on x64. I wouldn't mention this. http://codereview.chromium.org/164474 --~--~-~--~~

[v8-dev] Prepare push to trunk to get JSON parser fix into Chromium....

2009-08-13 Thread ager
Reviewers: Christian Plesner Hansen, Description: Prepare push to trunk to get JSON parser fix into Chromium. Now working on version 1.3.5. Please review this at http://codereview.chromium.org/164474 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M Chang

[v8-dev] Re: X64: Change testl to testb if mask fits in 1 byte. Shortens smi test.

2009-08-13 Thread lrn
LGTM http://codereview.chromium.org/164472/diff/1/2 File src/x64/assembler-x64.cc (right): http://codereview.chromium.org/164472/diff/1/2#newcode1611 Line 1611: EnsureSpace ensure_space(this); Move ensure_space below the call to testb, which has its own ensure_space. http://codereview.chromium

[v8-dev] [v8] r2678 committed - Changed semi space Grow to be rounded to OS page size....

2009-08-13 Thread codesite-noreply
Revision: 2678 Author: b...@chromium.org Date: Thu Aug 13 05:13:50 2009 Log: Changed semi space Grow to be rounded to OS page size. Review URL: http://codereview.chromium.org/164469 http://code.google.com/p/v8/source/detail?r=2678 Modified: /branches/bleeding_edge/src/spaces.cc ==

[v8-dev] Re: Avoid map transitions and multiple backing arrays for builtin prototypes...

2009-08-13 Thread ager
LGTM http://codereview.chromium.org/165449 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] [v8] r2677 committed - - Added simple memory reduction behavior for IdleNotification....

2009-08-13 Thread codesite-noreply
Revision: 2677 Author: b...@chromium.org Date: Thu Aug 13 05:03:42 2009 Log: - Added simple memory reduction behavior for IdleNotification. - This also include a one line change approved by lrh. http://codereview.chromium.org/164469 Review URL: http://codereview.chromium.org/165448 http://c

[v8-dev] Re: - Added simple memory reduction behavior for IdleNotification....

2009-08-13 Thread ager
LGTM http://codereview.chromium.org/165448/diff/1/3 File src/spaces.h (right): http://codereview.chromium.org/165448/diff/1/3#newcode372 Line 372: // start is not NULL, the size is greater than zero, and that the and that the -> and the http://codereview.chromium.org/165448 --~--~-~--

[v8-dev] Avoid map transitions and multiple backing arrays for builtin prototypes...

2009-08-13 Thread erik . corry
Reviewers: Mads Ager, Description: Avoid map transitions and multiple backing arrays for builtin prototypes while adding functions and other properties. This gives around 2% on context-create, more if we don't GC on every new context. Also fix accounting bug in cell space. Please review this a

[v8-dev] - Added simple memory reduction behavior for IdleNotification....

2009-08-13 Thread bak
Reviewers: Mads Ager, Description: - Added simple memory reduction behavior for IdleNotification. - This also include a one line change approved by lrh. http://codereview.chromium.org/164469 Please review this at http://codereview.chromium.org/165448 SVN Base: http://v8.googlecode.com/sv

[v8-dev] X64: Change testl to testb if mask fits in 1 byte. Shortens smi test.

2009-08-13 Thread whesse
Reviewers: Lasse Reichstein, Description: X64: Change testl to testb if mask fits in 1 byte. Shortens smi test. Please review this at http://codereview.chromium.org/164472 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/x64/assembler-x64.cc Index:

[v8-dev] Re: Changed semi space Grow to be rounded to OS page size.

2009-08-13 Thread Lasse R.H. Nielsen
LGTM On Thu, Aug 13, 2009 at 11:37, wrote: > Reviewers: Lasse Reichstein, > > Description: > Changed semi space Grow to be rounded to OS page size. > > > Please review this at http://codereview.chromium.org/164469 > > SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ > > Affected fi

[v8-dev] [v8] r2676 committed - Merge JSON fix to 1.2 branch....

2009-08-13 Thread codesite-noreply
Revision: 2676 Author: a...@chromium.org Date: Thu Aug 13 04:16:12 2009 Log: Merge JSON fix to 1.2 branch. Review URL: http://codereview.chromium.org/164470 http://code.google.com/p/v8/source/detail?r=2676 Modified: /branches/1.2/src/compiler.cc /branches/1.2/src/compiler.h /branches/1.2/sr

[v8-dev] Re: X64: Implement RegExp natively.

2009-08-13 Thread whesse
LGTM. http://codereview.chromium.org/165443/diff/42/1016 File src/x64/regexp-macro-assembler-x64.cc (right): http://codereview.chromium.org/165443/diff/42/1016#newcode68 Line 68: *- stack_area_top(High end of the memory area to use as I don't like "top" here. high_end, or backtrack

[v8-dev] Re: Merge JSON fix to 1.2 branch.

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

[v8-dev] Merge JSON fix to 1.2 branch.

2009-08-13 Thread ager
Reviewers: Christian Plesner Hansen, Description: Merge JSON fix to 1.2 branch. Please review this at http://codereview.chromium.org/164470 SVN Base: http://v8.googlecode.com/svn/branches/1.2/ Affected files: M src/compiler.h M src/compiler.cc M src/runtime.cc M tes

[v8-dev] [v8] r2675 committed - Fixed issue 19212...

2009-08-13 Thread codesite-noreply
Revision: 2675 Author: christian.plesner.han...@gmail.com Date: Thu Aug 13 03:25:35 2009 Log: Fixed issue 19212 Fixed a bug in json parsing. Refactored compilation code a bit to make it more obvious what's going on. Review URL: http://codereview.chromium.org/165446 http://code.google.com/p/v8/s

[v8-dev] Re: Fixed issue 19212

2009-08-13 Thread ager
LGTM! http://codereview.chromium.org/165446 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Fixed issue 19212

2009-08-13 Thread christian . plesner . hansen
Reviewers: Mads Ager, Description: Fixed issue 19212 Fixed a bug in json parsing. Refactored compilation code a bit to make it more obvious what's going on. Please review this at http://codereview.chromium.org/165446 Affected files: M src/compiler.h M src/compiler.cc M src/runtime.cc

[v8-dev] Changed semi space Grow to be rounded to OS page size.

2009-08-13 Thread bak
Reviewers: Lasse Reichstein, Description: Changed semi space Grow to be rounded to OS page size. Please review this at http://codereview.chromium.org/164469 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/spaces.cc Index: src/spaces.cc ===

[v8-dev] [v8] r2674 committed - Added idle notification to the API....

2009-08-13 Thread codesite-noreply
Revision: 2674 Author: b...@chromium.org Date: Thu Aug 13 02:35:51 2009 Log: Added idle notification to the API. The implementation is still empty. Review URL: http://codereview.chromium.org/165445 http://code.google.com/p/v8/source/detail?r=2674 Modified: /branches/bleeding_edge/include/v8.h

[v8-dev] Re: Added idle notification to the API.

2009-08-13 Thread bak
http://codereview.chromium.org/165445 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: Added idle notification to the API.

2009-08-13 Thread ager
LGTM http://codereview.chromium.org/165445 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] Re: X64: Implement RegExp natively.

2009-08-13 Thread whesse
All files except the two new x64 ones reviewed. Will send their review later. http://codereview.chromium.org/165443/diff/42/1006 File src/jsregexp.cc (right): http://codereview.chromium.org/165443/diff/42/1006#newcode469 Line 469: // If result is RETRY, the string have changed representation,

[v8-dev] Re: - Reduced the maximum capacity of a semi space from 8MB to 4MB....

2009-08-13 Thread Lars Bak
Makes sense. I'll update the code. On Thu, Aug 13, 2009 at 10:45 AM, wrote: > Drive-by comment. > > > http://codereview.chromium.org/164397/diff/1/4 > File src/spaces.cc (right): > > http://codereview.chromium.org/164397/diff/1/4#newcode1079 > Line 1079: int extra = capacity_/2; > Just a thought

[v8-dev] Added idle notification to the API.

2009-08-13 Thread bak
Reviewers: Mads Ager, Description: Added idle notification to the API. The implementation is still empty. Please review this at http://codereview.chromium.org/165445 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M include/v8.h M src/api.cc M

[v8-dev] Re: - Reduced the maximum capacity of a semi space from 8MB to 4MB....

2009-08-13 Thread lrn
Drive-by comment. http://codereview.chromium.org/164397/diff/1/4 File src/spaces.cc (right): http://codereview.chromium.org/164397/diff/1/4#newcode1079 Line 1079: int extra = capacity_/2; Just a thought: Would it be safer to round this up to a whole number of (OS) pages? http://codereview.chro

[v8-dev] X64: Implement RegExp natively.

2009-08-13 Thread lrn
Reviewers: William Hesse, Erik Corry, Message: Please review RegExp conversion. I removed the unused "dispatch" functions in regexp-macro-assembler.h and implementations, but otherwise the changes should be contained in the x64 directory and jsregexp.cc. Description: X64: Implement RegExp nativ

[v8-dev] [v8] r2673 committed - X64: Add an SHL optimization, fix a floating-point bug, fix xchg rax,r...

2009-08-13 Thread codesite-noreply
Revision: 2673 Author: whe...@chromium.org Date: Thu Aug 13 01:00:04 2009 Log: X64: Add an SHL optimization, fix a floating-point bug, fix xchg rax,r8 and printing of test ?ax, imm in disassembler. Review URL: http://codereview.chromium.org/164399 http://code.google.com/p/v8/source/detail?r=2673

[v8-dev] Issue 353 in v8: Add readline method to d8

2009-08-13 Thread codesite-noreply
Issue 353: Add readline method to d8 http://code.google.com/p/v8/issues/detail?id=353 This issue is no longer blocking issue 352. See http://code.google.com/p/v8/issues/detail?id=352 -- You received this message because you are listed in the owner or CC fields of this issue, or because you starre

[v8-dev] Issue 352 in v8: V8 Fails on the Language Shootout

2009-08-13 Thread codesite-noreply
Updates: Blockedon: -353 -354 Comment #5 on issue 352 by christian.plesner.hansen: V8 Fails on the Language Shootout http://code.google.com/p/v8/issues/detail?id=352 This should have been fixed but I'm leaving it open until we can verify that the shootout code works as expected. --

[v8-dev] Issue 354 in v8: Print without newline in d8 shell

2009-08-13 Thread codesite-noreply
Issue 354: Print without newline in d8 shell http://code.google.com/p/v8/issues/detail?id=354 This issue is no longer blocking issue 352. See http://code.google.com/p/v8/issues/detail?id=352 -- You received this message because you are listed in the owner or CC fields of this issue, or because yo

[v8-dev] Issue 419 in v8: Two handles are equal even when they refer to different objects

2009-08-13 Thread codesite-noreply
Comment #2 on issue 419 by whe...@chromium.org: Two handles are equal even when they refer to different objects http://code.google.com/p/v8/issues/detail?id=419 The handles are equal because they refer to the same object. A and B are classes with no members, so their instances have zero siz

[v8-dev] Re: X64: Add an SHL optimization, fix a floating-point bug, fix xchg rax,r8 and p...

2009-08-13 Thread whesse
http://codereview.chromium.org/164399/diff/1/2 File src/x64/disasm-x64.cc (left): http://codereview.chromium.org/164399/diff/1/2#oldcode108 Line 108: { 0x90, UNSET_OP_ORDER, "nop" }, On 2009/08/12 20:03:37, Erik Corry wrote: > Was this deliberate? Yes. This instruction is handled by code, becau

[v8-dev] Issue 353 in v8: Add readline method to d8

2009-08-13 Thread codesite-noreply
Updates: Status: Fixed Comment #4 on issue 353 by christian.plesner.hansen: Add readline method to d8 http://code.google.com/p/v8/issues/detail?id=353 (No comment was entered for this change.) -- You received this message because you are listed in the owner or CC fields of this issue,

[v8-dev] Issue 354 in v8: Print without newline in d8 shell

2009-08-13 Thread codesite-noreply
Updates: Status: Fixed Comment #6 on issue 354 by christian.plesner.hansen: Print without newline in d8 shell http://code.google.com/p/v8/issues/detail?id=354 (No comment was entered for this change.) -- You received this message because you are listed in the owner or CC fields of thi

[v8-dev] Issue 419 in v8: Two handles are equal even when they refer to different objects

2009-08-13 Thread codesite-noreply
Updates: Status: WorkingAsIntended Comment #1 on issue 419 by christian.plesner.hansen: Two handles are equal even when they refer to different objects http://code.google.com/p/v8/issues/detail?id=419 You can only use handle equality to compare objects in the v8 heap. For heap objec

[v8-dev] [v8] r2672 committed - Move some arrays into functions so they don't get cloned on each new c...

2009-08-13 Thread codesite-noreply
Revision: 2672 Author: whe...@chromium.org Date: Thu Aug 13 00:36:28 2009 Log: Move some arrays into functions so they don't get cloned on each new context. Review URL: http://codereview.chromium.org/164396 http://code.google.com/p/v8/source/detail?r=2672 Modified: /branches/bleeding_edge/src

[v8-dev] Issue 419 in v8: Two handles are equal even when they refer to different objects

2009-08-13 Thread codesite-noreply
Status: New Owner: New issue 419 by piiguu: Two handles are equal even when they refer to different objects http://code.google.com/p/v8/issues/detail?id=419 The function below in Handle class always returns true even two handles refer to different objects /** * Checks whether two

[v8-dev] Re: Add a readline() command to d8. This reads a single line, stripping the...

2009-08-13 Thread abdulla . kamar
On 2009/08/13 07:00:47, Christian Plesner Hansen wrote: > What happened to the previous code review, 115747? > Anyway, LGTM. Sorry, it was the same thing that happened to the last, I lost my workspace. http://codereview.chromium.org/162004 --~--~-~--~~~---~--~~

[v8-dev] Re: Add a readline() command to d8. This reads a single line, stripping the...

2009-08-13 Thread christian . plesner . hansen
Landed in http://code.google.com/p/v8/source/detail?r=2671. http://codereview.chromium.org/162004 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---

[v8-dev] [v8] r2671 committed - Add a readline() command to d8. This reads a single line, stripping...

2009-08-13 Thread codesite-noreply
Revision: 2671 Author: christian.plesner.han...@gmail.com Date: Thu Aug 13 00:07:41 2009 Log: Add a readline() command to d8. This reads a single line, stripping the new-line at the end. This is the other half of what is required to make the Debian Language Shootout code work correctly: http://cod

[v8-dev] Re: Add a readline() command to d8. This reads a single line, stripping the...

2009-08-13 Thread christian . plesner . hansen
What happened to the previous code review, 115747? Anyway, LGTM. http://codereview.chromium.org/162004 --~--~-~--~~~---~--~~ v8-dev mailing list v8-dev@googlegroups.com http://groups.google.com/group/v8-dev -~--~~~~--~~--~--~---