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

/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp31 // A VtableStub holds an individual code stub for a pair (vtable index, #args) for either itables or vtables
32 // There's a one-to-one relationship between a VtableStub and such a pair.
34 class VtableStub { class
42 VtableStub* _next; // Pointer to next entry in hash table
51 VtableStub(bool is_vtable_stub, int index) function in class:VtableStub
54 VtableStub* next() const { return _next; }
57 void set_next(VtableStub* n) { _next = n; }
63 static int entry_offset() { return sizeof(class VtableStub); }
87 uintptr_t off = (uintptr_t)( _chunk + sizeof(VtableStub) ) % pd_code_alignment();
116 static VtableStub* _tabl
[all...]

Completed in 245 milliseconds