Go to the source code of this file.
|
void | v8::internal::EncodeI32ExceptionValue (DirectHandle< FixedArray > encoded_values, uint32_t *encoded_index, uint32_t value) |
|
void | v8::internal::EncodeI64ExceptionValue (DirectHandle< FixedArray > encoded_values, uint32_t *encoded_index, uint64_t value) |
|
void | v8::internal::DecodeI32ExceptionValue (DirectHandle< FixedArray > encoded_values, uint32_t *encoded_index, uint32_t *value) |
|
void | v8::internal::DecodeI64ExceptionValue (DirectHandle< FixedArray > encoded_values, uint32_t *encoded_index, uint64_t *value) |
|
bool | v8::internal::UseGenericWasmToJSWrapper (wasm::ImportCallKind kind, const wasm::CanonicalSig *sig, wasm::Suspend suspend) |
|
DirectHandle< Map > | v8::internal::CreateStructMap (Isolate *isolate, wasm::CanonicalTypeIndex struct_index, DirectHandle< Map > opt_rtt_parent, DirectHandle< NativeContext > opt_native_context) |
|
DirectHandle< Map > | v8::internal::CreateArrayMap (Isolate *isolate, wasm::CanonicalTypeIndex array_index, DirectHandle< Map > opt_rtt_parent) |
|
DirectHandle< Map > | v8::internal::CreateFuncRefMap (Isolate *isolate, wasm::CanonicalTypeIndex type, DirectHandle< Map > opt_rtt_parent) |
|
MaybeDirectHandle< Object > | v8::internal::wasm::JSToWasmObject (Isolate *isolate, DirectHandle< Object > value, CanonicalValueType expected, const char **error_message) |
|
MaybeDirectHandle< Object > | v8::internal::wasm::JSToWasmObject (Isolate *isolate, const WasmModule *module, DirectHandle< Object > value, ValueType expected, const char **error_message) |
|
DirectHandle< Object > | v8::internal::wasm::WasmToJSObject (Isolate *isolate, DirectHandle< Object > value) |
|
◆ CASE_TYPE [1/3]
#define CASE_TYPE |
( |
| value_type, |
|
|
| ctype ) |
Value: case wasm::value_type: \
return wasm::WasmValue(base::ReadUnalignedValue<ctype>(element_address));
◆ CASE_TYPE [2/3]
#define CASE_TYPE |
( |
| valuetype, |
|
|
| ctype ) |
Value: case wasm::valuetype: \
return wasm::WasmValue(base::ReadUnalignedValue<ctype>(ptr));
◆ CASE_TYPE [3/3]
#define CASE_TYPE |
( |
| valuetype, |
|
|
| ctype ) |
Value: case wasm::valuetype: \
return wasm::WasmValue(base::ReadUnalignedValue<ctype>(field_address));
◆ TRACE_IFT
Value: do { \
if (false) PrintF(__VA_ARGS__); \
} while (false)
Definition at line 54 of file wasm-objects.cc.