/external/v8/src/compiler/ |
wasm-compiler.cc | 5 #include "src/compiler/wasm-compiler.h" 33 #include "src/wasm/ast-decoder.h" 34 #include "src/wasm/wasm-module.h" 35 #include "src/wasm/wasm-opcodes.h" 49 const Operator* UnsupportedOpcode(wasm::WasmOpcode opcode) { 50 if (wasm::WasmOpcodes::IsSupported(opcode)) { 53 wasm::WasmOpcodes::OpcodeName(opcode)); 56 wasm::WasmOpcodes::OpcodeName(opcode)) [all...] |
wasm-compiler.h | 10 #include "src/wasm/wasm-opcodes.h" 23 namespace wasm { namespace in namespace:v8::internal 24 // Forward declarations for some WASM data structures. 29 // Expose {Node} and {Graph} opaquely as {wasm::TFNode} and {wasm::TFGraph}. 36 Handle<Code> CompileWasmFunction(wasm::ErrorThrower& thrower, Isolate* isolate, 37 wasm::ModuleEnv* module_env, 38 const wasm::WasmFunction& function, int index); 40 // Wraps a JS function, producing a code object that can be called from WASM [all...] |
/external/v8/test/mjsunit/wasm/ |
compile-run-basic.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
verify-function-simple.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
instantiate-module-basic.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
unreachable.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
verify-function-basic-errors.js | 5 // Flags: --expose-wasm
|
verify-module-basic-errors.js | 5 // Flags: --expose-wasm
|
divrem-trap.js | 5 // Flags: --expose-wasm --expose-gc --allow-natives-syntax 7 load("test/mjsunit/wasm/wasm-constants.js");
|
ffi-error.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
stackwalk.js | 5 // Flags: --expose-wasm --expose-gc --allow-natives-syntax 7 load("test/mjsunit/wasm/wasm-constants.js");
|
calls.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
params.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
module-memory.js | 5 // Flags: --expose-wasm --expose-gc --stress-compaction 7 load("test/mjsunit/wasm/wasm-constants.js");
|
ffi.js | 5 // Flags: --expose-wasm 7 load("test/mjsunit/wasm/wasm-constants.js");
|
/external/v8/src/wasm/ |
asm-wasm-builder.h | 9 #include "src/wasm/encoder.h" 17 namespace wasm { namespace in namespace:v8::internal 29 } // namespace wasm
|
module-decoder.h | 8 #include "src/wasm/ast-decoder.h" 9 #include "src/wasm/wasm-module.h" 13 namespace wasm { namespace in namespace:v8::internal 14 // Decodes the bytes of a WASM module between {module_start} and {module_end}. 24 // Decodes the bytes of a WASM function between 29 } // namespace wasm
|
wasm-result.cc | 5 #include "src/wasm/wasm-result.h" 17 namespace wasm { namespace in namespace:v8::internal 51 } // namespace wasm
|
wasm-js.cc | 17 #include "src/wasm/asm-wasm-builder.h" 18 #include "src/wasm/encoder.h" 19 #include "src/wasm/module-decoder.h" 20 #include "src/wasm/wasm-js.h" 21 #include "src/wasm/wasm-module.h" 22 #include "src/wasm/wasm-result.h [all...] |
wasm-macro-gen.h | 8 #include "src/wasm/wasm-opcodes.h" 10 // Convenience macros for building Wasm bytecode directly into a byte array. 89 v8::internal::wasm::WasmOpcodes::LoadStoreOpcodeOf(type, false)), \ 90 v8::internal::wasm::WasmOpcodes::LoadStoreAccessOf(false), index 93 v8::internal::wasm::WasmOpcodes::LoadStoreOpcodeOf(type, true)), \ 94 v8::internal::wasm::WasmOpcodes::LoadStoreAccessOf(false), index, val 97 v8::internal::wasm::WasmOpcodes::LoadStoreOpcodeOf(type, false)), \ 98 v8::internal::wasm::WasmOpcodes::LoadStoreAccessOf(true), \ 102 v8::internal::wasm::WasmOpcodes::LoadStoreOpcodeOf(type, true)), [all...] |
wasm-opcodes.cc | 5 #include "src/wasm/wasm-opcodes.h" 10 namespace wasm { namespace in namespace:v8::internal 131 } // namespace wasm
|
wasm-result.h | 17 namespace wasm { namespace in namespace:v8::internal 112 } // namespace wasm
|
ast-decoder.h | 9 #include "src/wasm/wasm-opcodes.h" 10 #include "src/wasm/wasm-result.h" 19 namespace wasm { namespace in namespace:v8::internal 112 } // namespace wasm
|
/external/v8/test/mjsunit/regress/ |
regress-575364.js | 5 // Flags: --expose-wasm
|
/external/v8/test/cctest/wasm/ |
test-signatures.h | 9 #include "src/wasm/wasm-opcodes.h" 13 namespace wasm { namespace in namespace:v8::internal 107 } // namespace wasm
|