Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(704)

Issue 6591073: ARM: Implement untagged input for TranscendentalCacheStub. (Closed)

Created:
9 years, 9 months ago by Karl Klose
Modified:
9 years, 7 months ago
CC:
v8-dev
Visibility:
Public.

Description

ARM: Implement untagged input for TranscendentalCacheStub.

Patch Set 1 #

Total comments: 18

Patch Set 2 : Fix bug. #

Patch Set 3 : Address comments. #

Patch Set 4 : Remove duplicate FeatureScope. #

Patch Set 5 : Minor edits. #

Patch Set 6 : Fix alignment in allocation. #

Patch Set 7 : Fix lint. #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+265 lines, -73 lines) Patch
M src/arm/code-stubs-arm.h View 1 2 1 chunk +12 lines, -3 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 6 3 chunks +138 lines, -34 lines 1 comment Download
M src/arm/codegen-arm.cc View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M src/arm/full-codegen-arm.cc View 1 2 3 chunks +6 lines, -3 lines 0 comments Download
M src/arm/lithium-arm.cc View 1 2 1 chunk +24 lines, -27 lines 0 comments Download
M src/arm/lithium-codegen-arm.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 1 2 3 chunks +35 lines, -1 line 0 comments Download
M src/arm/macro-assembler-arm.cc View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M src/assembler.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/assembler.cc View 1 chunk +33 lines, -0 lines 0 comments Download
M src/ia32/code-stubs-ia32.h View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 4 (0 generated)
Søren Thygesen Gjesse
LGTM I am thinking whether updating the cache with heap number objects in the non-tagged ...
9 years, 9 months ago (2011-03-02 10:09:45 UTC) #1
Karl Klose
http://codereview.chromium.org/6591073/diff/1/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): http://codereview.chromium.org/6591073/diff/1/src/arm/code-stubs-arm.cc#newcode3080 src/arm/code-stubs-arm.cc:3080: const Register scratch1 = r10; Yes, it is. Used ...
9 years, 9 months ago (2011-03-02 11:16:41 UTC) #2
Søren Thygesen Gjesse
LGTM http://codereview.chromium.org/6591073/diff/1025/src/arm/code-stubs-arm.cc File src/arm/code-stubs-arm.cc (right): http://codereview.chromium.org/6591073/diff/1025/src/arm/code-stubs-arm.cc#newcode3875 src/arm/code-stubs-arm.cc:3875: __ mov(scratch0, Operand(4 * kPointerSize)); Why not HeapNumber::kSize ...
9 years, 9 months ago (2011-03-04 07:44:18 UTC) #3
Karl Klose
9 years, 9 months ago (2011-03-04 08:38:59 UTC) #4
> Why not HeapNumber::kSize instead of 4 * kPointerSize. Shouldn't
> HeapNumber::kSize be sufficient to cause a GC?

kHeapSize should be enough, but it triggers an assert  in
Runtime_AllocateInNewSpace that the allocation size must be aligned to
kPointerSize.

Powered by Google App Engine
This is Rietveld 408576698