Home | History | Annotate | Download | only in wasm

Lines Matching refs:Decoder

9 #include "src/wasm/decoder.h"
10 #include "src/wasm/module-decoder.h"
27 class ModuleDecoder : public Decoder {
31 : Decoder(module_start, module_end), module_zone(zone), asm_js_(asm_js) {
383 // Wrap the error message from the function decoder.
521 ModuleDecoder decoder(zone, module_start, module_end, asm_js);
522 return decoder.DecodeModule(module, verify_functions);
528 ModuleDecoder decoder(zone, start, end, false);
529 return decoder.DecodeFunctionSignature(start);
542 ModuleDecoder decoder(zone, function_start, function_end, false);
543 return decoder.DecodeSingleFunction(module_env, function);