| 7124 | } |
| 7125 | |
| 7126 | uint64_t compileVirtualMethod(MyThread* t) |
| 7127 | { |
| 7128 | GcClass* class_ = objectClass(t, static_cast<object>(t->virtualCallTarget)); |
| 7129 | t->virtualCallTarget = 0; |
| 7130 | |
| 7131 | unsigned index = t->virtualCallIndex; |
| 7132 | t->virtualCallIndex = 0; |
| 7133 | |
| 7134 | return reinterpret_cast<uintptr_t>(compileVirtualMethod2(t, class_, index)); |
| 7135 | } |
| 7136 | |
| 7137 | uint64_t invokeNativeFast(MyThread* t, GcMethod* method, void* function) |
| 7138 | { |
nothing calls this directly
no test coverage detected