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

Side by Side Diff: test/cctest/compiler/graph-builder-tester.cc

Issue 457343003: Disable code generation in tests that use GraphBuilderTester on platforms that have no TF backend. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | « no previous file | no next file » | 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 "test/cctest/compiler/graph-builder-tester.h" 5 #include "test/cctest/compiler/graph-builder-tester.h"
6 #include "src/compiler/pipeline.h" 6 #include "src/compiler/pipeline.h"
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 13 matching lines...) Expand all
24 if (parameter_count() == 0) return; 24 if (parameter_count() == 0) return;
25 parameters_ = graph_->zone()->NewArray<Node*>(parameter_count()); 25 parameters_ = graph_->zone()->NewArray<Node*>(parameter_count());
26 for (int i = 0; i < parameter_count(); ++i) { 26 for (int i = 0; i < parameter_count(); ++i) {
27 parameters_[i] = builder->NewNode(common->Parameter(i), graph_->start()); 27 parameters_[i] = builder->NewNode(common->Parameter(i), graph_->start());
28 } 28 }
29 } 29 }
30 30
31 31
32 byte* MachineCallHelper::Generate() { 32 byte* MachineCallHelper::Generate() {
33 DCHECK(parameter_count() == 0 || parameters_ != NULL); 33 DCHECK(parameter_count() == 0 || parameters_ != NULL);
34 if (!Pipeline::SupportedBackend()) return NULL;
34 if (code_.is_null()) { 35 if (code_.is_null()) {
35 Zone* zone = graph_->zone(); 36 Zone* zone = graph_->zone();
36 CompilationInfo info(zone->isolate(), zone); 37 CompilationInfo info(zone->isolate(), zone);
37 Linkage linkage(&info, call_descriptor_builder_->BuildCallDescriptor(zone)); 38 Linkage linkage(&info, call_descriptor_builder_->BuildCallDescriptor(zone));
38 Pipeline pipeline(&info); 39 Pipeline pipeline(&info);
39 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_); 40 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_);
40 } 41 }
41 return code_.ToHandleChecked()->entry(); 42 return code_.ToHandleChecked()->entry();
42 } 43 }
43 44
(...skipping 11 matching lines...) Expand all
55 56
56 Node* MachineCallHelper::Parameter(int offset) { 57 Node* MachineCallHelper::Parameter(int offset) {
57 DCHECK_NE(NULL, parameters_); 58 DCHECK_NE(NULL, parameters_);
58 DCHECK(0 <= offset && offset < parameter_count()); 59 DCHECK(0 <= offset && offset < parameter_count());
59 return parameters_[offset]; 60 return parameters_[offset];
60 } 61 }
61 62
62 } // namespace compiler 63 } // namespace compiler
63 } // namespace internal 64 } // namespace internal
64 } // namespace v8 65 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698