Go to the source code of this file.
|
const char * | v8::internal::wasm::ExternalKindName (ImportExportKindCode kind) |
|
bool | v8::internal::wasm::validate_utf8 (Decoder *decoder, WireBytesRef string) |
|
WireBytesRef | v8::internal::wasm::consume_string (Decoder *decoder, unibrow::Utf8Variant grammar, const char *name, ITracer *tracer) |
|
WireBytesRef | v8::internal::wasm::consume_string (Decoder *decoder, unibrow::Utf8Variant grammar, const char *name) |
|
WireBytesRef | v8::internal::wasm::consume_utf8_string (Decoder *decoder, const char *name, ITracer *tracer) |
|
SectionCode | v8::internal::wasm::IdentifyUnknownSectionInternal (Decoder *decoder, ITracer *tracer) |
|
void | v8::internal::wasm::DumpModule (const base::Vector< const uint8_t > module_bytes, bool ok) |
|
◆ BYTES
Value:(
x & 0xFF), (
x >> 8) & 0xFF, (
x >> 16) & 0xFF, (
x >> 24) & 0xFF
◆ TRACE
Value: do { \
if (v8_flags.trace_wasm_decoder) PrintF(__VA_ARGS__); \
} while (false)
Definition at line 27 of file module-decoder-impl.h.
◆ TYPE_CHECK
#define TYPE_CHECK |
( |
| found | ) |
|
Value: if (
V8_UNLIKELY(!IsSubtypeOf(found, expected, module))) { \
"type error in constant expression[0] (expected %s, got %s)", \
expected.name().c_str(), found.name().c_str()); \
return {}; \
}
#define V8_UNLIKELY(condition)