| OLD | NEW |
| 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 CompilationInfo; |
| 18 class Script; | |
| 19 | 18 |
| 20 namespace wasm { | 19 namespace wasm { |
| 21 | 20 |
| 22 class AsmWasmBuilder { | 21 class AsmWasmBuilder { |
| 23 public: | 22 public: |
| 24 struct Result { | 23 struct Result { |
| 25 ZoneBuffer* module_bytes; | 24 ZoneBuffer* module_bytes; |
| 26 ZoneBuffer* asm_offset_table; | 25 ZoneBuffer* asm_offset_table; |
| 27 bool success; | 26 bool success; |
| 28 }; | 27 }; |
| 29 | 28 |
| 30 explicit AsmWasmBuilder(Isolate* isolate, Zone* zone, | 29 explicit AsmWasmBuilder(CompilationInfo* info); |
| 31 AstValueFactory* ast_value_factory, | |
| 32 Handle<Script> script, FunctionLiteral* root); | |
| 33 Result Run(Handle<FixedArray>* foreign_args); | 30 Result Run(Handle<FixedArray>* foreign_args); |
| 34 | 31 |
| 35 static const char* foreign_init_name; | 32 static const char* foreign_init_name; |
| 36 static const char* single_function_name; | 33 static const char* single_function_name; |
| 37 | 34 |
| 38 const AsmTyper* typer() { return &typer_; } | 35 const AsmTyper* typer() { return &typer_; } |
| 39 | 36 |
| 40 private: | 37 private: |
| 41 Isolate* isolate_; | 38 CompilationInfo* info_; |
| 42 Zone* zone_; | |
| 43 AstValueFactory* ast_value_factory_; | |
| 44 Handle<Script> script_; | |
| 45 FunctionLiteral* literal_; | |
| 46 AsmTyper typer_; | 39 AsmTyper typer_; |
| 47 }; | 40 }; |
| 48 } // namespace wasm | 41 } // namespace wasm |
| 49 } // namespace internal | 42 } // namespace internal |
| 50 } // namespace v8 | 43 } // namespace v8 |
| 51 | 44 |
| 52 #endif // V8_WASM_ASM_WASM_BUILDER_H_ | 45 #endif // V8_WASM_ASM_WASM_BUILDER_H_ |
| OLD | NEW |