src/share/vm/opto/escape.cpp

changeset 7027
b20a35eae442
parent 6637
87b5e00100fe
child 7152
166d744df0de
     1.1 --- a/src/share/vm/opto/escape.cpp	Tue Jun 10 12:28:06 2014 -0700
     1.2 +++ b/src/share/vm/opto/escape.cpp	Wed Jun 11 11:05:10 2014 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -938,7 +938,13 @@
    1.11                    strcmp(call->as_CallLeaf()->_name, "aescrypt_encryptBlock") == 0 ||
    1.12                    strcmp(call->as_CallLeaf()->_name, "aescrypt_decryptBlock") == 0 ||
    1.13                    strcmp(call->as_CallLeaf()->_name, "cipherBlockChaining_encryptAESCrypt") == 0 ||
    1.14 -                  strcmp(call->as_CallLeaf()->_name, "cipherBlockChaining_decryptAESCrypt") == 0)
    1.15 +                  strcmp(call->as_CallLeaf()->_name, "cipherBlockChaining_decryptAESCrypt") == 0 ||
    1.16 +                  strcmp(call->as_CallLeaf()->_name, "sha1_implCompress") == 0 ||
    1.17 +                  strcmp(call->as_CallLeaf()->_name, "sha1_implCompressMB") == 0 ||
    1.18 +                  strcmp(call->as_CallLeaf()->_name, "sha256_implCompress") == 0 ||
    1.19 +                  strcmp(call->as_CallLeaf()->_name, "sha256_implCompressMB") == 0 ||
    1.20 +                  strcmp(call->as_CallLeaf()->_name, "sha512_implCompress") == 0 ||
    1.21 +                  strcmp(call->as_CallLeaf()->_name, "sha512_implCompressMB") == 0)
    1.22                    ))) {
    1.23              call->dump();
    1.24              fatal(err_msg_res("EA unexpected CallLeaf %s", call->as_CallLeaf()->_name));

mercurial