comparison src/share/vm/opto/escape.cpp @ 20438:166d744df0de

8055494: Add C2 x86 intrinsic for BigInteger::multiplyToLen() method Summary: Add new C2 intrinsic for BigInteger::multiplyToLen() on x86 in 64-bit VM. Reviewed-by: roland
author kvn
date Tue, 02 Sep 2014 12:48:45 -0700
parents b20a35eae442
children 87f199a9c1b1
comparison
equal deleted inserted replaced
20437:bddcb33dadf4 20438:166d744df0de
942 strcmp(call->as_CallLeaf()->_name, "sha1_implCompress") == 0 || 942 strcmp(call->as_CallLeaf()->_name, "sha1_implCompress") == 0 ||
943 strcmp(call->as_CallLeaf()->_name, "sha1_implCompressMB") == 0 || 943 strcmp(call->as_CallLeaf()->_name, "sha1_implCompressMB") == 0 ||
944 strcmp(call->as_CallLeaf()->_name, "sha256_implCompress") == 0 || 944 strcmp(call->as_CallLeaf()->_name, "sha256_implCompress") == 0 ||
945 strcmp(call->as_CallLeaf()->_name, "sha256_implCompressMB") == 0 || 945 strcmp(call->as_CallLeaf()->_name, "sha256_implCompressMB") == 0 ||
946 strcmp(call->as_CallLeaf()->_name, "sha512_implCompress") == 0 || 946 strcmp(call->as_CallLeaf()->_name, "sha512_implCompress") == 0 ||
947 strcmp(call->as_CallLeaf()->_name, "sha512_implCompressMB") == 0) 947 strcmp(call->as_CallLeaf()->_name, "sha512_implCompressMB") == 0 ||
948 strcmp(call->as_CallLeaf()->_name, "multiplyToLen") == 0)
948 ))) { 949 ))) {
949 call->dump(); 950 call->dump();
950 fatal(err_msg_res("EA unexpected CallLeaf %s", call->as_CallLeaf()->_name)); 951 fatal(err_msg_res("EA unexpected CallLeaf %s", call->as_CallLeaf()->_name));
951 } 952 }
952 #endif 953 #endif