| 7315 | } |
| 7316 | |
| 7317 | uint64_t invokeNative2(MyThread* t, GcMethod* method) |
| 7318 | { |
| 7319 | GcNative* native = getMethodRuntimeData(t, method)->native(); |
| 7320 | if (native->fast()) { |
| 7321 | return invokeNativeFast(t, method, native->function()); |
| 7322 | } else { |
| 7323 | return invokeNativeSlow(t, method, native->function()); |
| 7324 | } |
| 7325 | } |
| 7326 | |
| 7327 | uint64_t invokeNative(MyThread* t) |
| 7328 | { |
no test coverage detected