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

Side by Side Diff: src/compiler/pipeline.cc

Issue 1698113002: [turbofan] Make pipeline.h independent of compiler.h. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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 | « src/compiler/pipeline.h ('k') | 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 "src/compiler/pipeline.h" 5 #include "src/compiler/pipeline.h"
6 6
7 #include <fstream> // NOLINT(readability/streams) 7 #include <fstream> // NOLINT(readability/streams)
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "src/base/adapters.h" 10 #include "src/base/adapters.h"
(...skipping 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after
1495 1495
1496 if (FLAG_trace_turbo && !data->MayHaveUnverifiableGraph()) { 1496 if (FLAG_trace_turbo && !data->MayHaveUnverifiableGraph()) {
1497 TurboCfgFile tcf(data->isolate()); 1497 TurboCfgFile tcf(data->isolate());
1498 tcf << AsC1VRegisterAllocationData("CodeGen", 1498 tcf << AsC1VRegisterAllocationData("CodeGen",
1499 data->register_allocation_data()); 1499 data->register_allocation_data());
1500 } 1500 }
1501 1501
1502 data->DeleteRegisterAllocationZone(); 1502 data->DeleteRegisterAllocationZone();
1503 } 1503 }
1504 1504
1505 Isolate* Pipeline::isolate() const { return info()->isolate(); }
1506
1505 } // namespace compiler 1507 } // namespace compiler
1506 } // namespace internal 1508 } // namespace internal
1507 } // namespace v8 1509 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/pipeline.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698