Searched refs:cache_index (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.hpp56 int cache_index = _cp_cache_map.append(cp_index); local
57 _cp_map.at_put(cp_index, cache_index);
58 assert(cp_entry_to_cp_cache(cp_index) == cache_index, "");
59 return cache_index;
63 int cache_index = _cp_cache_map.append(main_cpc_entry | _secondary_entry_tag);
64 return cache_index;
68 int cp_cache_entry_pool_index(int cache_index) {
69 int cp_index = _cp_cache_map[cache_index];
75 int cp_cache_secondary_entry_main_index(int cache_index) {
76 int cp_index = _cp_cache_map[cache_index];
[all...]
H A Drewriter.cpp138 int cache_index = cp_entry_to_cp_cache(cp_index); local
139 Bytes::put_native_u2(p, cache_index);
143 int cache_index = Bytes::get_native_u2(p); local
144 int pool_index = cp_cache_entry_pool_index(cache_index);
218 int cache_index = constantPoolCacheOopDesc::decode_secondary_index( local
220 int secondary_index = cp_cache_secondary_entry_main_index(cache_index);
239 int cache_index = cp_entry_to_cp_cache(cp_index); local
242 assert(cache_index == (u2)cache_index, "index overflow");
243 Bytes::put_native_u2(p, cache_index);
255 int cache_index = is_wide ? Bytes::get_native_u2(p) : (u1)(*p); local
[all...]
H A Dbytecode.hpp347 int cache_index() const { // index into CP cache (or -1 if none) function in class:Bytecode_loadconstant
H A DinterpreterRuntime.cpp147 ConstantPoolCacheEntry* cpce = m->constants()->cache()->entry_at(ldc2.cache_index());
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.hpp101 static juint cache_index(jobject handle) { function in class:OopRecorder::IndexCache
108 return &_cache[ cache_index(handle) ];
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp273 int cache_index = decode_cpcache_index(which, true); local
274 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
281 int cache_index = decode_cpcache_index(which, true); local
282 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
289 int cache_index = decode_cpcache_index(which, true); local
290 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
297 int cache_index = decode_cpcache_index(which, true); local
298 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
304 int cache_index = decode_cpcache_index(which, true); local
305 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index); // ge
476 resolve_constant_at_impl(constantPoolHandle this_oop, int index, int cache_index, TRAPS) argument
[all...]
H A DconstantPoolOop.hpp635 oop resolve_cached_constant_at(int cache_index, TRAPS) { argument
637 return resolve_constant_at_impl(h_this, _no_index_sentinel, cache_index, THREAD);
747 static oop resolve_constant_at_impl(constantPoolHandle this_oop, int index, int cache_index, TRAPS);
/openjdk7/hotspot/src/share/vm/ci/
H A DciStreams.cpp228 // work-alike for Bytecode_loadconstant::cache_index()
239 int cache_index = -1; local
241 cache_index = pool_index;
246 return CURRENT_ENV->get_constant_by_index(cpool, pool_index, cache_index, _holder);
H A DciEnv.hpp130 int pool_index, int cache_index,
148 int pool_index, int cache_index,
H A DciEnv.cpp575 int pool_index, int cache_index,
580 if (cache_index >= 0) {
582 ConstantPoolCacheEntry* cpc_entry = cpool->cache()->entry_at(cache_index);
658 int pool_index, int cache_index,
660 GUARDED_VM_ENTRY(return get_constant_by_index_impl(cpool, pool_index, cache_index, accessor);)
574 get_constant_by_index_impl(constantPoolHandle cpool, int pool_index, int cache_index, ciInstanceKlass* accessor) argument
657 get_constant_by_index(constantPoolHandle cpool, int pool_index, int cache_index, ciInstanceKlass* accessor) argument

Completed in 54 milliseconds