| 385 | return MemInsts[Idx]; |
| 386 | } |
| 387 | TagInstance *unsafeGetTag(uint32_t Idx) const noexcept { |
| 388 | return TagInsts[Idx]; |
| 389 | } |
| 390 | Expect<GlobalInstance *> getGlobal(uint32_t Idx) const noexcept { |
| 391 | std::shared_lock Lock(Mutex); |
| 392 | if (Idx >= GlobInsts.size()) { |