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

Side by Side Diff: src/asmjs/asm-wasm-builder.h

Issue 2398023002: [wasm] asm.js - Parse and convert asm.js to wasm a function at a time. (Closed)
Patch Set: fix Created 4 years 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 | « src/asmjs/asm-typer.cc ('k') | src/asmjs/asm-wasm-builder.cc » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_ASMJS_ASM_WASM_BUILDER_H_ 5 #ifndef V8_ASMJS_ASM_WASM_BUILDER_H_
6 #define V8_ASMJS_ASM_WASM_BUILDER_H_ 6 #define V8_ASMJS_ASM_WASM_BUILDER_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/asmjs/asm-typer.h" 9 #include "src/asmjs/asm-typer.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
11 #include "src/wasm/wasm-module-builder.h" 11 #include "src/wasm/wasm-module-builder.h"
12 #include "src/zone/zone.h" 12 #include "src/zone/zone.h"
13 13
14 namespace v8 { 14 namespace v8 {
15 namespace internal { 15 namespace internal {
16 16
17 class FunctionLiteral; 17 class FunctionLiteral;
18 class Script;
18 19
19 namespace wasm { 20 namespace wasm {
20 21
21 class AsmWasmBuilder { 22 class AsmWasmBuilder {
22 public: 23 public:
23 struct Result { 24 struct Result {
24 ZoneBuffer* module_bytes; 25 ZoneBuffer* module_bytes;
25 ZoneBuffer* asm_offset_table; 26 ZoneBuffer* asm_offset_table;
27 bool success;
26 }; 28 };
27 29
28 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone, FunctionLiteral* root, 30 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone,
29 AsmTyper* typer); 31 AstValueFactory* ast_value_factory, Script* script,
32 FunctionLiteral* root);
30 Result Run(Handle<FixedArray>* foreign_args); 33 Result Run(Handle<FixedArray>* foreign_args);
31 34
32 static const char* foreign_init_name; 35 static const char* foreign_init_name;
33 static const char* single_function_name; 36 static const char* single_function_name;
34 37
38 const AsmTyper* typer() { return &typer_; }
39
35 private: 40 private:
36 Isolate* isolate_; 41 Isolate* isolate_;
37 Zone* zone_; 42 Zone* zone_;
43 AstValueFactory* ast_value_factory_;
44 Script* script_;
38 FunctionLiteral* literal_; 45 FunctionLiteral* literal_;
39 AsmTyper* typer_; 46 AsmTyper typer_;
40 }; 47 };
41 } // namespace wasm 48 } // namespace wasm
42 } // namespace internal 49 } // namespace internal
43 } // namespace v8 50 } // namespace v8
44 51
45 #endif // V8_WASM_ASM_WASM_BUILDER_H_ 52 #endif // V8_WASM_ASM_WASM_BUILDER_H_
OLDNEW
« no previous file with comments | « src/asmjs/asm-typer.cc ('k') | src/asmjs/asm-wasm-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698