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

Issue 6530002: ARM: Enable loads and stores of VFP registers with offsets >= 1024 bytes. (Closed)

Created:
9 years, 10 months ago by William Hesse
Modified:
9 years, 7 months ago
CC:
v8-dev
Visibility:
Public.

Description

ARM: Enable loads and stores of VFP registers with offsets >= 1024 bytes. Committed: http://code.google.com/p/v8/source/detail?r=6830

Patch Set 1 #

Total comments: 7
Unified diffs Side-by-side diffs Delta from patch set Stats (+120 lines, -22 lines) Patch
M src/arm/assembler-arm.h View 4 chunks +22 lines, -6 lines 2 comments Download
M src/arm/assembler-arm.cc View 4 chunks +98 lines, -16 lines 5 comments Download

Messages

Total messages: 4 (0 generated)
William Hesse
9 years, 10 months ago (2011-02-16 16:04:04 UTC) #1
Rodolph Perfetta
drive by commments. By the way this patch is also part of issue 6311010. http://codereview.chromium.org/6530002/diff/1/src/arm/assembler-arm.cc ...
9 years, 10 months ago (2011-02-16 16:48:54 UTC) #2
Karl Klose
LGTM with Rodolph's comments addressed.
9 years, 10 months ago (2011-02-17 09:21:37 UTC) #3
William Hesse
9 years, 10 months ago (2011-02-17 11:27:29 UTC) #4
http://codereview.chromium.org/6530002/diff/1/src/arm/assembler-arm.cc
File src/arm/assembler-arm.cc (right):

http://codereview.chromium.org/6530002/diff/1/src/arm/assembler-arm.cc#newcod...
src/arm/assembler-arm.cc:1860: mov(ip, Operand(offset));
On 2011/02/16 16:48:54, Rodolph Perfetta wrote:
> The offset may be encodable in an add/sub immediate, so it would be better not
> to move offset into ip and let the assembler decide: add(ip, base,
> Operand(offset)); ...

Done.

http://codereview.chromium.org/6530002/diff/1/src/arm/assembler-arm.h
File src/arm/assembler-arm.h (right):

http://codereview.chromium.org/6530002/diff/1/src/arm/assembler-arm.h#newcode450
src/arm/assembler-arm.h:450: bool OffsetIsEncodable() const {
Changed name to OffsetIsUint12Encodable On 2011/02/16 16:48:54, Rodolph Perfetta
wrote:
> load/store word and byte support a 12bits offset but load/store halfword and
> signed byte support a smaller offset. Furthermore this patch add support for
> vldr/vstr and there the offset is 8bits (shifted left by 2 to get the value).

Powered by Google App Engine
This is Rietveld 408576698