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

Side by Side Diff: src/compiler/arm/linkage-arm.cc

Issue 1254293006: [interpreter] Change interpreter to use an BytecodeArray pointer and and offset. (Closed) Base URL: ssh://rmcilroy.lon.corp.google.com///usr/local/google/code/v8_full/v8@master
Patch Set: Fix MIPS merge error Created 5 years, 4 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
« no previous file with comments | « no previous file | src/compiler/arm64/linkage-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 ArmLinkageHelperTraits { 15 struct ArmLinkageHelperTraits {
16 static Register ReturnValueReg() { return r0; } 16 static Register ReturnValueReg() { return r0; }
17 static Register ReturnValue2Reg() { return r1; } 17 static Register ReturnValue2Reg() { return r1; }
18 static Register JSCallFunctionReg() { return r1; } 18 static Register JSCallFunctionReg() { return r1; }
19 static Register ContextReg() { return cp; } 19 static Register ContextReg() { return cp; }
20 static Register InterpreterBytecodePointerReg() { return r6; } 20 static Register InterpreterBytecodeOffsetReg() { return r5; }
21 static Register InterpreterBytecodeArrayReg() { return r6; }
21 static Register InterpreterDispatchTableReg() { return r8; } 22 static Register InterpreterDispatchTableReg() { return r8; }
22 static Register RuntimeCallFunctionReg() { return r1; } 23 static Register RuntimeCallFunctionReg() { return r1; }
23 static Register RuntimeCallArgCountReg() { return r0; } 24 static Register RuntimeCallArgCountReg() { return r0; }
24 static RegList CCalleeSaveRegisters() { 25 static RegList CCalleeSaveRegisters() {
25 return r4.bit() | r5.bit() | r6.bit() | r7.bit() | r8.bit() | r9.bit() | 26 return r4.bit() | r5.bit() | r6.bit() | r7.bit() | r8.bit() | r9.bit() |
26 r10.bit(); 27 r10.bit();
27 } 28 }
28 static RegList CCalleeSaveFPRegisters() { 29 static RegList CCalleeSaveFPRegisters() {
29 return (1 << d8.code()) | (1 << d9.code()) | (1 << d10.code()) | 30 return (1 << d8.code()) | (1 << d9.code()) | (1 << d10.code()) |
30 (1 << d11.code()) | (1 << d12.code()) | (1 << d13.code()) | 31 (1 << d11.code()) | (1 << d12.code()) | (1 << d13.code()) |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 73 }
73 74
74 75
75 CallDescriptor* Linkage::GetInterpreterDispatchDescriptor(Zone* zone) { 76 CallDescriptor* Linkage::GetInterpreterDispatchDescriptor(Zone* zone) {
76 return LH::GetInterpreterDispatchDescriptor(zone); 77 return LH::GetInterpreterDispatchDescriptor(zone);
77 } 78 }
78 79
79 } // namespace compiler 80 } // namespace compiler
80 } // namespace internal 81 } // namespace internal
81 } // namespace v8 82 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler/arm64/linkage-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698