Home
last modified time | relevance | path

Searched refs:verify_functions (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/wasm/
Dmodule-decoder.h64 const byte* module_end, bool verify_functions, ModuleOrigin origin,
126 uint32_t offset, bool verify_functions = true);
131 bool verify_functions = true);
133 ModuleResult FinishDecoding(bool verify_functions = true);
Dmodule-decoder.cc332 uint32_t offset, bool verify_functions = true) { in DecodeSection() argument
393 DecodeCodeSection(verify_functions); in DecodeSection()
742 void DecodeCodeSection(bool verify_functions) { in DecodeCodeSection() argument
757 DecodeFunctionBody(i, size, offset, verify_functions); in DecodeCodeSection()
772 bool verify_functions) { in DecodeFunctionBody() argument
776 if (verify_functions) { in DecodeFunctionBody()
841 ModuleResult FinishDecoding(bool verify_functions = true) { in FinishDecoding() argument
846 if (verify_functions && result.ok()) { in FinishDecoding()
855 bool verify_functions = true) { in DecodeModule() argument
861 return FinishDecoding(verify_functions); in DecodeModule()
[all …]
Dmodule-compiler.cc2676 constexpr bool verify_functions = false; in ProcessSection() local
2677 decoder_.DecodeSection(section_code, bytes, offset, verify_functions); in ProcessSection()