OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 } | 219 } |
220 | 220 |
221 | 221 |
222 void InternalArrayNArgumentsConstructorStub::InitializeInterfaceDescriptor( | 222 void InternalArrayNArgumentsConstructorStub::InitializeInterfaceDescriptor( |
223 Isolate* isolate, | 223 Isolate* isolate, |
224 CodeStubInterfaceDescriptor* descriptor) { | 224 CodeStubInterfaceDescriptor* descriptor) { |
225 InitializeInternalArrayConstructorDescriptor(isolate, descriptor, -1); | 225 InitializeInternalArrayConstructorDescriptor(isolate, descriptor, -1); |
226 } | 226 } |
227 | 227 |
228 | 228 |
229 void StoreGlobalStub::InitializeInterfaceDescriptor( | |
230 Isolate* isolate, | |
231 CodeStubInterfaceDescriptor* descriptor) { | |
232 static Register registers[] = { r1, r2, r0 }; | |
233 descriptor->register_param_count_ = 3; | |
234 descriptor->register_params_ = registers; | |
235 descriptor->deoptimization_handler_ = | |
236 FUNCTION_ADDR(StoreIC_MissFromStubFailure); | |
237 } | |
238 | |
239 | |
240 #define __ ACCESS_MASM(masm) | 229 #define __ ACCESS_MASM(masm) |
241 | 230 |
242 static void EmitIdenticalObjectComparison(MacroAssembler* masm, | 231 static void EmitIdenticalObjectComparison(MacroAssembler* masm, |
243 Label* slow, | 232 Label* slow, |
244 Condition cond); | 233 Condition cond); |
245 static void EmitSmiNonsmiComparison(MacroAssembler* masm, | 234 static void EmitSmiNonsmiComparison(MacroAssembler* masm, |
246 Register lhs, | 235 Register lhs, |
247 Register rhs, | 236 Register rhs, |
248 Label* lhs_not_nan, | 237 Label* lhs_not_nan, |
249 Label* slow, | 238 Label* slow, |
(...skipping 7185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7435 __ bind(&fast_elements_case); | 7424 __ bind(&fast_elements_case); |
7436 GenerateCase(masm, FAST_ELEMENTS); | 7425 GenerateCase(masm, FAST_ELEMENTS); |
7437 } | 7426 } |
7438 | 7427 |
7439 | 7428 |
7440 #undef __ | 7429 #undef __ |
7441 | 7430 |
7442 } } // namespace v8::internal | 7431 } } // namespace v8::internal |
7443 | 7432 |
7444 #endif // V8_TARGET_ARCH_ARM | 7433 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |