comparison src/share/vm/prims/methodHandles.hpp @ 3371:fabcf26ee72f

6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW Reviewed-by: jrose, kvn, never
author twisti
date Thu, 12 May 2011 14:04:48 -0700
parents 167b70ff3abc
children 33ae33516634
comparison
equal deleted inserted replaced
3370:2f17eb233d13 3371:fabcf26ee72f
696 KlassHandle receiver_limit, 696 KlassHandle receiver_limit,
697 int decode_flags, 697 int decode_flags,
698 KlassHandle receiver_klass, 698 KlassHandle receiver_klass,
699 TRAPS); 699 TRAPS);
700 700
701 public:
702 static bool is_float_fixed_reinterpretation_cast(BasicType src, BasicType dst);
701 static bool same_basic_type_for_arguments(BasicType src, BasicType dst, 703 static bool same_basic_type_for_arguments(BasicType src, BasicType dst,
702 bool raw = false, 704 bool raw = false,
703 bool for_return = false); 705 bool for_return = false);
704 static bool same_basic_type_for_returns(BasicType src, BasicType dst, bool raw = false) { 706 static bool same_basic_type_for_returns(BasicType src, BasicType dst, bool raw = false) {
705 return same_basic_type_for_arguments(src, dst, raw, true); 707 return same_basic_type_for_arguments(src, dst, raw, true);