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

/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.hpp44 class ICStub: public Stub { class in inherits:Stub
58 static int code_size_to_size(int code_size) { return round_to(sizeof(ICStub), CodeEntryAlignment) + code_size; }
65 address code_begin() const { return (address)this + round_to(sizeof(ICStub), CodeEntryAlignment); }
82 friend ICStub* ICStub_from_destination_address(address destination_address);
85 // ICStub Creation
86 inline ICStub* ICStub_from_destination_address(address destination_address) {
87 ICStub* stub = (ICStub*) (destination_address - round_to(sizeof(ICStub), CodeEntryAlignment));
97 friend class ICStub;
[all...]
H A DicBuffer.cpp57 DEF_STUB_INTERFACE(ICStub); variable
60 ICStub* InlineCacheBuffer::_next_stub = NULL;
63 void ICStub::finalize() {
76 address ICStub::destination() const {
80 oop ICStub::cached_oop() const {
85 void ICStub::set_stub(CompiledIC *ic, oop cached_value, address dest_addr) {
98 void ICStub::clear() {
106 void ICStub::verify() {
109 void ICStub::print() {
110 tty->print_cr("ICStub
[all...]

Completed in 237 milliseconds