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

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

Issue 438243004: Prevent direct inclusion of headers from TF. (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 | « src/DEPS ('k') | 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 "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/compiler.h" 10 #include "src/compiler.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 static inline bool SupportedTarget() { return V8_TURBOFAN_TARGET != 0; } 43 static inline bool SupportedTarget() { return V8_TURBOFAN_TARGET != 0; }
44 44
45 static inline bool VerifyGraphs() { 45 static inline bool VerifyGraphs() {
46 #ifdef DEBUG 46 #ifdef DEBUG
47 return true; 47 return true;
48 #else 48 #else
49 return FLAG_turbo_verify; 49 return FLAG_turbo_verify;
50 #endif 50 #endif
51 } 51 }
52 52
53 static void SetUp();
54 static void TearDown();
55
53 private: 56 private:
54 CompilationInfo* info_; 57 CompilationInfo* info_;
55 58
56 Schedule* ComputeSchedule(Graph* graph); 59 Schedule* ComputeSchedule(Graph* graph);
57 void VerifyAndPrintGraph(Graph* graph, const char* phase); 60 void VerifyAndPrintGraph(Graph* graph, const char* phase);
58 Handle<Code> GenerateCode(Linkage* linkage, Graph* graph, Schedule* schedule, 61 Handle<Code> GenerateCode(Linkage* linkage, Graph* graph, Schedule* schedule,
59 SourcePositionTable* source_positions); 62 SourcePositionTable* source_positions);
60 }; 63 };
61 } 64 }
62 } 65 }
63 } // namespace v8::internal::compiler 66 } // namespace v8::internal::compiler
64 67
65 #endif // V8_COMPILER_PIPELINE_H_ 68 #endif // V8_COMPILER_PIPELINE_H_
OLDNEW
« no previous file with comments | « src/DEPS ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698