Searched defs:cached_oop (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DicBuffer_zero.cpp43 oop cached_oop,
42 assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DicBuffer_sparc.cpp48 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) { argument
56 assert(cached_oop == NULL || cached_oop->is_perm(), "must be old oop");
57 AddressLiteral cached_oop_addrlit(cached_oop, relocInfo::none);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DicBuffer_x86.cpp47 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) { argument
55 assert(cached_oop == NULL || cached_oop->is_perm(), "must be perm oop");
56 masm->lea(rax, OopAddress((address) cached_oop));
/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.hpp83 Handle _cached_oop; // Value of cached_oop (either in stub or inline cache)
88 Handle cached_oop() const { return _cached_oop; } function in class:CompiledICInfo
123 // Return the cached_oop/destination associated with this inline cache. If the cache currently points
125 oop cached_oop() const;
H A DicBuffer.cpp70 ic->set_cached_oop(cached_oop());
80 oop ICStub::cached_oop() const { function in class:ICStub
94 assert(cached_oop() == cached_value, "can recover destination");
182 void InlineCacheBuffer::create_transition_stub(CompiledIC *ic, oop cached_oop, address entry) { argument
185 assert(cached_oop == NULL || cached_oop->is_perm(), "must belong to perm. space");
196 ic_stub->set_stub(ic, cached_oop, entry);
213 return stub->cached_oop();
H A DcompiledIC.cpp78 oop CompiledIC::cached_oop() const { function in class:CompiledIC
183 // Cannot rely on cached_oop. It is either an interface or a method.
195 // Check that the cached_oop is a klass for non-optimized monomorphic calls
197 // for calling directly to vep without using the inline cache (i.e., cached_oop == NULL)
212 (cached_oop() != NULL && cached_oop()->is_klass()), "sanity check");
229 assert(!is_call_to_interpreted || (cached_oop() != NULL && cached_oop()->is_compiledICHolder()), "sanity check");
292 assert(!is_clean || is_optimized() || cached_oop() == NULL, "sanity check");
321 assert(info.cached_oop()
[all...]

Completed in 38 milliseconds