Searched defs:FunctionEnv (Results 1 – 1 of 1) sorted by relevance
26 struct FunctionEnv { struct27 ModuleEnv* module; // module environment28 FunctionSig* sig; // signature of this function29 uint32_t local_int32_count; // number of int32 locals30 uint32_t local_int64_count; // number of int64 locals31 uint32_t local_float32_count; // number of float32 locals32 uint32_t local_float64_count; // number of float64 locals33 uint32_t total_locals; // sum of parameters and all locals35 bool IsValidLocal(uint32_t index) { return index < total_locals; } in IsValidLocal()36 uint32_t GetLocalCount() { return total_locals; } in GetLocalCount()[all …]