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

Side by Side Diff: src/asmjs/asm-typer.h

Issue 2302283002: Forking the type system between Crankshaft & Turbofan. (Closed)
Patch Set: Nits. 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 | « BUILD.gn ('k') | src/ast/ast.h » ('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 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.h" 16 #include "src/ast/ast.h"
16 #include "src/effects.h" 17 #include "src/effects.h"
17 #include "src/type-info.h" 18 #include "src/type-info.h"
18 #include "src/types.h"
19 #include "src/zone-containers.h" 19 #include "src/zone-containers.h"
20 #include "src/zone.h" 20 #include "src/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
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/ast/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698