OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/assembler.h" | 5 #include "src/assembler.h" |
6 #include "src/code-stubs.h" | 6 #include "src/code-stubs.h" |
7 #include "src/compiler/linkage.h" | 7 #include "src/compiler/linkage.h" |
8 #include "src/compiler/linkage-impl.h" | 8 #include "src/compiler/linkage-impl.h" |
9 #include "src/zone.h" | 9 #include "src/zone.h" |
10 | 10 |
11 namespace v8 { | 11 namespace v8 { |
12 namespace internal { | 12 namespace internal { |
13 namespace compiler { | 13 namespace compiler { |
14 | 14 |
15 struct Arm64LinkageHelperTraits { | 15 struct Arm64LinkageHelperTraits { |
16 static Register ReturnValueReg() { return x0; } | 16 static Register ReturnValueReg() { return x0; } |
17 static Register ReturnValue2Reg() { return x1; } | 17 static Register ReturnValue2Reg() { return x1; } |
18 static Register JSCallFunctionReg() { return x1; } | 18 static Register JSCallFunctionReg() { return x1; } |
19 static Register ContextReg() { return cp; } | 19 static Register ContextReg() { return cp; } |
20 static Register RuntimeCallFunctionReg() { return x1; } | 20 static Register RuntimeCallFunctionReg() { return x1; } |
21 static Register RuntimeCallArgCountReg() { return x0; } | 21 static Register RuntimeCallArgCountReg() { return x0; } |
22 static RegList CCalleeSaveRegisters() { | 22 static RegList CCalleeSaveRegisters() { |
23 // TODO(dcarney): correct callee saved registers. | 23 return (1 << x19.code()) | (1 << x20.code()) | (1 << x21.code()) | |
24 return 0; | 24 (1 << x22.code()) | (1 << x23.code()) | (1 << x24.code()) | |
| 25 (1 << x25.code()) | (1 << x26.code()) | (1 << x27.code()) | |
| 26 (1 << x28.code()) | (1 << x29.code()) | (1 << x30.code()); |
| 27 } |
| 28 static RegList CCalleeSaveFPRegisters() { |
| 29 return (1 << d8.code()) | (1 << d9.code()) | (1 << d10.code()) | |
| 30 (1 << d11.code()) | (1 << d12.code()) | (1 << d13.code()) | |
| 31 (1 << d14.code()) | (1 << d15.code()); |
25 } | 32 } |
26 static Register CRegisterParameter(int i) { | 33 static Register CRegisterParameter(int i) { |
27 static Register register_parameters[] = {x0, x1, x2, x3, x4, x5, x6, x7}; | 34 static Register register_parameters[] = {x0, x1, x2, x3, x4, x5, x6, x7}; |
28 return register_parameters[i]; | 35 return register_parameters[i]; |
29 } | 36 } |
30 static int CRegisterParametersLength() { return 8; } | 37 static int CRegisterParametersLength() { return 8; } |
31 static int CStackBackingStoreLength() { return 0; } | 38 static int CStackBackingStoreLength() { return 0; } |
32 }; | 39 }; |
33 | 40 |
34 | 41 |
(...skipping 25 matching lines...) Expand all Loading... |
60 | 67 |
61 | 68 |
62 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 69 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
63 const MachineSignature* sig) { | 70 const MachineSignature* sig) { |
64 return LH::GetSimplifiedCDescriptor(zone, sig); | 71 return LH::GetSimplifiedCDescriptor(zone, sig); |
65 } | 72 } |
66 | 73 |
67 } // namespace compiler | 74 } // namespace compiler |
68 } // namespace internal | 75 } // namespace internal |
69 } // namespace v8 | 76 } // namespace v8 |
OLD | NEW |