Searched refs:cpool (Results 26 - 39 of 39) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp269 methodOop constantPoolOopDesc::method_at_if_loaded(constantPoolHandle cpool, argument
272 if (cpool->cache() == NULL) return NULL; // nothing to load yet
274 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
275 return e->method_if_resolved(cpool);
279 bool constantPoolOopDesc::has_appendix_at_if_loaded(constantPoolHandle cpool, int which) { argument
280 if (cpool->cache() == NULL) return false; // nothing to load yet
282 ConstantPoolCacheEntry* e = cpool->cache()->entry_at(cache_index);
287 oop constantPoolOopDesc::appendix_at_if_loaded(constantPoolHandle cpool, int which) { argument
288 if (cpool->cache() == NULL) return NULL; // nothing to load yet
290 ConstantPoolCacheEntry* e = cpool
295 has_method_type_at_if_loaded(constantPoolHandle cpool, int which) argument
302 method_type_at_if_loaded(constantPoolHandle cpool, int which) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp407 void Rewriter::rewrite(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS) { argument
409 Rewriter rw(klass, cpool, methods, CHECK);
414 Rewriter::Rewriter(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS) argument
416 _pool(cpool),
H A DinterpreterRuntime.cpp241 constantPoolOop cpool = method(thread)->constants(); variable
245 // assert( cpool->tag_at(which).is_unresolved_klass(), "should only come here to quicken bytecodes" );
246 klassOop klass = cpool->klass_at(which, CHECK);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java158 cpool = root.findElement("ConstantPool");
165 cpool = new Element("ConstantPool");
170 if (cpool == null) {
171 cpool = new Element("ConstantPool");
174 int cpLen = 1 + cpool.size();
175 for (Element c : cpool.elements()) {
206 cpool.add(new Element(cpTagName(tag),
727 for (Element c : cpool.elements()) {
H A DClassReader.java949 cpool = new Element("ConstantPool", cpName.length);
954 cpool.add(new Element(cpTagName(cpTag[i]),
959 cfile.add(cpool);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp147 void requestOutputIndex(cpool& cp, int req = REQUESTED);
269 inline cpindex* cpool::getFieldIndex(entry* classRef) {
275 inline cpindex* cpool::getMethodIndex(entry* classRef) {
816 bool x = (N_TAGS_IN_ORDER == cpool::NUM_COUNTS);
881 void cpool::init(unpacker* u_, int counts[NUM_COUNTS]) {
1380 for (int sn = 0; sn < cpool::s_LIMIT; sn++) {
2006 inner_class* cpool::getIC(entry* inner) {
2016 inner_class* cpool::getFirstChildIC(entry* outer) {
2026 inner_class* cpool::getNextChildIC(inner_class* child) {
3001 entry*& cpool
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_reference.c333 ConstantPoolValue *cpool; local
399 cpool = NULL;
486 cpool = (ConstantPoolValue*)stack_element(cpool_values, 0);
492 (jint)size, cpool_count, cpool, n_fields, fields, fvalues);
H A Dhprof_io.c1537 jint n_cpool, ConstantPoolValue *cpool,
1603 type_from_signature(string_get(cpool[i].sig_index),
1605 heap_u2((unsigned short)(cpool[i].constant_pool_index));
1608 heap_element(kind, size, cpool[i].value);
1686 type_from_signature(string_get(cpool[i].sig_index), &kind, &size);
1688 if (cpool[i].value.i != 0 ) {
1690 cpool[i].constant_pool_index, cpool[i].value.i);
1532 io_heap_class_dump(ClassIndex cnum, char *sig, ObjectIndex class_id, SerialNumber trace_serial_num, ObjectIndex super_id, ObjectIndex loader_id, ObjectIndex signers_id, ObjectIndex domain_id, jint size, jint n_cpool, ConstantPoolValue *cpool, jint n_fields, FieldInfo *fields, jvalue *fvalues) argument
H A Dhprof_io.h151 jint n_cpool, ConstantPoolValue *cpool,
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c146 CrwConstantPoolEntry * cpool; member in struct:CrwClassImage
521 ci->cpool[i].tag = tag;
522 ci->cpool[i].index1 = index1;
523 ci->cpool[i].index2 = index2;
524 ci->cpool[i].ptr = ptr;
525 ci->cpool[i].len = (unsigned short)len;
633 return ci->cpool[c_index];
648 ci->cpool = (CrwConstantPoolEntry*)allocate_clean(ci,
2216 if ( ci->cpool != NULL ) {
2219 if ( ci->cpool[
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js778 var cpool = method.constants;
786 var oop = (cpIndex == 0)? null : cpool.getObjAt(cpIndex);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp128 constantPoolHandle cpool = h_m()->constants(); local
129 _signature = new (env->arena()) ciSignature(_holder, cpool, sig_symbol);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp607 write_u2(cpool()->length());
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp804 constantPoolOop cpool = (constantPoolOop)obj; local
805 int unresolved = cpool->pre_resolve_shared_klasses(THREAD);

Completed in 86 milliseconds

12