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

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

Issue 679793003: [turbofan] reduce allocations outside of pipeline (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | « test/cctest/compiler/function-tester.h ('k') | test/cctest/compiler/test-changes-lowering.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 "test/cctest/compiler/graph-builder-tester.h" 5 #include "test/cctest/compiler/graph-builder-tester.h"
6 6
7 #include "src/compiler/linkage.h" 7 #include "src/compiler/linkage.h"
8 #include "src/compiler/pipeline.h" 8 #include "src/compiler/pipeline.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 } 30 }
31 31
32 32
33 byte* MachineCallHelper::Generate() { 33 byte* MachineCallHelper::Generate() {
34 DCHECK(parameter_count() == 0 || parameters_ != NULL); 34 DCHECK(parameter_count() == 0 || parameters_ != NULL);
35 if (!Pipeline::SupportedBackend()) return NULL; 35 if (!Pipeline::SupportedBackend()) return NULL;
36 if (code_.is_null()) { 36 if (code_.is_null()) {
37 Zone* zone = graph_->zone(); 37 Zone* zone = graph_->zone();
38 CompilationInfo info(zone->isolate(), zone); 38 CompilationInfo info(zone->isolate(), zone);
39 Linkage linkage(&info, 39 Linkage linkage(zone,
40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_)); 40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_));
41 Pipeline pipeline(&info); 41 Pipeline pipeline(&info);
42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_); 42 code_ = pipeline.GenerateCodeForMachineGraph(&linkage, graph_);
43 } 43 }
44 return code_.ToHandleChecked()->entry(); 44 return code_.ToHandleChecked()->entry();
45 } 45 }
46 46
47 47
48 Node* MachineCallHelper::Parameter(size_t index) { 48 Node* MachineCallHelper::Parameter(size_t index) {
49 DCHECK_NE(NULL, parameters_); 49 DCHECK_NE(NULL, parameters_);
50 DCHECK(index < parameter_count()); 50 DCHECK(index < parameter_count());
51 return parameters_[index]; 51 return parameters_[index];
52 } 52 }
53 53
54 } // namespace compiler 54 } // namespace compiler
55 } // namespace internal 55 } // namespace internal
56 } // namespace v8 56 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/compiler/function-tester.h ('k') | test/cctest/compiler/test-changes-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698