@@ -392,6 +392,23 @@ ciInstance* ciEnv::get_or_create_exception(jobject& handle, Symbol* name) {
392
392
return obj == NULL ? NULL : get_object (obj)->as_instance ();
393
393
}
394
394
395
+ ciInstanceKlass* ciEnv::get_box_klass_for_primitive_type (BasicType type) {
396
+ switch (type) {
397
+ case T_BOOLEAN: return Boolean_klass ();
398
+ case T_BYTE : return Byte_klass ();
399
+ case T_CHAR : return Character_klass ();
400
+ case T_SHORT : return Short_klass ();
401
+ case T_INT : return Integer_klass ();
402
+ case T_LONG : return Long_klass ();
403
+ case T_FLOAT : return Float_klass ();
404
+ case T_DOUBLE : return Double_klass ();
405
+
406
+ default :
407
+ assert (false , " not a primitive: %s" , type2name (type));
408
+ return NULL ;
409
+ }
410
+ }
411
+
395
412
ciInstance* ciEnv::ArrayIndexOutOfBoundsException_instance () {
396
413
if (_ArrayIndexOutOfBoundsException_instance == NULL ) {
397
414
_ArrayIndexOutOfBoundsException_instance
@@ -650,54 +667,75 @@ ciKlass* ciEnv::get_klass_by_index(const constantPoolHandle& cpool,
650
667
GUARDED_VM_ENTRY (return get_klass_by_index_impl (cpool, index , is_accessible, accessor);)
651
668
}
652
669
670
+ // ------------------------------------------------------------------
671
+ // ciEnv::unbox_primitive_value
672
+ //
673
+ // Unbox a primitive and return it as a ciConstant.
674
+ ciConstant ciEnv::unbox_primitive_value (ciObject* cibox, BasicType expected_bt) {
675
+ jvalue value;
676
+ BasicType bt = java_lang_boxing_object::get_value (cibox->get_oop (), &value);
677
+ if (bt != expected_bt && expected_bt != T_ILLEGAL) {
678
+ assert (false , " type mismatch: %s vs %s" , type2name (expected_bt), cibox->klass ()->name ()->as_klass_external_name ());
679
+ return ciConstant ();
680
+ }
681
+ switch (bt) {
682
+ case T_BOOLEAN: return ciConstant (bt, value.z );
683
+ case T_BYTE: return ciConstant (bt, value.b );
684
+ case T_SHORT: return ciConstant (bt, value.s );
685
+ case T_CHAR: return ciConstant (bt, value.c );
686
+ case T_INT: return ciConstant (bt, value.i );
687
+ case T_LONG: return ciConstant (value.j );
688
+ case T_FLOAT: return ciConstant (value.f );
689
+ case T_DOUBLE: return ciConstant (value.d );
690
+
691
+ default :
692
+ assert (false , " not a primitive type: %s" , type2name (bt));
693
+ return ciConstant ();
694
+ }
695
+ }
696
+
697
+ // ------------------------------------------------------------------
698
+ // ciEnv::get_resolved_constant
699
+ //
700
+ ciConstant ciEnv::get_resolved_constant (const constantPoolHandle& cpool, int obj_index) {
701
+ assert (obj_index >= 0 , " " );
702
+ oop obj = cpool->resolved_references ()->obj_at (obj_index);
703
+ if (obj == NULL ) {
704
+ // Unresolved constant. It is resolved when the corresponding slot contains a non-null reference.
705
+ // Null constant is represented as a sentinel (non-null) value.
706
+ return ciConstant ();
707
+ } else if (obj == Universe::the_null_sentinel ()) {
708
+ return ciConstant (T_OBJECT, get_object (NULL ));
709
+ } else {
710
+ ciObject* ciobj = get_object (obj);
711
+ if (ciobj->is_array ()) {
712
+ return ciConstant (T_ARRAY, ciobj);
713
+ } else {
714
+ int cp_index = cpool->object_to_cp_index (obj_index);
715
+ BasicType bt = cpool->basic_type_for_constant_at (cp_index);
716
+ if (is_java_primitive (bt)) {
717
+ assert (cpool->tag_at (cp_index).is_dynamic_constant (), " sanity" );
718
+ return unbox_primitive_value (ciobj, bt);
719
+ } else {
720
+ assert (ciobj->is_instance (), " should be an instance" );
721
+ return ciConstant (T_OBJECT, ciobj);
722
+ }
723
+ }
724
+ }
725
+ }
726
+
653
727
// ------------------------------------------------------------------
654
728
// ciEnv::get_constant_by_index_impl
655
729
//
656
730
// Implementation of get_constant_by_index().
657
731
ciConstant ciEnv::get_constant_by_index_impl (const constantPoolHandle& cpool,
658
- int pool_index , int cache_index ,
732
+ int index , int obj_index ,
659
733
ciInstanceKlass* accessor) {
660
734
bool ignore_will_link;
661
- int index = pool_index;
662
- if (cache_index >= 0 ) {
663
- assert (index < 0 , " only one kind of index at a time" );
664
- index = cpool->object_to_cp_index (cache_index);
665
- oop obj = cpool->resolved_references ()->obj_at (cache_index);
666
- if (obj != NULL ) {
667
- if (obj == Universe::the_null_sentinel ()) {
668
- return ciConstant (T_OBJECT, get_object (NULL ));
669
- }
670
- BasicType bt = T_OBJECT;
671
- if (cpool->tag_at (index ).is_dynamic_constant ()) {
672
- bt = Signature::basic_type (cpool->uncached_signature_ref_at (index ));
673
- }
674
- if (!is_reference_type (bt)) {
675
- // we have to unbox the primitive value
676
- if (!is_java_primitive (bt)) {
677
- return ciConstant ();
678
- }
679
- jvalue value;
680
- BasicType bt2 = java_lang_boxing_object::get_value (obj, &value);
681
- assert (bt2 == bt, " " );
682
- switch (bt2) {
683
- case T_DOUBLE: return ciConstant (value.d );
684
- case T_FLOAT: return ciConstant (value.f );
685
- case T_LONG: return ciConstant (value.j );
686
- case T_INT: return ciConstant (bt2, value.i );
687
- case T_SHORT: return ciConstant (bt2, value.s );
688
- case T_BYTE: return ciConstant (bt2, value.b );
689
- case T_CHAR: return ciConstant (bt2, value.c );
690
- case T_BOOLEAN: return ciConstant (bt2, value.z );
691
- default : return ciConstant ();
692
- }
693
- }
694
- ciObject* ciobj = get_object (obj);
695
- if (ciobj->is_array ()) {
696
- return ciConstant (T_ARRAY, ciobj);
697
- } else {
698
- assert (ciobj->is_instance (), " should be an instance" );
699
- return ciConstant (T_OBJECT, ciobj);
700
- }
735
+ if (obj_index >= 0 ) {
736
+ ciConstant con = get_resolved_constant (cpool, obj_index);
737
+ if (con.is_valid ()) {
738
+ return con;
701
739
}
702
740
}
703
741
constantTag tag = cpool->tag_at (index );
@@ -711,35 +749,29 @@ ciConstant ciEnv::get_constant_by_index_impl(const constantPoolHandle& cpool,
711
749
return ciConstant ((jdouble)cpool->double_at (index ));
712
750
} else if (tag.is_string ()) {
713
751
EXCEPTION_CONTEXT;
714
- oop string = NULL ;
715
- assert (cache_index >= 0 , " should have a cache index" );
716
- string = cpool->string_at (index , cache_index, THREAD);
752
+ assert (obj_index >= 0 , " should have an object index" );
753
+ oop string = cpool->string_at (index , obj_index, THREAD);
717
754
if (HAS_PENDING_EXCEPTION) {
718
755
CLEAR_PENDING_EXCEPTION;
719
756
record_out_of_memory_failure ();
720
757
return ciConstant ();
721
758
}
722
- ciObject* constant = get_object (string);
723
- if (constant->is_array ()) {
724
- return ciConstant (T_ARRAY, constant);
725
- } else {
726
- assert (constant->is_instance (), " must be an instance, or not? " );
727
- return ciConstant (T_OBJECT, constant);
728
- }
759
+ ciInstance* constant = get_object (string)->as_instance ();
760
+ return ciConstant (T_OBJECT, constant);
729
761
} else if (tag.is_unresolved_klass_in_error ()) {
730
762
return ciConstant (T_OBJECT, get_unloaded_klass_mirror (NULL ));
731
763
} else if (tag.is_klass () || tag.is_unresolved_klass ()) {
732
764
ciKlass* klass = get_klass_by_index_impl (cpool, index , ignore_will_link, accessor);
733
- assert (klass->is_instance_klass () || klass->is_array_klass (),
734
- " must be an instance or array klass " );
735
765
return ciConstant (T_OBJECT, klass->java_mirror ());
736
766
} else if (tag.is_method_type () || tag.is_method_type_in_error ()) {
737
767
// must execute Java code to link this CP entry into cache[i].f1
768
+ assert (obj_index >= 0 , " should have an object index" );
738
769
ciSymbol* signature = get_symbol (cpool->method_type_signature_at (index ));
739
770
ciObject* ciobj = get_unloaded_method_type_constant (signature);
740
771
return ciConstant (T_OBJECT, ciobj);
741
772
} else if (tag.is_method_handle () || tag.is_method_handle_in_error ()) {
742
773
// must execute Java code to link this CP entry into cache[i].f1
774
+ assert (obj_index >= 0 , " should have an object index" );
743
775
int ref_kind = cpool->method_handle_ref_kind_at (index );
744
776
int callee_index = cpool->method_handle_klass_index_at (index );
745
777
ciKlass* callee = get_klass_by_index_impl (cpool, callee_index, ignore_will_link, accessor);
@@ -748,7 +780,8 @@ ciConstant ciEnv::get_constant_by_index_impl(const constantPoolHandle& cpool,
748
780
ciObject* ciobj = get_unloaded_method_handle_constant (callee, name, signature, ref_kind);
749
781
return ciConstant (T_OBJECT, ciobj);
750
782
} else if (tag.is_dynamic_constant () || tag.is_dynamic_constant_in_error ()) {
751
- return ciConstant (); // not supported
783
+ assert (obj_index >= 0 , " should have an object index" );
784
+ return ciConstant (T_OBJECT, unloaded_ciinstance ()); // unresolved dynamic constant
752
785
} else {
753
786
assert (false , " unknown tag: %d (%s)" , tag.value (), tag.internal_name ());
754
787
return ciConstant ();
0 commit comments