Home
last modified time | relevance | path

Searched defs:FunctionEnv (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/wasm/
Dast-decoder.h26 struct FunctionEnv { struct
27 ModuleEnv* module; // module environment
28 FunctionSig* sig; // signature of this function
29 uint32_t local_int32_count; // number of int32 locals
30 uint32_t local_int64_count; // number of int64 locals
31 uint32_t local_float32_count; // number of float32 locals
32 uint32_t local_float64_count; // number of float64 locals
33 uint32_t total_locals; // sum of parameters and all locals
35 bool IsValidLocal(uint32_t index) { return index < total_locals; } in IsValidLocal()
36 uint32_t GetLocalCount() { return total_locals; } in GetLocalCount()
[all …]