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

Side by Side Diff: src/x64/code-stubs-x64.cc

Issue 331633002: Revert "Revert "Reland 21774: Generate KeyedLoadGeneric with Hydrogen"" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 void RegExpConstructResultStub::InitializeInterfaceDescriptor( 112 void RegExpConstructResultStub::InitializeInterfaceDescriptor(
113 CodeStubInterfaceDescriptor* descriptor) { 113 CodeStubInterfaceDescriptor* descriptor) {
114 static Register registers[] = { rcx, rbx, rax }; 114 static Register registers[] = { rcx, rbx, rax };
115 descriptor->register_param_count_ = 3; 115 descriptor->register_param_count_ = 3;
116 descriptor->register_params_ = registers; 116 descriptor->register_params_ = registers;
117 descriptor->deoptimization_handler_ = 117 descriptor->deoptimization_handler_ =
118 Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry; 118 Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry;
119 } 119 }
120 120
121 121
122 void KeyedLoadGenericElementStub::InitializeInterfaceDescriptor(
123 CodeStubInterfaceDescriptor* descriptor) {
124 static Register registers[] = { rdx, rax };
125 descriptor->register_param_count_ = 2;
126 descriptor->register_params_ = registers;
127 descriptor->deoptimization_handler_ =
128 Runtime::FunctionForId(Runtime::kKeyedGetProperty)->entry;
129 }
130
131
122 void LoadFieldStub::InitializeInterfaceDescriptor( 132 void LoadFieldStub::InitializeInterfaceDescriptor(
123 CodeStubInterfaceDescriptor* descriptor) { 133 CodeStubInterfaceDescriptor* descriptor) {
124 static Register registers[] = { rax }; 134 static Register registers[] = { rax };
125 descriptor->register_param_count_ = 1; 135 descriptor->register_param_count_ = 1;
126 descriptor->register_params_ = registers; 136 descriptor->register_params_ = registers;
127 descriptor->deoptimization_handler_ = NULL; 137 descriptor->deoptimization_handler_ = NULL;
128 } 138 }
129 139
130 140
131 void KeyedLoadFieldStub::InitializeInterfaceDescriptor( 141 void KeyedLoadFieldStub::InitializeInterfaceDescriptor(
(...skipping 4904 matching lines...) Expand 10 before | Expand all | Expand 10 after
5036 return_value_operand, 5046 return_value_operand,
5037 NULL); 5047 NULL);
5038 } 5048 }
5039 5049
5040 5050
5041 #undef __ 5051 #undef __
5042 5052
5043 } } // namespace v8::internal 5053 } } // namespace v8::internal
5044 5054
5045 #endif // V8_TARGET_ARCH_X64 5055 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/objects.h ('K') | « src/serialize.h ('k') | test/mjsunit/keyed-load-dictionary-stub.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698