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

Side by Side Diff: src/arm/interface-descriptors-arm.cc

Issue 587203002: ExtendStorageStub added, it is aimed for extending objects backing store when it runs out of space. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | src/arm64/interface-descriptors-arm64.cc » ('j') | src/hydrogen.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 13
14 const Register CallInterfaceDescriptor::ContextRegister() { return cp; } 14 const Register CallInterfaceDescriptor::ContextRegister() { return cp; }
15 15
16 16
17 const Register LoadDescriptor::ReceiverRegister() { return r1; } 17 const Register LoadDescriptor::ReceiverRegister() { return r1; }
18 const Register LoadDescriptor::NameRegister() { return r2; } 18 const Register LoadDescriptor::NameRegister() { return r2; }
19 19
20 20
21 const Register VectorLoadICTrampolineDescriptor::SlotRegister() { return r0; } 21 const Register VectorLoadICTrampolineDescriptor::SlotRegister() { return r0; }
22 22
23 23
24 const Register VectorLoadICDescriptor::VectorRegister() { return r3; } 24 const Register VectorLoadICDescriptor::VectorRegister() { return r3; }
25 25
26 26
27 const Register StoreDescriptor::ReceiverRegister() { return r1; } 27 const Register StoreDescriptor::ReceiverRegister() { return r1; }
28 const Register StoreDescriptor::NameRegister() { return r2; } 28 const Register StoreDescriptor::NameRegister() { return r2; }
29 const Register StoreDescriptor::ValueRegister() { return r0; } 29 const Register StoreDescriptor::ValueRegister() { return r0; }
30 const Register ExtendStorageDescriptor::MapRegister() {
31 return StoreDescriptor::NameRegister();
32 }
30 33
31 34
32 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return r3; } 35 const Register ElementTransitionAndStoreDescriptor::MapRegister() { return r3; }
33 36
34 37
35 const Register InstanceofDescriptor::left() { return r0; } 38 const Register InstanceofDescriptor::left() { return r0; }
36 const Register InstanceofDescriptor::right() { return r1; } 39 const Register InstanceofDescriptor::right() { return r1; }
37 40
38 41
39 const Register ArgumentsAccessReadDescriptor::index() { return r1; } 42 const Register ArgumentsAccessReadDescriptor::index() { return r1; }
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 Representation::Tagged(), // holder 317 Representation::Tagged(), // holder
315 Representation::External(), // api_function_address 318 Representation::External(), // api_function_address
316 }; 319 };
317 data->Initialize(arraysize(registers), registers, representations, 320 data->Initialize(arraysize(registers), registers, representations,
318 &default_descriptor); 321 &default_descriptor);
319 } 322 }
320 } 323 }
321 } // namespace v8::internal 324 } // namespace v8::internal
322 325
323 #endif // V8_TARGET_ARCH_ARM 326 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/interface-descriptors-arm64.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698