Searched defs:CompiledIC (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.hpp49 // The CompiledIC represents a compiled inline cache.
77 class CompiledIC;
80 friend class CompiledIC;
92 class CompiledIC: public ResourceObj { class in inherits:ResourceObj
103 CompiledIC(NativeCall* ic_call);
104 CompiledIC(Relocation* ic_reloc); // Must be of virtual_call_type/opt_virtual_call_type
118 // conversion (machine PC to CompiledIC*)
119 friend CompiledIC* CompiledIC_before(address return_addr);
120 friend CompiledIC* CompiledIC_at(address call_site);
121 friend CompiledIC* CompiledIC_a
[all...]
H A DcompiledIC.cpp51 void CompiledIC::set_cached_oop(oop cache) {
78 oop CompiledIC::cached_oop() const {
86 "no raw nulls in CompiledIC oops, because of patching races");
89 return InlineCacheBuffer::cached_oop_for((CompiledIC *)this);
94 void CompiledIC::set_ic_destination(address entry_point) {
111 address CompiledIC::ic_destination() const {
116 return InlineCacheBuffer::ic_destination_for((CompiledIC *)this);
121 bool CompiledIC::is_in_transition_state() const {
129 address CompiledIC::stub_address() const {
139 void CompiledIC
465 CompiledIC::CompiledIC(NativeCall* ic_call) function in class:CompiledIC
472 CompiledIC::CompiledIC(Relocation* ic_reloc) function in class:CompiledIC
[all...]

Completed in 861 milliseconds