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

Issue 35463002: MIPS: Enable aligned keyed stores and loads for double arrays.

Created:
7 years, 2 months ago by dusmil
Modified:
7 years, 2 months ago
CC:
v8-dev
Visibility:
Public.

Description

MIPS: Enable aligned keyed stores and loads for double arrays. Provide ~20% performance improvement in Navier-Stokes benchmark, by using true load/store double (ldc1/sdc1) instructions. These instructions require double-aligned memory address. Since doubles are not generally aligned in v8, we historically have used a workaround using a pair of 32-bit loads/stores (lwc1/swc1), which is slow. This CL requires FixedDoubleArrays to be aligned in all cases, which is achieved via these related CL's: https://chromiumcodereview.appspot.com/35103002, https://chromiumcodereview.appspot.com/35133002, https://chromiumcodereview.appspot.com/35313002. TEST= BUG=

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+26 lines, -14 lines) Patch
M src/flag-definitions.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/mips/assembler-mips.h View 1 chunk +2 lines, -2 lines 0 comments Download
M src/mips/assembler-mips.cc View 2 chunks +18 lines, -10 lines 0 comments Download
M src/mips/lithium-codegen-mips.cc View 4 chunks +4 lines, -2 lines 0 comments Download

Messages

Total messages: 1 (0 generated)
dusmil
7 years, 2 months ago (2013-10-22 16:41:15 UTC) #1
PTAL

Powered by Google App Engine
This is Rietveld 408576698