Set the start function index and find the function instance.
| 440 | |
| 441 | /// Set the start function index and find the function instance. |
| 442 | void setStartIdx(uint32_t Idx) noexcept { |
| 443 | std::unique_lock Lock(Mutex); |
| 444 | StartFunc = FuncInsts[Idx]; |
| 445 | } |
| 446 | |
| 447 | /// Get start function address in Store. |
| 448 | const FunctionInstance *getStartFunc() const noexcept { |
no outgoing calls
no test coverage detected