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_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
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 Loading... |
112 void RegExpConstructResultStub::InitializeInterfaceDescriptor( | 112 void RegExpConstructResultStub::InitializeInterfaceDescriptor( |
113 CodeStubInterfaceDescriptor* descriptor) { | 113 CodeStubInterfaceDescriptor* descriptor) { |
114 static Register registers[] = { a2, a1, a0 }; | 114 static Register registers[] = { a2, a1, a0 }; |
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[] = { a1, a0 }; | |
125 descriptor->register_param_count_ = 2; | |
126 descriptor->register_params_ = registers; | |
127 descriptor->deoptimization_handler_ = | |
128 Runtime::FunctionForId(Runtime::kKeyedGetProperty)->entry; | |
129 } | |
130 | |
131 | |
132 void LoadFieldStub::InitializeInterfaceDescriptor( | 122 void LoadFieldStub::InitializeInterfaceDescriptor( |
133 CodeStubInterfaceDescriptor* descriptor) { | 123 CodeStubInterfaceDescriptor* descriptor) { |
134 static Register registers[] = { a0 }; | 124 static Register registers[] = { a0 }; |
135 descriptor->register_param_count_ = 1; | 125 descriptor->register_param_count_ = 1; |
136 descriptor->register_params_ = registers; | 126 descriptor->register_params_ = registers; |
137 descriptor->deoptimization_handler_ = NULL; | 127 descriptor->deoptimization_handler_ = NULL; |
138 } | 128 } |
139 | 129 |
140 | 130 |
141 void KeyedLoadFieldStub::InitializeInterfaceDescriptor( | 131 void KeyedLoadFieldStub::InitializeInterfaceDescriptor( |
(...skipping 5265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5407 MemOperand(fp, 6 * kPointerSize), | 5397 MemOperand(fp, 6 * kPointerSize), |
5408 NULL); | 5398 NULL); |
5409 } | 5399 } |
5410 | 5400 |
5411 | 5401 |
5412 #undef __ | 5402 #undef __ |
5413 | 5403 |
5414 } } // namespace v8::internal | 5404 } } // namespace v8::internal |
5415 | 5405 |
5416 #endif // V8_TARGET_ARCH_MIPS | 5406 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |