< prev index next >

src/hotspot/share/ci/ciInstanceKlass.cpp

Print this page

  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "ci/ciField.hpp"

 27 #include "ci/ciInstance.hpp"
 28 #include "ci/ciInstanceKlass.hpp"
 29 #include "ci/ciUtilities.inline.hpp"
 30 #include "classfile/javaClasses.hpp"

 31 #include "classfile/vmClasses.hpp"
 32 #include "memory/allocation.hpp"
 33 #include "memory/allocation.inline.hpp"
 34 #include "memory/resourceArea.hpp"
 35 #include "oops/instanceKlass.inline.hpp"
 36 #include "oops/klass.inline.hpp"
 37 #include "oops/oop.inline.hpp"
 38 #include "oops/fieldStreams.inline.hpp"

 39 #include "runtime/fieldDescriptor.inline.hpp"
 40 #include "runtime/handles.inline.hpp"
 41 #include "runtime/jniHandles.inline.hpp"
 42 
 43 // ciInstanceKlass
 44 //
 45 // This class represents a Klass* in the HotSpot virtual machine
 46 // whose Klass part in an InstanceKlass.
 47 
 48 
 49 // ------------------------------------------------------------------
 50 // ciInstanceKlass::ciInstanceKlass
 51 //
 52 // Loaded instance klass.
 53 ciInstanceKlass::ciInstanceKlass(Klass* k) :
 54   ciKlass(k)
 55 {
 56   assert(get_Klass()->is_instance_klass(), "wrong type");
 57   assert(get_instanceKlass()->is_loaded(), "must be at least loaded");
 58   InstanceKlass* ik = get_instanceKlass();

102   }
103 
104   _has_trusted_loader = compute_has_trusted_loader();
105 
106   // Lazy fields get filled in only upon request.
107   _super  = NULL;
108   _java_mirror = NULL;
109 
110   if (is_shared()) {
111     if (k != vmClasses::Object_klass()) {
112       super();
113     }
114     //compute_nonstatic_fields();  // done outside of constructor
115   }
116 
117   _field_cache = NULL;
118 }
119 
120 // Version for unloaded classes:
121 ciInstanceKlass::ciInstanceKlass(ciSymbol* name,
122                                  jobject loader, jobject protection_domain)
123   : ciKlass(name, T_OBJECT)

124 {
125   assert(name->char_at(0) != JVM_SIGNATURE_ARRAY, "not an instance klass");
126   _init_state = (InstanceKlass::ClassState)0;
127   _has_nonstatic_fields = false;
128   _nonstatic_fields = NULL;
129   _has_injected_fields = -1;
130   _is_hidden = false;
131   _is_record = false;
132   _loader = loader;
133   _protection_domain = protection_domain;
134   _is_shared = false;
135   _super = NULL;
136   _java_mirror = NULL;
137   _field_cache = NULL;
138   _has_trusted_loader = compute_has_trusted_loader();
139 }
140 
141 
142 
143 // ------------------------------------------------------------------
144 // ciInstanceKlass::compute_shared_is_initialized
145 void ciInstanceKlass::compute_shared_init_state() {
146   GUARDED_VM_ENTRY(
147     InstanceKlass* ik = get_instanceKlass();
148     _init_state = ik->init_state();

320   if (name()->index_of_at(len+1, "/", 1) >= 0)
321     return false;
322 
323   return true;
324 }
325 
326 // ------------------------------------------------------------------
327 // ciInstanceKlass::print_impl
328 //
329 // Implementation of the print method.
330 void ciInstanceKlass::print_impl(outputStream* st) {
331   ciKlass::print_impl(st);
332   GUARDED_VM_ENTRY(st->print(" loader=" INTPTR_FORMAT, p2i(loader()));)
333   if (is_loaded()) {
334     st->print(" initialized=%s finalized=%s subklass=%s size=%d flags=",
335               bool_to_str(is_initialized()),
336               bool_to_str(has_finalizer()),
337               bool_to_str(has_subklass()),
338               layout_helper());
339 
340     _flags.print_klass_flags();
341 
342     if (_super) {
343       st->print(" super=");
344       _super->print_name();
345     }
346     if (_java_mirror) {
347       st->print(" mirror=PRESENT");
348     }
349   }
350 }
351 
352 // ------------------------------------------------------------------
353 // ciInstanceKlass::super
354 //
355 // Get the superklass of this klass.
356 ciInstanceKlass* ciInstanceKlass::super() {
357   assert(is_loaded(), "must be loaded");
358   if (_super == NULL && !is_java_lang_Object()) {
359     GUARDED_VM_ENTRY(
360       Klass* super_klass = get_instanceKlass()->super();
361       _super = CURRENT_ENV->get_instance_klass(super_klass);
362     )
363   }
364   return _super;

418       ciField* field = _nonstatic_fields->at(i);
419       int  field_off = field->offset_in_bytes();
420       if (field_off == field_offset)
421         return field;
422       if (field_off > field_offset)
423         break;
424       // could do binary search or check bins, but probably not worth it
425     }
426     return NULL;
427   }
428   VM_ENTRY_MARK;
429   InstanceKlass* k = get_instanceKlass();
430   fieldDescriptor fd;
431   if (!k->find_field_from_offset(field_offset, is_static, &fd)) {
432     return NULL;
433   }
434   ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
435   return field;
436 }
437 























438 // ------------------------------------------------------------------
439 // ciInstanceKlass::get_field_by_name
440 ciField* ciInstanceKlass::get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static) {
441   VM_ENTRY_MARK;
442   InstanceKlass* k = get_instanceKlass();
443   fieldDescriptor fd;
444   Klass* def = k->find_field(name->get_symbol(), signature->get_symbol(), is_static, &fd);
445   if (def == NULL) {
446     return NULL;
447   }
448   ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
449   return field;
450 }
451 
452 
453 static int sort_field_by_offset(ciField** a, ciField** b) {
454   return (*a)->offset_in_bytes() - (*b)->offset_in_bytes();
455   // (no worries about 32-bit overflow...)
456 }
457 

476     int super_flen   = super->nof_nonstatic_fields();
477     super_fields = super->_nonstatic_fields;
478     assert(super_flen == 0 || super_fields != NULL, "first get nof_fields");
479   }
480 
481   GrowableArray<ciField*>* fields = NULL;
482   GUARDED_VM_ENTRY({
483       fields = compute_nonstatic_fields_impl(super_fields);
484     });
485 
486   if (fields == NULL) {
487     // This can happen if this class (java.lang.Class) has invisible fields.
488     if (super_fields != NULL) {
489       _nonstatic_fields = super_fields;
490       return super_fields->length();
491     } else {
492       return 0;
493     }
494   }
495 
496   int flen = fields->length();
497 
498   // Now sort them by offset, ascending.
499   // (In principle, they could mix with superclass fields.)
500   fields->sort(sort_field_by_offset);
501   _nonstatic_fields = fields;
502   return flen;
503 }
504 
505 GrowableArray<ciField*>*
506 ciInstanceKlass::compute_nonstatic_fields_impl(GrowableArray<ciField*>*
507                                                super_fields) {
508   ASSERT_IN_VM;
509   Arena* arena = CURRENT_ENV->arena();
510   int flen = 0;
511   GrowableArray<ciField*>* fields = NULL;
512   InstanceKlass* k = get_instanceKlass();
513   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
514     if (fs.access_flags().is_static())  continue;
515     flen += 1;
516   }
517 
518   // allocate the array:
519   if (flen == 0) {
520     return NULL;  // return nothing if none are locally declared
521   }
522   if (super_fields != NULL) {
523     flen += super_fields->length();
524   }

525   fields = new (arena) GrowableArray<ciField*>(arena, flen, 0, NULL);
526   if (super_fields != NULL) {
527     fields->appendAll(super_fields);
528   }
529 
530   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
531     if (fs.access_flags().is_static())  continue;
532     fieldDescriptor& fd = fs.field_descriptor();
533     ciField* field = new (arena) ciField(&fd);
534     fields->append(field);




















535   }
536   assert(fields->length() == flen, "sanity");



537   return fields;
538 }
539 
540 bool ciInstanceKlass::compute_injected_fields_helper() {
541   ASSERT_IN_VM;
542   InstanceKlass* k = get_instanceKlass();
543 
544   for (InternalFieldStream fs(k); !fs.done(); fs.next()) {
545     if (fs.access_flags().is_static())  continue;
546     return true;
547   }
548   return false;
549 }
550 
551 void ciInstanceKlass::compute_injected_fields() {
552   assert(is_loaded(), "must be loaded");
553 
554   int has_injected_fields = 0;
555   if (super() != NULL && super()->has_injected_fields()) {
556     has_injected_fields = 1;

623     } else {
624       // Go into the VM to fetch the implementor.
625       VM_ENTRY_MARK;
626       MutexLocker ml(Compile_lock);
627       Klass* k = get_instanceKlass()->implementor();
628       if (k != NULL) {
629         if (k == get_instanceKlass()) {
630           // More than one implementors. Use 'this' in this case.
631           impl = this;
632         } else {
633           impl = CURRENT_THREAD_ENV->get_instance_klass(k);
634         }
635       }
636     }
637     // Memoize this result.
638     _implementor = impl;
639   }
640   return impl;
641 }
642 
















643 // Utility class for printing of the contents of the static fields for
644 // use by compilation replay.  It only prints out the information that
645 // could be consumed by the compiler, so for primitive types it prints
646 // out the actual value.  For Strings it's the actual string value.
647 // For array types it it's first level array size since that's the
648 // only value which statically unchangeable.  For all other reference
649 // types it simply prints out the dynamic type.
650 
651 class StaticFinalFieldPrinter : public FieldClosure {

652   outputStream* _out;








653   const char*   _holder;
654  public:
655   StaticFinalFieldPrinter(outputStream* out, const char* holder) :
656     _out(out),
657     _holder(holder) {
658   }
659   void do_field(fieldDescriptor* fd) {
660     if (fd->is_final() && !fd->has_initial_value()) {
661       ResourceMark rm;
662       oop mirror = fd->field_holder()->java_mirror();
663       _out->print("staticfield %s %s %s ", _holder, fd->name()->as_quoted_ascii(), fd->signature()->as_quoted_ascii());
664       switch (fd->field_type()) {
665         case T_BYTE:    _out->print_cr("%d", mirror->byte_field(fd->offset()));   break;
666         case T_BOOLEAN: _out->print_cr("%d", mirror->bool_field(fd->offset()));   break;
667         case T_SHORT:   _out->print_cr("%d", mirror->short_field(fd->offset()));  break;
668         case T_CHAR:    _out->print_cr("%d", mirror->char_field(fd->offset()));   break;
669         case T_INT:     _out->print_cr("%d", mirror->int_field(fd->offset()));    break;
670         case T_LONG:    _out->print_cr(INT64_FORMAT, (int64_t)(mirror->long_field(fd->offset())));   break;
671         case T_FLOAT: {
672           float f = mirror->float_field(fd->offset());
673           _out->print_cr("%d", *(int*)&f);
674           break;
675         }
676         case T_DOUBLE: {
677           double d = mirror->double_field(fd->offset());
678           _out->print_cr(INT64_FORMAT, *(int64_t*)&d);
679           break;
680         }
681         case T_ARRAY:  // fall-through
682         case T_OBJECT: {
683           oop value =  mirror->obj_field_acquire(fd->offset());
684           if (value == NULL) {
685             _out->print_cr("null");
686           } else if (value->is_instance()) {
687             assert(fd->field_type() == T_OBJECT, "");
688             if (value->is_a(vmClasses::String_klass())) {
689               const char* ascii_value = java_lang_String::as_quoted_ascii(value);
690               _out->print_cr("\"%s\"", (ascii_value != NULL) ? ascii_value : "");
691             } else {
692               const char* klass_name  = value->klass()->name()->as_quoted_ascii();
693               _out->print_cr("%s", klass_name);
694             }
695           } else if (value->is_array()) {
696             typeArrayOop ta = (typeArrayOop)value;
697             _out->print("%d", ta->length());
698             if (value->is_objArray()) {
699               objArrayOop oa = (objArrayOop)value;
700               const char* klass_name  = value->klass()->name()->as_quoted_ascii();
701               _out->print(" %s", klass_name);
702             }
703             _out->cr();
704           } else {
705             ShouldNotReachHere();
706           }
707           break;












708         }
709         default:
710           ShouldNotReachHere();





711         }




712     }

























713   }
714 };
715 
716 const char *ciInstanceKlass::replay_name() const {
717   return CURRENT_ENV->replay_name(get_instanceKlass());
718 }
719 
720 void ciInstanceKlass::dump_replay_instanceKlass(outputStream* out, InstanceKlass* ik) {
721   if (ik->is_hidden()) {
722     const char *name = CURRENT_ENV->dyno_name(ik);
723     if (name != NULL) {
724       out->print_cr("instanceKlass %s # %s", name, ik->name()->as_quoted_ascii());
725     } else {
726       out->print_cr("# instanceKlass %s", ik->name()->as_quoted_ascii());
727     }
728   } else {
729     out->print_cr("instanceKlass %s", ik->name()->as_quoted_ascii());
730   }
731 }
732 
733 GrowableArray<ciInstanceKlass*>* ciInstanceKlass::transitive_interfaces() const{
734   if (_transitive_interfaces == NULL) {

  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "ci/ciField.hpp"
 27 #include "ci/ciInlineKlass.hpp"
 28 #include "ci/ciInstance.hpp"
 29 #include "ci/ciInstanceKlass.hpp"
 30 #include "ci/ciUtilities.inline.hpp"
 31 #include "classfile/javaClasses.hpp"
 32 #include "classfile/systemDictionary.hpp"
 33 #include "classfile/vmClasses.hpp"
 34 #include "memory/allocation.hpp"
 35 #include "memory/allocation.inline.hpp"
 36 #include "memory/resourceArea.hpp"
 37 #include "oops/instanceKlass.inline.hpp"
 38 #include "oops/klass.inline.hpp"
 39 #include "oops/oop.inline.hpp"
 40 #include "oops/fieldStreams.inline.hpp"
 41 #include "oops/inlineKlass.inline.hpp"
 42 #include "runtime/fieldDescriptor.inline.hpp"
 43 #include "runtime/handles.inline.hpp"
 44 #include "runtime/jniHandles.inline.hpp"
 45 
 46 // ciInstanceKlass
 47 //
 48 // This class represents a Klass* in the HotSpot virtual machine
 49 // whose Klass part in an InstanceKlass.
 50 
 51 
 52 // ------------------------------------------------------------------
 53 // ciInstanceKlass::ciInstanceKlass
 54 //
 55 // Loaded instance klass.
 56 ciInstanceKlass::ciInstanceKlass(Klass* k) :
 57   ciKlass(k)
 58 {
 59   assert(get_Klass()->is_instance_klass(), "wrong type");
 60   assert(get_instanceKlass()->is_loaded(), "must be at least loaded");
 61   InstanceKlass* ik = get_instanceKlass();

105   }
106 
107   _has_trusted_loader = compute_has_trusted_loader();
108 
109   // Lazy fields get filled in only upon request.
110   _super  = NULL;
111   _java_mirror = NULL;
112 
113   if (is_shared()) {
114     if (k != vmClasses::Object_klass()) {
115       super();
116     }
117     //compute_nonstatic_fields();  // done outside of constructor
118   }
119 
120   _field_cache = NULL;
121 }
122 
123 // Version for unloaded classes:
124 ciInstanceKlass::ciInstanceKlass(ciSymbol* name,
125                                  jobject loader, jobject protection_domain,
126                                  BasicType bt)
127   : ciKlass(name, bt)
128 {
129   assert(name->char_at(0) != JVM_SIGNATURE_ARRAY, "not an instance klass");
130   _init_state = (InstanceKlass::ClassState)0;
131   _has_nonstatic_fields = false;
132   _nonstatic_fields = NULL;            // initialized lazily by compute_nonstatic_fields
133   _has_injected_fields = -1;
134   _is_hidden = false;
135   _is_record = false;
136   _loader = loader;
137   _protection_domain = protection_domain;
138   _is_shared = false;
139   _super = NULL;
140   _java_mirror = NULL;
141   _field_cache = NULL;
142   _has_trusted_loader = compute_has_trusted_loader();
143 }
144 
145 
146 
147 // ------------------------------------------------------------------
148 // ciInstanceKlass::compute_shared_is_initialized
149 void ciInstanceKlass::compute_shared_init_state() {
150   GUARDED_VM_ENTRY(
151     InstanceKlass* ik = get_instanceKlass();
152     _init_state = ik->init_state();

324   if (name()->index_of_at(len+1, "/", 1) >= 0)
325     return false;
326 
327   return true;
328 }
329 
330 // ------------------------------------------------------------------
331 // ciInstanceKlass::print_impl
332 //
333 // Implementation of the print method.
334 void ciInstanceKlass::print_impl(outputStream* st) {
335   ciKlass::print_impl(st);
336   GUARDED_VM_ENTRY(st->print(" loader=" INTPTR_FORMAT, p2i(loader()));)
337   if (is_loaded()) {
338     st->print(" initialized=%s finalized=%s subklass=%s size=%d flags=",
339               bool_to_str(is_initialized()),
340               bool_to_str(has_finalizer()),
341               bool_to_str(has_subklass()),
342               layout_helper());
343 
344     _flags.print_klass_flags(st);
345 
346     if (_super) {
347       st->print(" super=");
348       _super->print_name_on(st);
349     }
350     if (_java_mirror) {
351       st->print(" mirror=PRESENT");
352     }
353   }
354 }
355 
356 // ------------------------------------------------------------------
357 // ciInstanceKlass::super
358 //
359 // Get the superklass of this klass.
360 ciInstanceKlass* ciInstanceKlass::super() {
361   assert(is_loaded(), "must be loaded");
362   if (_super == NULL && !is_java_lang_Object()) {
363     GUARDED_VM_ENTRY(
364       Klass* super_klass = get_instanceKlass()->super();
365       _super = CURRENT_ENV->get_instance_klass(super_klass);
366     )
367   }
368   return _super;

422       ciField* field = _nonstatic_fields->at(i);
423       int  field_off = field->offset_in_bytes();
424       if (field_off == field_offset)
425         return field;
426       if (field_off > field_offset)
427         break;
428       // could do binary search or check bins, but probably not worth it
429     }
430     return NULL;
431   }
432   VM_ENTRY_MARK;
433   InstanceKlass* k = get_instanceKlass();
434   fieldDescriptor fd;
435   if (!k->find_field_from_offset(field_offset, is_static, &fd)) {
436     return NULL;
437   }
438   ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
439   return field;
440 }
441 
442 ciField* ciInstanceKlass::get_non_flattened_field_by_offset(int field_offset) {
443   if (super() != NULL && super()->has_nonstatic_fields()) {
444     ciField* f = super()->get_non_flattened_field_by_offset(field_offset);
445     if (f != NULL) {
446       return f;
447     }
448   }
449 
450   VM_ENTRY_MARK;
451   InstanceKlass* k = get_instanceKlass();
452   Arena* arena = CURRENT_ENV->arena();
453   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
454     if (fs.access_flags().is_static())  continue;
455     fieldDescriptor& fd = fs.field_descriptor();
456     if (fd.offset() == field_offset) {
457       ciField* f = new (arena) ciField(&fd);
458       return f;
459     }
460   }
461 
462   return NULL;
463 }
464 
465 // ------------------------------------------------------------------
466 // ciInstanceKlass::get_field_by_name
467 ciField* ciInstanceKlass::get_field_by_name(ciSymbol* name, ciSymbol* signature, bool is_static) {
468   VM_ENTRY_MARK;
469   InstanceKlass* k = get_instanceKlass();
470   fieldDescriptor fd;
471   Klass* def = k->find_field(name->get_symbol(), signature->get_symbol(), is_static, &fd);
472   if (def == NULL) {
473     return NULL;
474   }
475   ciField* field = new (CURRENT_THREAD_ENV->arena()) ciField(&fd);
476   return field;
477 }
478 
479 
480 static int sort_field_by_offset(ciField** a, ciField** b) {
481   return (*a)->offset_in_bytes() - (*b)->offset_in_bytes();
482   // (no worries about 32-bit overflow...)
483 }
484 

503     int super_flen   = super->nof_nonstatic_fields();
504     super_fields = super->_nonstatic_fields;
505     assert(super_flen == 0 || super_fields != NULL, "first get nof_fields");
506   }
507 
508   GrowableArray<ciField*>* fields = NULL;
509   GUARDED_VM_ENTRY({
510       fields = compute_nonstatic_fields_impl(super_fields);
511     });
512 
513   if (fields == NULL) {
514     // This can happen if this class (java.lang.Class) has invisible fields.
515     if (super_fields != NULL) {
516       _nonstatic_fields = super_fields;
517       return super_fields->length();
518     } else {
519       return 0;
520     }
521   }
522 





523   _nonstatic_fields = fields;
524   return fields->length();
525 }
526 
527 GrowableArray<ciField*>* ciInstanceKlass::compute_nonstatic_fields_impl(GrowableArray<ciField*>* super_fields, bool flatten) {


528   ASSERT_IN_VM;
529   Arena* arena = CURRENT_ENV->arena();
530   int flen = 0;
531   GrowableArray<ciField*>* fields = NULL;
532   InstanceKlass* k = get_instanceKlass();
533   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
534     if (fs.access_flags().is_static())  continue;
535     flen += 1;
536   }
537 
538   // allocate the array:
539   if (flen == 0) {
540     return NULL;  // return nothing if none are locally declared
541   }
542   if (super_fields != NULL) {
543     flen += super_fields->length();
544   }
545 
546   fields = new (arena) GrowableArray<ciField*>(arena, flen, 0, NULL);
547   if (super_fields != NULL) {
548     fields->appendAll(super_fields);
549   }
550 
551   for (JavaFieldStream fs(k); !fs.done(); fs.next()) {
552     if (fs.access_flags().is_static())  continue;
553     fieldDescriptor& fd = fs.field_descriptor();
554     if (fd.is_inlined() && flatten) {
555       // Inline type fields are embedded
556       int field_offset = fd.offset();
557       // Get InlineKlass and adjust number of fields
558       Klass* k = get_instanceKlass()->get_inline_type_field_klass(fd.index());
559       ciInlineKlass* vk = CURRENT_ENV->get_klass(k)->as_inline_klass();
560       flen += vk->nof_nonstatic_fields() - 1;
561       // Iterate over fields of the flattened inline type and copy them to 'this'
562       for (int i = 0; i < vk->nof_nonstatic_fields(); ++i) {
563         ciField* flattened_field = vk->nonstatic_field_at(i);
564         // Adjust offset to account for missing oop header
565         int offset = field_offset + (flattened_field->offset() - vk->first_field_offset());
566         // A flattened field can be treated as final if the non-flattened
567         // field is declared final or the holder klass is an inline type itself.
568         bool is_final = fd.is_final() || is_inlinetype();
569         ciField* field = new (arena) ciField(flattened_field, this, offset, is_final);
570         fields->append(field);
571       }
572     } else {
573       ciField* field = new (arena) ciField(&fd);
574       fields->append(field);
575     }
576   }
577   assert(fields->length() == flen, "sanity");
578   // Now sort them by offset, ascending.
579   // (In principle, they could mix with superclass fields.)
580   fields->sort(sort_field_by_offset);
581   return fields;
582 }
583 
584 bool ciInstanceKlass::compute_injected_fields_helper() {
585   ASSERT_IN_VM;
586   InstanceKlass* k = get_instanceKlass();
587 
588   for (InternalFieldStream fs(k); !fs.done(); fs.next()) {
589     if (fs.access_flags().is_static())  continue;
590     return true;
591   }
592   return false;
593 }
594 
595 void ciInstanceKlass::compute_injected_fields() {
596   assert(is_loaded(), "must be loaded");
597 
598   int has_injected_fields = 0;
599   if (super() != NULL && super()->has_injected_fields()) {
600     has_injected_fields = 1;

667     } else {
668       // Go into the VM to fetch the implementor.
669       VM_ENTRY_MARK;
670       MutexLocker ml(Compile_lock);
671       Klass* k = get_instanceKlass()->implementor();
672       if (k != NULL) {
673         if (k == get_instanceKlass()) {
674           // More than one implementors. Use 'this' in this case.
675           impl = this;
676         } else {
677           impl = CURRENT_THREAD_ENV->get_instance_klass(k);
678         }
679       }
680     }
681     // Memoize this result.
682     _implementor = impl;
683   }
684   return impl;
685 }
686 
687 bool ciInstanceKlass::can_be_inline_klass(bool is_exact) {
688   if (!EnableValhalla) {
689     return false;
690   }
691   if (!is_loaded() || is_inlinetype()) {
692     // Not loaded or known to be an inline klass
693     return true;
694   }
695   if (!is_exact) {
696     // Not exact, check if this is a valid super for an inline klass
697     VM_ENTRY_MARK;
698     return !get_instanceKlass()->carries_identity_modifier();
699   }
700   return false;
701 }
702 
703 // Utility class for printing of the contents of the static fields for
704 // use by compilation replay.  It only prints out the information that
705 // could be consumed by the compiler, so for primitive types it prints
706 // out the actual value.  For Strings it's the actual string value.
707 // For array types it it's first level array size since that's the
708 // only value which statically unchangeable.  For all other reference
709 // types it simply prints out the dynamic type.
710 
711 class StaticFieldPrinter : public FieldClosure {
712 protected:
713   outputStream* _out;
714 public:
715   StaticFieldPrinter(outputStream* out) :
716     _out(out) {
717   }
718   void do_field_helper(fieldDescriptor* fd, oop obj, bool flattened);
719 };
720 
721 class StaticFinalFieldPrinter : public StaticFieldPrinter {
722   const char*   _holder;
723  public:
724   StaticFinalFieldPrinter(outputStream* out, const char* holder) :
725     StaticFieldPrinter(out), _holder(holder) {

726   }
727   void do_field(fieldDescriptor* fd) {
728     if (fd->is_final() && !fd->has_initial_value()) {
729       ResourceMark rm;
730       InstanceKlass* holder = fd->field_holder();
731       oop mirror = holder->java_mirror();
732       _out->print("staticfield %s %s ", _holder, fd->name()->as_quoted_ascii());
733       BasicType bt = fd->field_type();
734       if (bt != T_OBJECT && bt != T_ARRAY) {
735         _out->print("%s ", fd->signature()->as_quoted_ascii());
736       }
737       do_field_helper(fd, mirror, false);
738       _out->cr();
739     }
740   }
741 };
742 
743 class InlineTypeFieldPrinter : public StaticFieldPrinter {
744   oop _obj;
745 public:
746   InlineTypeFieldPrinter(outputStream* out, oop obj) :
747     StaticFieldPrinter(out), _obj(obj) {
748   }
749   void do_field(fieldDescriptor* fd) {
750     do_field_helper(fd, _obj, true);
751     _out->print(" ");
752   }
753 };
754 
755 void StaticFieldPrinter::do_field_helper(fieldDescriptor* fd, oop mirror, bool flattened) {
756   BasicType bt = fd->field_type();
757   switch (bt) {
758     case T_BYTE:    _out->print("%d", mirror->byte_field(fd->offset()));   break;
759     case T_BOOLEAN: _out->print("%d", mirror->bool_field(fd->offset()));   break;
760     case T_SHORT:   _out->print("%d", mirror->short_field(fd->offset()));  break;
761     case T_CHAR:    _out->print("%d", mirror->char_field(fd->offset()));   break;
762     case T_INT:     _out->print("%d", mirror->int_field(fd->offset()));    break;
763     case T_LONG:    _out->print(INT64_FORMAT, (int64_t)(mirror->long_field(fd->offset())));   break;
764     case T_FLOAT: {
765       float f = mirror->float_field(fd->offset());
766       _out->print("%d", *(int*)&f);
767       break;
768     }
769     case T_DOUBLE: {
770       double d = mirror->double_field(fd->offset());
771       _out->print(INT64_FORMAT, *(int64_t*)&d);
772       break;
773     }
774     case T_ARRAY:  // fall-through
775     case T_OBJECT: {
776       _out->print("%s ", fd->signature()->as_quoted_ascii());
777       oop value =  mirror->obj_field_acquire(fd->offset());
778       if (value == NULL) {
779         _out->print_cr("null");
780       } else if (value->is_instance()) {
781         assert(fd->field_type() == T_OBJECT, "");
782         if (value->is_a(vmClasses::String_klass())) {
783           const char* ascii_value = java_lang_String::as_quoted_ascii(value);
784           _out->print("\"%s\"", (ascii_value != NULL) ? ascii_value : "");
785          } else {
786           const char* klass_name  = value->klass()->name()->as_quoted_ascii();
787           _out->print("%s", klass_name);
788         }
789       } else if (value->is_array()) {
790         typeArrayOop ta = (typeArrayOop)value;
791         _out->print("%d", ta->length());
792         if (value->is_objArray() || value->is_flatArray()) {
793           objArrayOop oa = (objArrayOop)value;
794           const char* klass_name  = value->klass()->name()->as_quoted_ascii();
795           _out->print(" %s", klass_name);
796         }
797       } else {
798         ShouldNotReachHere();
799       }
800       break;
801     }
802     case T_PRIMITIVE_OBJECT: {
803       ResetNoHandleMark rnhm;
804       Thread* THREAD = Thread::current();
805       SignatureStream ss(fd->signature(), false);
806       Symbol* name = ss.as_symbol();
807       assert(!HAS_PENDING_EXCEPTION, "can resolve klass?");
808       InstanceKlass* holder = fd->field_holder();
809       InstanceKlass* k = SystemDictionary::find_instance_klass(THREAD, name,
810                                                                Handle(THREAD, holder->class_loader()),
811                                                                Handle(THREAD, holder->protection_domain()));
812       assert(k != NULL && !HAS_PENDING_EXCEPTION, "can resolve klass?");
813       InlineKlass* vk = InlineKlass::cast(k);
814       oop obj;
815       if (flattened) {
816         int field_offset = fd->offset() - vk->first_field_offset();
817         obj = cast_to_oop(cast_from_oop<address>(mirror) + field_offset);
818       } else {
819         obj = mirror->obj_field_acquire(fd->offset());
820       }
821       InlineTypeFieldPrinter print_field(_out, obj);
822       vk->do_nonstatic_fields(&print_field);
823       break;
824     }
825     default:
826       ShouldNotReachHere();
827   }
828 }
829 
830 const char *ciInstanceKlass::replay_name() const {
831   return CURRENT_ENV->replay_name(get_instanceKlass());
832 }
833 
834 void ciInstanceKlass::dump_replay_instanceKlass(outputStream* out, InstanceKlass* ik) {
835   if (ik->is_hidden()) {
836     const char *name = CURRENT_ENV->dyno_name(ik);
837     if (name != NULL) {
838       out->print_cr("instanceKlass %s # %s", name, ik->name()->as_quoted_ascii());
839     } else {
840       out->print_cr("# instanceKlass %s", ik->name()->as_quoted_ascii());
841     }
842   } else {
843     out->print_cr("instanceKlass %s", ik->name()->as_quoted_ascii());
844   }
845 }
846 
847 GrowableArray<ciInstanceKlass*>* ciInstanceKlass::transitive_interfaces() const{
848   if (_transitive_interfaces == NULL) {
< prev index next >