RFR: 8224162: assert(profile.count() == 0) failed: sanity in InlineTree::is_not_reached

Jie Fu fujie at loongson.cn
Sat Jun 1 01:37:17 UTC 2019


Hi Vladimir Ivanov,

Thanks for your review and suggestions.
Updated: http://cr.openjdk.java.net/~jiefu/8224162/webrev.10/

Thanks a lot.
Best regards,
Jie

On 2019/6/1 上午5:47, Vladimir Ivanov wrote:
> +template <typename L, typename R>
> +int ciMethod::saturated_add(L a, R b) {
>
> What do you think about moving it to globalDefinitions.hpp?
>
> Probably, it's worth getting rid of the template parameters and 
> introduce specializations (akin to JAVA_INTEGER_OP) since the 
> implementation makes sense only for int/uint.
It seems cool. I like this style.
>
> +  jlong sum  = src1 + src2;
> I'd prefer to see explicit casts to jlong to stress there's no 
> overflow possible here for 32-bit values.
>
Done
>
> +    return c < 0 ? max_jint : c;
> +      case Bytecodes::_instanceof: return c > 0 ? min_jint : c;
>
> Please, put parentheses around ternary expressions.
>
Done




More information about the hotspot-compiler-dev mailing list