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

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

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Merge branch 'master' into zonefolder Created 4 years, 3 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/operator.h ('k') | src/compiler/register-allocator.h » ('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_OSR_H_ 5 #ifndef V8_COMPILER_OSR_H_
6 #define V8_COMPILER_OSR_H_ 6 #define V8_COMPILER_OSR_H_
7 7
8 #include "src/zone.h" 8 #include "src/zone/zone.h"
9 9
10 // TurboFan structures OSR graphs in a way that separates almost all phases of 10 // TurboFan structures OSR graphs in a way that separates almost all phases of
11 // compilation from OSR implementation details. This is accomplished with 11 // compilation from OSR implementation details. This is accomplished with
12 // special control nodes that are added at graph building time. In particular, 12 // special control nodes that are added at graph building time. In particular,
13 // the graph is built in such a way that typing still computes the best types 13 // the graph is built in such a way that typing still computes the best types
14 // and optimizations and lowering work unchanged. All that remains is to 14 // and optimizations and lowering work unchanged. All that remains is to
15 // deconstruct the OSR artifacts before scheduling and code generation. 15 // deconstruct the OSR artifacts before scheduling and code generation.
16 16
17 // Graphs built for OSR from the AstGraphBuilder are structured as follows: 17 // Graphs built for OSR from the AstGraphBuilder are structured as follows:
18 // Start 18 // Start
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 private: 117 private:
118 size_t parameter_count_; 118 size_t parameter_count_;
119 size_t stack_slot_count_; 119 size_t stack_slot_count_;
120 }; 120 };
121 121
122 } // namespace compiler 122 } // namespace compiler
123 } // namespace internal 123 } // namespace internal
124 } // namespace v8 124 } // namespace v8
125 125
126 #endif // V8_COMPILER_OSR_H_ 126 #endif // V8_COMPILER_OSR_H_
OLDNEW
« no previous file with comments | « src/compiler/operator.h ('k') | src/compiler/register-allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698