Searched defs:is_vtable_stub (Results 1 - 6 of 6) sorted by relevance
/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | vtableStubs_zero.cpp | 48 int VtableStub::pd_code_size_limit(bool is_vtable_stub) { argument
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | vtableStubs_x86_32.cpp | 208 int VtableStub::pd_code_size_limit(bool is_vtable_stub) { argument 209 if (is_vtable_stub) {
|
H A D | vtableStubs_x86_64.cpp | 211 int VtableStub::pd_code_size_limit(bool is_vtable_stub) { argument 212 if (is_vtable_stub) {
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | vtableStubs_sparc.cpp | 216 int VtableStub::pd_code_size_limit(bool is_vtable_stub) { argument 220 if (is_vtable_stub) {
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | vtableStubs.hpp | 51 VtableStub(bool is_vtable_stub, int index) argument 52 : _next(NULL), _is_vtable_stub(is_vtable_stub), 65 bool matches(bool is_vtable_stub, int index) const { argument 66 return _index == index && _is_vtable_stub == is_vtable_stub; 81 static int pd_code_size_limit(bool is_vtable_stub); 94 bool is_vtable_stub() { return _is_vtable_stub; } function in class:VtableStub 121 static VtableStub* lookup (bool is_vtable_stub, int vtable_index); 122 static void enter (bool is_vtable_stub, int vtable_index, VtableStub* s); 123 static inline uint hash (bool is_vtable_stub, int vtable_index); 126 static address create_stub(bool is_vtable_stub, in [all...] |
H A D | vtableStubs.cpp | 114 address VtableStubs::create_stub(bool is_vtable_stub, int vtable_index, methodOop method) { argument 117 VtableStub* s = ShareVtableStubs ? lookup(is_vtable_stub, vtable_index) : NULL; 119 if (is_vtable_stub) { 124 enter(is_vtable_stub, vtable_index, s); 127 is_vtable_stub? "vtbl": "itbl", vtable_index, VtableStub::receiver_location()); 135 inline uint VtableStubs::hash(bool is_vtable_stub, int vtable_index){ argument 138 return (is_vtable_stub ? ~hash : hash) & mask; 142 VtableStub* VtableStubs::lookup(bool is_vtable_stub, int vtable_index) { argument 144 unsigned hash = VtableStubs::hash(is_vtable_stub, vtable_index); 146 while( s && !s->matches(is_vtable_stub, vtable_inde 151 enter(bool is_vtable_stub, int vtable_index, VtableStub* s) argument [all...] |
Completed in 1041 milliseconds