| 282 | } |
| 283 | |
| 284 | const char* Profiler::findNativeMethod(const void* address) { |
| 285 | CodeCache* lib = findLibraryByAddress(address); |
| 286 | return lib == NULL ? NULL : lib->binarySearch(address); |
| 287 | } |
| 288 | |
| 289 | CodeBlob* Profiler::findRuntimeStub(const void* address) { |
| 290 | return _runtime_stubs.findBlobByAddress(address); |
nothing calls this directly
no test coverage detected