# HG changeset patch # User iveresov # Date 1272588838 25200 # Node ID ae8f909e5fc7b08443ebab7c87605d0029cf32fd # Parent c640000b7cc1c31b3633e8d0ae9a427bd725ea07 6948602: Disable use of SSE4.2 in String.indexOf intrinsic until 6942326 is fixed Summary: Disable the use of pcmpestri until it can be guaranteed that the load doesn't cross in to the uncommited space. See 6942326. Reviewed-by: never, kvn diff -r c640000b7cc1 -r ae8f909e5fc7 src/share/vm/opto/library_call.cpp --- a/src/share/vm/opto/library_call.cpp Thu Apr 29 06:30:25 2010 -0700 +++ b/src/share/vm/opto/library_call.cpp Thu Apr 29 17:53:58 2010 -0700 @@ -1175,7 +1175,9 @@ Node *receiver = pop(); Node* result; - if (Matcher::has_match_rule(Op_StrIndexOf) && + // Disable the use of pcmpestri until it can be guaranteed that + // the load doesn't cross into the uncommited space. + if (false && Matcher::has_match_rule(Op_StrIndexOf) && UseSSE42Intrinsics) { // Generate SSE4.2 version of indexOf // We currently only have match rules that use SSE4.2