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

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

Issue 416233003: Extend TF test coverage to unsupported targets. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Properly disabled ARM64 Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/pipeline.h » ('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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/assembler.h" 7 #include "src/assembler.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/compiler/linkage.h" 9 #include "src/compiler/linkage.h"
10 #include "src/compiler/linkage-impl.h" 10 #include "src/compiler/linkage-impl.h"
11 #include "src/zone.h" 11 #include "src/zone.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 namespace compiler { 15 namespace compiler {
16 16
17 #if V8_TURBOFAN_TARGET
18
17 struct LinkageHelperTraits { 19 struct LinkageHelperTraits {
18 static Register ReturnValueReg() { return x0; } 20 static Register ReturnValueReg() { return x0; }
19 static Register ReturnValue2Reg() { return x1; } 21 static Register ReturnValue2Reg() { return x1; }
20 static Register JSCallFunctionReg() { return x1; } 22 static Register JSCallFunctionReg() { return x1; }
21 static Register ContextReg() { return cp; } 23 static Register ContextReg() { return cp; }
22 static Register RuntimeCallFunctionReg() { return x1; } 24 static Register RuntimeCallFunctionReg() { return x1; }
23 static Register RuntimeCallArgCountReg() { return x0; } 25 static Register RuntimeCallArgCountReg() { return x0; }
24 static RegList CCalleeSaveRegisters() { 26 static RegList CCalleeSaveRegisters() {
25 // TODO(dcarney): correct callee saved registers. 27 // TODO(dcarney): correct callee saved registers.
26 return 0; 28 return 0;
(...skipping 27 matching lines...) Expand all
54 this->info_->zone(), descriptor, stack_parameter_count); 56 this->info_->zone(), descriptor, stack_parameter_count);
55 } 57 }
56 58
57 59
58 CallDescriptor* Linkage::GetSimplifiedCDescriptor( 60 CallDescriptor* Linkage::GetSimplifiedCDescriptor(
59 Zone* zone, int num_params, MachineRepresentation return_type, 61 Zone* zone, int num_params, MachineRepresentation return_type,
60 const MachineRepresentation* param_types) { 62 const MachineRepresentation* param_types) {
61 return LinkageHelper::GetSimplifiedCDescriptor<LinkageHelperTraits>( 63 return LinkageHelper::GetSimplifiedCDescriptor<LinkageHelperTraits>(
62 zone, num_params, return_type, param_types); 64 zone, num_params, return_type, param_types);
63 } 65 }
66
67 #endif // V8_TURBOFAN_TARGET
64 } 68 }
65 } 69 }
66 } // namespace v8::internal::compiler 70 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/arm64/instruction-selector-arm64.cc ('k') | src/compiler/pipeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698