| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |