| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 void RegExpConstructResultStub::InitializeInterfaceDescriptor( | 116 void RegExpConstructResultStub::InitializeInterfaceDescriptor( |
| 117 CodeStubInterfaceDescriptor* descriptor) { | 117 CodeStubInterfaceDescriptor* descriptor) { |
| 118 static Register registers[] = { ecx, ebx, eax }; | 118 static Register registers[] = { ecx, ebx, eax }; |
| 119 descriptor->register_param_count_ = 3; | 119 descriptor->register_param_count_ = 3; |
| 120 descriptor->register_params_ = registers; | 120 descriptor->register_params_ = registers; |
| 121 descriptor->deoptimization_handler_ = | 121 descriptor->deoptimization_handler_ = |
| 122 Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry; | 122 Runtime::FunctionForId(Runtime::kHiddenRegExpConstructResult)->entry; |
| 123 } | 123 } |
| 124 | 124 |
| 125 | 125 |
| 126 void KeyedLoadGenericElementStub::InitializeInterfaceDescriptor( | |
| 127 CodeStubInterfaceDescriptor* descriptor) { | |
| 128 static Register registers[] = { edx, ecx }; | |
| 129 descriptor->register_param_count_ = 2; | |
| 130 descriptor->register_params_ = registers; | |
| 131 descriptor->deoptimization_handler_ = | |
| 132 Runtime::FunctionForId(Runtime::kKeyedGetProperty)->entry; | |
| 133 } | |
| 134 | |
| 135 | |
| 136 void LoadFieldStub::InitializeInterfaceDescriptor( | 126 void LoadFieldStub::InitializeInterfaceDescriptor( |
| 137 CodeStubInterfaceDescriptor* descriptor) { | 127 CodeStubInterfaceDescriptor* descriptor) { |
| 138 static Register registers[] = { edx }; | 128 static Register registers[] = { edx }; |
| 139 descriptor->register_param_count_ = 1; | 129 descriptor->register_param_count_ = 1; |
| 140 descriptor->register_params_ = registers; | 130 descriptor->register_params_ = registers; |
| 141 descriptor->deoptimization_handler_ = NULL; | 131 descriptor->deoptimization_handler_ = NULL; |
| 142 } | 132 } |
| 143 | 133 |
| 144 | 134 |
| 145 void KeyedLoadFieldStub::InitializeInterfaceDescriptor( | 135 void KeyedLoadFieldStub::InitializeInterfaceDescriptor( |
| (...skipping 4939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5085 Operand(ebp, 7 * kPointerSize), | 5075 Operand(ebp, 7 * kPointerSize), |
| 5086 NULL); | 5076 NULL); |
| 5087 } | 5077 } |
| 5088 | 5078 |
| 5089 | 5079 |
| 5090 #undef __ | 5080 #undef __ |
| 5091 | 5081 |
| 5092 } } // namespace v8::internal | 5082 } } // namespace v8::internal |
| 5093 | 5083 |
| 5094 #endif // V8_TARGET_ARCH_IA32 | 5084 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |