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

Unified Diff: src/x64/assembler-x64.h

Issue 2023763010: [x64] Make xmm0 allocatable and use xmm15 as scratch register instead. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic/x64/ic-x64.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/assembler-x64.h
diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h
index d9ea95d09de18f28853e6ae0aebaff58855fb1d8..80f1b96304889caa7e243065e63c2eeed8f33b10 100644
--- a/src/x64/assembler-x64.h
+++ b/src/x64/assembler-x64.h
@@ -186,6 +186,7 @@ const Register arg_reg_4 = {Register::kCode_rcx};
#define FLOAT_REGISTERS DOUBLE_REGISTERS
#define ALLOCATABLE_DOUBLE_REGISTERS(V) \
+ V(xmm0) \
V(xmm1) \
V(xmm2) \
V(xmm3) \
@@ -199,8 +200,7 @@ const Register arg_reg_4 = {Register::kCode_rcx};
V(xmm11) \
V(xmm12) \
V(xmm13) \
- V(xmm14) \
- V(xmm15)
+ V(xmm14)
struct XMMRegister {
enum Code {
« no previous file with comments | « src/ic/x64/ic-x64.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698