Searched refs:runtime_address (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp475 int32_t Relocation::runtime_address_to_index(address runtime_address) { argument
476 assert(!is_reloc_index((intptr_t)runtime_address), "must not look like an index");
478 if (runtime_address == NULL) return 0;
480 StubCodeDesc* p = StubCodeDesc::desc_for(runtime_address);
481 if (p != NULL && p->begin() == runtime_address) {
488 tty->print_cr("random unregistered address in relocInfo: " INTPTR_FORMAT, runtime_address);
491 return (int32_t) (intptr_t)runtime_address;
H A DrelocInfo.hpp806 static int32_t runtime_address_to_index(address runtime_address);

Completed in 46 milliseconds