提交 5358ec07 编写于 作者: I iveresov

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
上级 9c88edc1
...@@ -1175,7 +1175,9 @@ bool LibraryCallKit::inline_string_indexOf() { ...@@ -1175,7 +1175,9 @@ bool LibraryCallKit::inline_string_indexOf() {
Node *receiver = pop(); Node *receiver = pop();
Node* result; 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) { UseSSE42Intrinsics) {
// Generate SSE4.2 version of indexOf // Generate SSE4.2 version of indexOf
// We currently only have match rules that use SSE4.2 // We currently only have match rules that use SSE4.2
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册