| 55 | } |
| 56 | |
| 57 | static jmethodID getMethodId(VMMethod* method) { |
| 58 | if (!inDeadZone(method) && aligned((uintptr_t)method)) { |
| 59 | return method->validatedId(); |
| 60 | } |
| 61 | return NULL; |
| 62 | } |
| 63 | |
| 64 | |
| 65 | int StackWalker::walkFP(void* ucontext, const void** callchain, int max_depth) { |
no test coverage detected