OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 SRC_ASMJS_ASM_TYPER_H_ | 5 #ifndef SRC_ASMJS_ASM_TYPER_H_ |
6 #define SRC_ASMJS_ASM_TYPER_H_ | 6 #define SRC_ASMJS_ASM_TYPER_H_ |
7 | 7 |
8 #include <cstdint> | 8 #include <cstdint> |
9 #include <string> | 9 #include <string> |
10 #include <unordered_set> | 10 #include <unordered_set> |
11 | 11 |
12 #include "src/allocation.h" | 12 #include "src/allocation.h" |
13 #include "src/asmjs/asm-types.h" | 13 #include "src/asmjs/asm-types.h" |
14 #include "src/ast/ast-type-bounds.h" | 14 #include "src/ast/ast-type-bounds.h" |
15 #include "src/ast/ast-types.h" | 15 #include "src/ast/ast-types.h" |
16 #include "src/ast/ast.h" | 16 #include "src/ast/ast.h" |
17 #include "src/effects.h" | 17 #include "src/effects.h" |
18 #include "src/type-info.h" | 18 #include "src/type-info.h" |
19 #include "src/zone-containers.h" | 19 #include "src/zone/zone-containers.h" |
20 #include "src/zone.h" | 20 #include "src/zone/zone.h" |
21 | 21 |
22 namespace v8 { | 22 namespace v8 { |
23 namespace internal { | 23 namespace internal { |
24 namespace wasm { | 24 namespace wasm { |
25 | 25 |
26 class AsmType; | 26 class AsmType; |
27 class AsmTyperHarnessBuilder; | 27 class AsmTyperHarnessBuilder; |
28 | 28 |
29 class AsmTyper final { | 29 class AsmTyper final { |
30 public: | 30 public: |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 StdlibSet stdlib_uses_; | 328 StdlibSet stdlib_uses_; |
329 | 329 |
330 DISALLOW_IMPLICIT_CONSTRUCTORS(AsmTyper); | 330 DISALLOW_IMPLICIT_CONSTRUCTORS(AsmTyper); |
331 }; | 331 }; |
332 | 332 |
333 } // namespace wasm | 333 } // namespace wasm |
334 } // namespace internal | 334 } // namespace internal |
335 } // namespace v8 | 335 } // namespace v8 |
336 | 336 |
337 #endif // SRC_ASMJS_ASM_TYPER_H_ | 337 #endif // SRC_ASMJS_ASM_TYPER_H_ |
OLD | NEW |