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

/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp61 int get_index_u1_cpcache() { return get_index_u1() + constantPoolOopDesc::CPCACHE_INDEX_TAG; }
62 int get_index_u2_cpcache() { int i=Bytes::get_native_u2(_next_pc); _next_pc+=2; return i + constantPoolOopDesc::CPCACHE_INDEX_TAG; }
244 i = cache->entry_at(i)->main_entry_index() + constantPoolOopDesc::CPCACHE_INDEX_TAG;
269 const int CPCACHE_INDEX_TAG = constantPoolOopDesc::CPCACHE_INDEX_TAG; local
270 if (i >= CPCACHE_INDEX_TAG && i < climit + CPCACHE_INDEX_TAG) {
271 i -= CPCACHE_INDEX_TAG;
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp703 enum { CPCACHE_INDEX_TAG = 0x10000 }; // helps keep CP cache indices distinct from CP indices enumerator in enum:constantPoolOopDesc::__anon261
705 enum { CPCACHE_INDEX_TAG = 0 }; // in product mode, this zero value is a no-op enumerator in enum:constantPoolOopDesc::__anon262
708 static int get_cpcache_index(int index) { return index - CPCACHE_INDEX_TAG; }
723 int remap_instruction_operand_from_cache(int operand); // operand must be biased by CPCACHE_INDEX_TAG

Completed in 1305 milliseconds