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

Side by Side Diff: src/ic/x64/access-compiler-x64.cc

Issue 1303053004: Revert of Vector ICs: platform support for vector-based stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/ic/mips64/stub-cache-mips64.cc ('k') | src/ic/x64/handler-compiler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/ic/access-compiler.h" 7 #include "src/ic/access-compiler.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 13 matching lines...) Expand all
24 Register name = LoadDescriptor::NameRegister(); 24 Register name = LoadDescriptor::NameRegister();
25 static Register registers[] = {receiver, name, rax, rbx, rdi, r8}; 25 static Register registers[] = {receiver, name, rax, rbx, rdi, r8};
26 return registers; 26 return registers;
27 } 27 }
28 28
29 29
30 Register* PropertyAccessCompiler::store_calling_convention() { 30 Register* PropertyAccessCompiler::store_calling_convention() {
31 // receiver, name, scratch1, scratch2, scratch3. 31 // receiver, name, scratch1, scratch2, scratch3.
32 Register receiver = StoreDescriptor::ReceiverRegister(); 32 Register receiver = StoreDescriptor::ReceiverRegister();
33 Register name = StoreDescriptor::NameRegister(); 33 Register name = StoreDescriptor::NameRegister();
34 DCHECK(FLAG_vector_stores || 34 DCHECK(rbx.is(StoreTransitionDescriptor::MapRegister()));
35 rbx.is(StoreTransitionDescriptor::MapRegister()));
36 static Register registers[] = {receiver, name, rbx, rdi, r8}; 35 static Register registers[] = {receiver, name, rbx, rdi, r8};
37 return registers; 36 return registers;
38 } 37 }
39 38
40 39
41 #undef __ 40 #undef __
42 } // namespace internal 41 } // namespace internal
43 } // namespace v8 42 } // namespace v8
44 43
45 #endif // V8_TARGET_ARCH_X64 44 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/ic/mips64/stub-cache-mips64.cc ('k') | src/ic/x64/handler-compiler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698