| 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 "src/compiler/machine-operator.h" | 8 #include "src/compiler/machine-operator.h" |
| 9 #include "src/compiler/opcodes.h" | 9 #include "src/compiler/opcodes.h" |
| 10 #include "src/compiler/operator.h" |
| 11 #include "src/handles.h" |
| 10 #include "src/zone.h" | 12 #include "src/zone.h" |
| 11 | 13 |
| 12 namespace v8 { | 14 namespace v8 { |
| 13 namespace internal { | 15 namespace internal { |
| 14 | 16 |
| 15 // Forward declarations. | 17 // Forward declarations. |
| 16 template <class> | 18 template <class> |
| 17 class TypeImpl; | 19 class TypeImpl; |
| 18 struct ZoneTypeConfig; | 20 struct ZoneTypeConfig; |
| 19 typedef TypeImpl<ZoneTypeConfig> Type; | 21 typedef TypeImpl<ZoneTypeConfig> Type; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 #undef SIMPLE | 187 #undef SIMPLE |
| 186 | 188 |
| 187 private: | 189 private: |
| 188 Zone* zone_; | 190 Zone* zone_; |
| 189 }; | 191 }; |
| 190 } | 192 } |
| 191 } | 193 } |
| 192 } // namespace v8::internal::compiler | 194 } // namespace v8::internal::compiler |
| 193 | 195 |
| 194 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 196 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |