Searched refs:entry_at (Results 1 - 18 of 18) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciCPCache.cpp49 return entry_at(index)->is_f1_null();
57 ConstantPoolCacheEntry* e = entry_at(index);
59 e = entry_at(e->main_entry_index());
H A DciCPCache.hpp44 ConstantPoolCacheEntry* entry_at(int i) { function in class:ciCPCache
48 return get_cpCacheOop()->entry_at(raw_index);
H A DciEnv.cpp582 ConstantPoolCacheEntry* cpc_entry = cpool->cache()->entry_at(cache_index);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.hpp119 uintptr_t entry_at(int offset) { int i = offset * bits_per_entry; return bit_mask()[i / BitsPerWord] >> (i % BitsPerWord); } function in class:InterpreterOopMap
124 bool is_dead(int offset) { return (entry_at(offset) & (1 << dead_bit_number)) != 0; }
150 bool is_oop (int offset) { return (entry_at(offset) & (1 << oop_bit_number )) != 0; }
168 OopMapCacheEntry* entry_at(int i) const;
H A Dbytecode.cpp186 return cpcache()->entry_at(index);
210 return _method->constants()->cache()->entry_at(index)->constant_pool_index();
H A DbytecodeTracer.cpp240 if (!cache->entry_at(i)->is_secondary_entry()) {
244 i = cache->entry_at(i)->main_entry_index() + constantPoolOopDesc::CPCACHE_INDEX_TAG;
279 if (cache->entry_at(i)->is_secondary_entry()) {
283 i = cache->entry_at(i)->constant_pool_index();
H A DoopMapCache.cpp526 OopMapCacheEntry* OopMapCache::entry_at(int i) const { function in class:OopMapCache
570 entry = entry_at(probe + i);
599 entry = entry_at(probe + i);
614 //entry_at(probe + _probe_depth - 1)->flush();
617 // OopMapCacheEntry *to = entry_at(probe + i);
618 // OopMapCacheEntry *from = entry_at(probe + i - 1);
624 entry = entry_at(probe + 0);
H A DbytecodeInterpreter.cpp1742 cache = cp->entry_at(index);
1746 cache = cp->entry_at(index);
1836 ConstantPoolCacheEntry* cache = cp->entry_at(index);
1840 cache = cp->entry_at(index);
2175 ConstantPoolCacheEntry* cache = cp->entry_at(index);
2180 cache = cp->entry_at(index); // reload
2236 ConstantPoolCacheEntry* cache = cp->entry_at(index);
2242 cache = cp->entry_at(index); // reload
2269 ConstantPoolCacheEntry* cache = cp->entry_at(index);
2273 cache = cp->entry_at(inde
[all...]
H A DinterpreterRuntime.hpp78 static ConstantPoolCacheEntry* cache_entry_at(JavaThread *thread, int i) { return method(thread)->constants()->cache()->entry_at(i); }
H A Dinterpreter.cpp341 method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters);
H A DinterpreterRuntime.cpp147 ConstantPoolCacheEntry* cpce = m->constants()->cache()->entry_at(ldc2.cache_index());
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheKlass.cpp102 while (i-- > 0) cache->entry_at(i)->follow_contents();
116 while (i-- > 0) cache->entry_at(i)->follow_contents(cm);
132 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate(blk);
149 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->oop_iterate_m(blk, mr);
165 cache->entry_at(i)->adjust_pointers();
179 ConstantPoolCacheEntry* e = cache->entry_at(i);
199 cache->entry_at(i)->update_pointers();
212 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->print(st, i);
230 for (int i = 0; i < cache->length(); i++) cache->entry_at(i)->verify(st);
H A DcpCacheOop.hpp428 ConstantPoolCacheEntry* entry_at(int i) const { function in class:constantPoolCacheOopDesc
439 assert(entry_at(raw_index)->is_secondary_entry(), "not a secondary entry");
440 return entry_at(raw_index);
450 primary_index = entry_at(raw_index)->main_entry_index();
452 assert(!entry_at(primary_index)->is_secondary_entry(), "only one level of indirection");
453 return entry_at(primary_index);
459 assert(entry_at(cpc_index) == e, "sanity");
465 ConstantPoolCacheEntry* e2 = entry_at(cpc_index + 1);
470 ConstantPoolCacheEntry* e2 = entry_at(i);
H A DcpCacheOop.cpp653 ConstantPoolCacheEntry* e = entry_at(i);
657 assert(!entry_at(main_index)->is_secondary_entry(), "valid main index");
662 assert(entry_at(i) == e, "sanity");
681 if (!entry_at(i)->is_interesting_method_entry(old_holder)) {
695 if (entry_at(i)->adjust_method_entry(old_method, new_method,
708 if (entry_at(i)->is_interesting_method_entry(NULL) &&
709 !entry_at(i)->check_no_old_or_obsolete_entries()) {
718 if (entry_at(i)->is_interesting_method_entry(NULL)) {
719 entry_at(i)->print(tty, i);
H A DconstantPoolOop.cpp274 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
282 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
290 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
298 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
305 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); // get next CPC entry
368 int member_index = cache()->entry_at(cpc_index)->constant_pool_index();
486 ConstantPoolCacheEntry* cpc_entry = cache->entry_at(i);
502 ConstantPoolCacheEntry* cpc_entry = this_oop->cache()->entry_at(cache_index);
624 ConstantPoolCacheEntry* cpc_entry = this_oop->cache()->entry_at(cache_index);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp64 _entries.at_put(i, old->entry_at(i));
82 for (entry = entry_at(i); entry != NULL; entry = entry->next()) {
115 for (ValueMapEntry* entry = entry_at(entry_index(hash, size())); entry != NULL; entry = entry->next()) {
141 _entries.at_put(idx, new ValueMapEntry(hash, x, nesting(), entry_at(idx)));
156 for (ValueMapEntry* entry = entry_at(i); entry != NULL; entry = entry->next()) { \
238 if (entry_at(i) != NULL) {
240 for (ValueMapEntry* entry = entry_at(i); entry != NULL; entry = entry->next()) {
H A Dc1_ValueMap.hpp87 ValueMapEntry* entry_at(int i) { return _entries.at(i); } function in class:ValueMap
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp503 ConstantPoolCacheEntry* entry = cache->entry_at(index);

Completed in 75 milliseconds