Searched defs:first_oop (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.cpp459 address first_oop = NULL; local
462 return virtual_call_Relocation::parse_ic(tmp_nm, ic_call, first_oop, _oop_addr, is_optimized);
H A DrelocInfo.cpp803 RelocIterator virtual_call_Relocation::parse_ic(nmethod* &nm, address &ic_call, address &first_oop, argument
806 assert(ic_call != NULL || first_oop != NULL, "must supply a non-null input");
811 } else if (first_oop != NULL) {
812 code = CodeCache::find_blob(first_oop);
818 assert(first_oop == NULL || nm->contains(first_oop), "must be in nmethod");
830 first_oop = r->first_oop();
837 first_oop = NULL;
842 // search for the first_oop, t
881 address virtual_call_Relocation::first_oop() { function in class:virtual_call_Relocation
[all...]
H A DrelocInfo.hpp979 // "first_oop" points to the first associated set-oop.
982 static RelocationHolder spec(address first_oop, address oop_limit = NULL) { argument
984 new(rh) virtual_call_Relocation(first_oop, oop_limit);
988 virtual_call_Relocation(address first_oop, address oop_limit) { argument
989 _first_oop = first_oop; _oop_limit = oop_limit;
990 assert(first_oop != NULL, "first oop address must be specified");
1002 address first_oop();
1015 // Either ic_call or first_oop must be non-null; the other is deduced.
1021 static RelocIterator parse_ic(nmethod* &nm, address &ic_call, address &first_oop, oop* &oop_addr, bool *is_optimized);

Completed in 31 milliseconds