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

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

Issue 666223003: Simplify TurboFan's c1visualizer file handling. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | src/compiler/pipeline.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 #ifndef V8_COMPILER_PIPELINE_H_ 5 #ifndef V8_COMPILER_PIPELINE_H_
6 #define V8_COMPILER_PIPELINE_H_ 6 #define V8_COMPILER_PIPELINE_H_
7 7
8 #include <fstream> // NOLINT(readability/streams)
9
10 #include "src/v8.h" 8 #include "src/v8.h"
11 9
12 #include "src/compiler.h" 10 #include "src/compiler.h"
13 11
14 // Note: TODO(turbofan) implies a performance improvement opportunity, 12 // Note: TODO(turbofan) implies a performance improvement opportunity,
15 // and TODO(name) implies an incomplete implementation 13 // and TODO(name) implies an incomplete implementation
16 14
17 namespace v8 { 15 namespace v8 {
18 namespace internal { 16 namespace internal {
19 namespace compiler { 17 namespace compiler {
(...skipping 26 matching lines...) Expand all
46 static void TearDown(); 44 static void TearDown();
47 45
48 private: 46 private:
49 CompilationInfo* info_; 47 CompilationInfo* info_;
50 48
51 CompilationInfo* info() const { return info_; } 49 CompilationInfo* info() const { return info_; }
52 Isolate* isolate() { return info_->isolate(); } 50 Isolate* isolate() { return info_->isolate(); }
53 Zone* zone() { return info_->zone(); } 51 Zone* zone() { return info_->zone(); }
54 52
55 Schedule* ComputeSchedule(ZonePool* zone_pool, Graph* graph); 53 Schedule* ComputeSchedule(ZonePool* zone_pool, Graph* graph);
56 void OpenTurboCfgFile(std::ofstream* stream);
57 void PrintCompilationStart();
58 void PrintScheduleAndInstructions(const char* phase, const Schedule* schedule,
59 const SourcePositionTable* positions,
60 const InstructionSequence* instructions);
61 void PrintAllocator(const char* phase, const RegisterAllocator* allocator);
62 void VerifyAndPrintGraph(Graph* graph, const char* phase, 54 void VerifyAndPrintGraph(Graph* graph, const char* phase,
63 bool untyped = false); 55 bool untyped = false);
64 Handle<Code> GenerateCode(ZonePool* zone_pool, Linkage* linkage, Graph* graph, 56 Handle<Code> GenerateCode(ZonePool* zone_pool, Linkage* linkage, Graph* graph,
65 Schedule* schedule, 57 Schedule* schedule,
66 SourcePositionTable* source_positions); 58 SourcePositionTable* source_positions);
67 }; 59 };
68 } 60 }
69 } 61 }
70 } // namespace v8::internal::compiler 62 } // namespace v8::internal::compiler
71 63
72 #endif // V8_COMPILER_PIPELINE_H_ 64 #endif // V8_COMPILER_PIPELINE_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698