< prev index next >

test/compiler/codegen/aes/TestAESMain.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 7184394
  28  * @key stress
  29  * @summary add intrinsics to use AES instructions
  30  * @library /testlibrary /
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  *
  34  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC
  35  *      compiler.codegen.aes.TestAESMain
  36  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1
  37  *      compiler.codegen.aes.TestAESMain
  38  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencOutputOffset=1
  39  *      compiler.codegen.aes.TestAESMain
  40  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DdecOutputOffset=1
  41  *      compiler.codegen.aes.TestAESMain
  42  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1
  43  *      compiler.codegen.aes.TestAESMain
  44  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1 -DdecOutputOffset=1
  45  *      compiler.codegen.aes.TestAESMain
  46  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1 -DdecOutputOffset=1 -DpaddingStr=NoPadding -DmsgSize=640
  47  *      compiler.codegen.aes.TestAESMain
  48  *
  49  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=ECB
  50  *      compiler.codegen.aes.TestAESMain




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 7184394
  28  * @key stress
  29  * @summary add intrinsics to use AES instructions
  30  * @library /test/lib /
  31  * @modules java.base/jdk.internal.misc
  32  *          java.management
  33  *
  34  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC
  35  *      compiler.codegen.aes.TestAESMain
  36  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1
  37  *      compiler.codegen.aes.TestAESMain
  38  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencOutputOffset=1
  39  *      compiler.codegen.aes.TestAESMain
  40  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DdecOutputOffset=1
  41  *      compiler.codegen.aes.TestAESMain
  42  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1
  43  *      compiler.codegen.aes.TestAESMain
  44  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1 -DdecOutputOffset=1
  45  *      compiler.codegen.aes.TestAESMain
  46  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=CBC -DencInputOffset=1 -DencOutputOffset=1 -DdecOutputOffset=1 -DpaddingStr=NoPadding -DmsgSize=640
  47  *      compiler.codegen.aes.TestAESMain
  48  *
  49  * @run main/othervm/timeout=600 -Xbatch -DcheckOutput=true -Dmode=ECB
  50  *      compiler.codegen.aes.TestAESMain


< prev index next >