RefPtr<MethodInfo> PluginRuntime::GetMethod(cell_t pcode_offset) const { FunctionMap::Result r = function_map_.find(pcode_offset); if (!r.found()) return nullptr; return r->value; }
CompiledFunction * PluginRuntime::GetJittedFunctionByOffset(cell_t pcode_offset) { FunctionMap::Result r = function_map_.find(pcode_offset); if (!r.found()) return nullptr; return r->value; }