| 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_TYPER_H_ | 5 #ifndef V8_COMPILER_TYPER_H_ |
| 6 #define V8_COMPILER_TYPER_H_ | 6 #define V8_COMPILER_TYPER_H_ |
| 7 | 7 |
| 8 #include "src/compiler/graph.h" | 8 #include "src/compiler/graph.h" |
| 9 #include "src/compiler/operation-typer.h" | 9 #include "src/compiler/operation-typer.h" |
| 10 #include "src/types.h" | 10 #include "src/types.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 Isolate* const isolate_; | 42 Isolate* const isolate_; |
| 43 Graph* const graph_; | 43 Graph* const graph_; |
| 44 Decorator* decorator_; | 44 Decorator* decorator_; |
| 45 TypeCache const& cache_; | 45 TypeCache const& cache_; |
| 46 OperationTyper operation_typer_; | 46 OperationTyper operation_typer_; |
| 47 | 47 |
| 48 Type* singleton_false_; | 48 Type* singleton_false_; |
| 49 Type* singleton_true_; | 49 Type* singleton_true_; |
| 50 Type* singleton_the_hole_; | 50 Type* singleton_the_hole_; |
| 51 Type* signed32ish_; | |
| 52 Type* unsigned32ish_; | |
| 53 Type* falsish_; | 51 Type* falsish_; |
| 54 Type* truish_; | 52 Type* truish_; |
| 55 | 53 |
| 56 DISALLOW_COPY_AND_ASSIGN(Typer); | 54 DISALLOW_COPY_AND_ASSIGN(Typer); |
| 57 }; | 55 }; |
| 58 | 56 |
| 59 } // namespace compiler | 57 } // namespace compiler |
| 60 } // namespace internal | 58 } // namespace internal |
| 61 } // namespace v8 | 59 } // namespace v8 |
| 62 | 60 |
| 63 #endif // V8_COMPILER_TYPER_H_ | 61 #endif // V8_COMPILER_TYPER_H_ |
| OLD | NEW |