OLD | NEW |
(Empty) | |
| 1 //===- subzero/src/WasmTranslator.h - WASM to Subzero Translation ---------===// |
| 2 // |
| 3 // The Subzero Code Generator |
| 4 // |
| 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. |
| 7 // |
| 8 //===----------------------------------------------------------------------===// |
| 9 /// |
| 10 /// \file |
| 11 /// \brief Defines a driver for translating Wasm bitcode into PNaCl bitcode. |
| 12 /// |
| 13 /// The translator uses V8's WebAssembly decoder to handle the binary Wasm |
| 14 /// format but replaces the usual TurboFan builder with a new PNaCl builder. |
| 15 /// |
| 16 //===----------------------------------------------------------------------===// |
| 17 |
| 18 #ifndef SUBZERO_SRC_WASMTRANSLATOR_H |
| 19 #define SUBZERO_SRC_WASMTRANSLATOR_H |
| 20 |
| 21 #include "IceGlobalContext.h" |
| 22 #include "IceTranslator.h" |
| 23 |
| 24 namespace v8 { |
| 25 namespace internal { |
| 26 class Zone; |
| 27 namespace wasm { |
| 28 class FunctionEnv; |
| 29 } // end of namespace wasm |
| 30 } // end of namespace internal |
| 31 } // end of namespace v8 |
| 32 |
| 33 namespace Ice { |
| 34 |
| 35 class WasmTranslator : public Translator { |
| 36 WasmTranslator() = delete; |
| 37 WasmTranslator(const WasmTranslator &) = delete; |
| 38 WasmTranslator &operator=(const WasmTranslator &) = delete; |
| 39 |
| 40 template <typename F = std::function<void(Ostream &)>> void log(F Fn) { |
| 41 if (BuildDefs::dump() && (Ctx->getFlags().getVerbose() & IceV_Wasm)) { |
| 42 Fn(Ctx->getStrDump()); |
| 43 Ctx->getStrDump().flush(); |
| 44 } |
| 45 } |
| 46 |
| 47 public: |
| 48 explicit WasmTranslator(GlobalContext *Ctx); |
| 49 |
| 50 void translate(const std::string &IRFilename, |
| 51 std::unique_ptr<llvm::DataStreamer> InputStream); |
| 52 |
| 53 /// Translates a single Wasm function. |
| 54 /// |
| 55 /// Parameters: |
| 56 /// Zone - an arena for the V8 code to allocate from. |
| 57 /// Env - information about the function (signature, variable count, etc.). |
| 58 /// Base - a pointer to the start of the Wasm module. |
| 59 /// Start - a pointer to the start of the function within the module. |
| 60 /// End - a pointer to the end of the function. |
| 61 std::unique_ptr<Cfg> translateFunction(v8::internal::Zone *Zone, |
| 62 v8::internal::wasm::FunctionEnv *Env, |
| 63 const uint8_t *Base, |
| 64 const uint8_t *Start, |
| 65 const uint8_t *End); |
| 66 |
| 67 private: |
| 68 std::unique_ptr<uint8_t[]> Buffer; |
| 69 SizeT BufferSize; |
| 70 }; |
| 71 } |
| 72 #endif // SUBZERO_SRC_WASMTRANSLATOR_H |
OLD | NEW |