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

Side by Side Diff: src/compiler/js-typed-lowering.h

Issue 1091723002: [turbofan] Make js-typed-lowering.h self contained. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | 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 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 #include "src/compiler/opcodes.h"
9 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
10 11
11 namespace v8 { 12 namespace v8 {
12 namespace internal { 13 namespace internal {
14
15 // Forward declarations.
16 class Factory;
17
18
13 namespace compiler { 19 namespace compiler {
14 20
15 // Forward declarations. 21 // Forward declarations.
16 class CommonOperatorBuilder; 22 class CommonOperatorBuilder;
17 class JSGraph; 23 class JSGraph;
18 class JSOperatorBuilder; 24 class JSOperatorBuilder;
19 class MachineOperatorBuilder; 25 class MachineOperatorBuilder;
20 26
21 27
22 // Lowers JS-level operators to simplified operators based on types. 28 // Lowers JS-level operators to simplified operators based on types.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 Type* one_range_; 81 Type* one_range_;
76 Type* zero_thirtyone_range_; 82 Type* zero_thirtyone_range_;
77 Type* shifted_int32_ranges_[4]; 83 Type* shifted_int32_ranges_[4];
78 }; 84 };
79 85
80 } // namespace compiler 86 } // namespace compiler
81 } // namespace internal 87 } // namespace internal
82 } // namespace v8 88 } // namespace v8
83 89
84 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 90 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698