hotspot/src/cpu/x86/vm/stubRoutines_x86.hpp
author vdeshpande
Thu, 03 Mar 2016 22:02:13 -0800
changeset 36555 4f37fd7a5a09
parent 35154 a9b3c1984a01
child 38018 1dc6c6f21231
permissions -rw-r--r--
8150767: Enables SHA Extensions on x86 Summary: Add x86 intrinsics for SHA-1 and SHA-256. Reviewed-by: kvn, twisti Contributed-by: vivek.r.deshpande@intel.com, shravya.rukmannagari@intel.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     1
/*
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     4
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     7
 * published by the Free Software Foundation.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     8
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    13
 * accompanied this code).
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    14
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    18
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    21
 * questions.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    22
 *
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    23
 */
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    24
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    25
#ifndef CPU_X86_VM_STUBROUTINES_X86_HPP
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    26
#define CPU_X86_VM_STUBROUTINES_X86_HPP
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    27
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    28
// This file holds the platform specific parts of the StubRoutines
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    29
// definition. See stubRoutines.hpp for a description on how to
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    30
// extend it.
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    31
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    32
 private:
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    33
  static address _verify_mxcsr_entry;
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    34
  // shuffle mask for fixing up 128-bit words consisting of big-endian 32-bit integers
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    35
  static address _key_shuffle_mask_addr;
35154
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 33066
diff changeset
    36
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 33066
diff changeset
    37
  //shuffle mask for big-endian 128-bit integers
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 33066
diff changeset
    38
  static address _counter_shuffle_mask_addr;
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 33066
diff changeset
    39
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    40
  // masks and table for CRC32
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    41
  static uint64_t _crc_by128_masks[];
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    42
  static juint    _crc_table[];
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 31404
diff changeset
    43
  // table for CRC32C
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 31404
diff changeset
    44
  static juint* _crc32c_table;
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
    45
  // swap mask for ghash
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
    46
  static address _ghash_long_swap_mask_addr;
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
    47
  static address _ghash_byte_swap_mask_addr;
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    48
36555
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    49
  // upper word mask for sha1
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    50
  static address _upper_word_mask_addr;
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    51
  // byte flip mask for sha1
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    52
  static address _shuffle_byte_flip_mask_addr;
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    53
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    54
  //k256 table for sha256
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    55
  static juint _k256[];
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    56
  static address _k256_adr;
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    57
  // byte flip mask for sha256
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    58
  static address _pshuffle_byte_flip_mask_addr;
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    59
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    60
 public:
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    61
  static address verify_mxcsr_entry()    { return _verify_mxcsr_entry; }
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    62
  static address key_shuffle_mask_addr() { return _key_shuffle_mask_addr; }
35154
a9b3c1984a01 8143925: Enhancing CounterMode.crypt() for AES
kvn
parents: 33066
diff changeset
    63
  static address counter_shuffle_mask_addr() { return _counter_shuffle_mask_addr; }
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    64
  static address crc_by128_masks_addr()  { return (address)_crc_by128_masks; }
31404
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
    65
  static address ghash_long_swap_mask_addr() { return _ghash_long_swap_mask_addr; }
63e8fcd70bfc 8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents: 18507
diff changeset
    66
  static address ghash_byte_swap_mask_addr() { return _ghash_byte_swap_mask_addr; }
36555
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    67
  static address upper_word_mask_addr() { return _upper_word_mask_addr; }
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    68
  static address shuffle_byte_flip_mask_addr() { return _shuffle_byte_flip_mask_addr; }
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    69
  static address k256_addr()      { return _k256_adr; }
4f37fd7a5a09 8150767: Enables SHA Extensions on x86
vdeshpande
parents: 35154
diff changeset
    70
  static address pshuffle_byte_flip_mask_addr() { return _pshuffle_byte_flip_mask_addr; }
33066
d98eab8215c4 8134553: CRC32C implementations for x86/x64 targets
kvn
parents: 31404
diff changeset
    71
  static void generate_CRC32C_table(bool is_pclmulqdq_supported);
18507
61bfc8995bb3 7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
diff changeset
    72
#endif // CPU_X86_VM_STUBROUTINES_X86_32_HPP