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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2309823002: [turbofan] put src/types.[h/cc] into src/compiler/types.[h/cc] (Closed)
Patch Set: Updates/comments. 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/operation-typer.cc ('k') | src/compiler/simplified-operator.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_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/compiler/operator.h" 10 #include "src/compiler/operator.h"
11 #include "src/compiler/types.h"
11 #include "src/handles.h" 12 #include "src/handles.h"
12 #include "src/machine-type.h" 13 #include "src/machine-type.h"
13 #include "src/objects.h" 14 #include "src/objects.h"
14 15
15 namespace v8 { 16 namespace v8 {
16 namespace internal { 17 namespace internal {
17 18
18 // Forward declarations. 19 // Forward declarations.
19 class Type;
20 class Zone; 20 class Zone;
21 21
22
23 namespace compiler { 22 namespace compiler {
24 23
25 // Forward declarations. 24 // Forward declarations.
26 class Operator; 25 class Operator;
27 struct SimplifiedOperatorGlobalCache; 26 struct SimplifiedOperatorGlobalCache;
28 27
29 enum BaseTaggedness : uint8_t { kUntaggedBase, kTaggedBase }; 28 enum BaseTaggedness : uint8_t { kUntaggedBase, kTaggedBase };
30 29
31 size_t hash_value(BaseTaggedness); 30 size_t hash_value(BaseTaggedness);
32 31
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 Zone* const zone_; 379 Zone* const zone_;
381 380
382 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 381 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
383 }; 382 };
384 383
385 } // namespace compiler 384 } // namespace compiler
386 } // namespace internal 385 } // namespace internal
387 } // namespace v8 386 } // namespace v8
388 387
389 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 388 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/operation-typer.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698