hotspot/src/share/vm/utilities/copy.hpp
author coleenp
Thu, 18 May 2017 08:17:52 -0400
changeset 46475 75902cea18af
parent 40010 e32d5e545789
child 46504 38048d4d20e7
permissions -rw-r--r--
8166848: Performance bug: SystemDictionary - optimization Summary: Check instead that a bucket isn't 10x the average Reviewed-by: iklam, gziemski, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
36086
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
     2
 * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 670
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    25
#ifndef SHARE_VM_UTILITIES_COPY_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    26
#define SHARE_VM_UTILITIES_COPY_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    28
#include "runtime/stubRoutines.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 36086
diff changeset
    29
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Assembly code for platforms that need it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  void _Copy_conjoint_words(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  void _Copy_disjoint_words(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  void _Copy_conjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  void _Copy_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  void _Copy_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  void _Copy_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  void _Copy_conjoint_bytes(void* from, void* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  void _Copy_conjoint_bytes_atomic  (void*   from, void*   to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  void _Copy_conjoint_jints_atomic  (jint*   from, jint*   to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  void _Copy_conjoint_jlongs_atomic (jlong*  from, jlong*  to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  void _Copy_conjoint_oops_atomic   (oop*    from, oop*    to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  void _Copy_arrayof_conjoint_bytes  (HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  void _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  void _Copy_arrayof_conjoint_jints  (HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  void _Copy_arrayof_conjoint_jlongs (HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void _Copy_arrayof_conjoint_oops   (HeapWord* from, HeapWord* to, size_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
class Copy : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Block copy methods have four attributes.  We don't define all possibilities.
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
    60
  //   alignment: aligned to BytesPerLong
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  //   arrayof:   arraycopy operation with both operands aligned on the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  //              boundary as the first element of an array of the copy unit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  //              This is currently a HeapWord boundary on all platforms, except
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  //              for long and double arrays, which are aligned on an 8-byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  //              boundary on all platforms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  //              arraycopy operations are implicitly atomic on each array element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  //   overlap:   disjoint or conjoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  //   copy unit: bytes or words (i.e., HeapWords) or oops (i.e., pointers).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  //   atomicity: atomic or non-atomic on the copy unit.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Names are constructed thusly:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  //     [ 'aligned_' | 'arrayof_' ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  //     ('conjoint_' | 'disjoint_')
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  //     ('words' | 'bytes' | 'jshorts' | 'jints' | 'jlongs' | 'oops')
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  //     [ '_atomic' ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Except in the arrayof case, whatever the alignment is, we assume we can copy
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
    79
  // whole alignment units.  E.g., if BytesPerLong is 2x word alignment, an odd
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // count may copy an extra word.  In the arrayof case, we are allowed to copy
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // only the number of copy units specified.
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
    82
  //
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
    83
  // All callees check count for 0.
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
    84
  //
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // HeapWords
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Word-aligned words,    conjoint, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static void conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    assert_params_ok(from, to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    pd_conjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Word-aligned words,    disjoint, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static void disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    assert_params_ok(from, to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    assert_disjoint(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    pd_disjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Word-aligned words,    disjoint, atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static void disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    assert_params_ok(from, to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    assert_disjoint(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    pd_disjoint_words_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Object-aligned words,  conjoint, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static void aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    assert_params_aligned(from, to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    pd_aligned_conjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // Object-aligned words,  disjoint, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static void aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    assert_params_aligned(from, to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    assert_disjoint(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    pd_aligned_disjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // bytes, jshorts, jints, jlongs, oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // bytes,                 conjoint, not atomic on each byte (not that it matters)
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
   124
  static void conjoint_jbytes(void* from, void* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    pd_conjoint_bytes(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // bytes,                 conjoint, atomic on each byte (not that it matters)
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
   129
  static void conjoint_jbytes_atomic(void* from, void* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    pd_conjoint_bytes(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // jshorts,               conjoint, atomic on each jshort
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  static void conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    assert_params_ok(from, to, LogBytesPerShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    pd_conjoint_jshorts_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // jints,                 conjoint, atomic on each jint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  static void conjoint_jints_atomic(jint* from, jint* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    assert_params_ok(from, to, LogBytesPerInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    pd_conjoint_jints_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // jlongs,                conjoint, atomic on each jlong
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static void conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    assert_params_ok(from, to, LogBytesPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    pd_conjoint_jlongs_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // oops,                  conjoint, atomic on each oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  static void conjoint_oops_atomic(oop* from, oop* to, size_t count) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   153
    assert_params_ok(from, to, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    pd_conjoint_oops_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   157
  // overloaded for UseCompressedOops
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   158
  static void conjoint_oops_atomic(narrowOop* from, narrowOop* to, size_t count) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   159
    assert(sizeof(narrowOop) == sizeof(jint), "this cast is wrong");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   160
    assert_params_ok(from, to, LogBytesPerInt);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   161
    pd_conjoint_jints_atomic((jint*)from, (jint*)to, count);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   162
  }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   163
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Copy a span of memory.  If the span is an integral number of aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // longs, words, or ints, copy those units atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // The largest atomic transfer unit is 8 bytes, or the largest power
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // of two which divides all of from, to, and size, whichever is smaller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static void conjoint_memory_atomic(void* from, void* to, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // bytes,                 conjoint array, atomic on each byte (not that it matters)
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5702
diff changeset
   171
  static void arrayof_conjoint_jbytes(HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    pd_arrayof_conjoint_bytes(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // jshorts,               conjoint array, atomic on each jshort
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  static void arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    assert_params_ok(from, to, LogBytesPerShort);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    pd_arrayof_conjoint_jshorts(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // jints,                 conjoint array, atomic on each jint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  static void arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    assert_params_ok(from, to, LogBytesPerInt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    pd_arrayof_conjoint_jints(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // jlongs,                conjoint array, atomic on each jlong
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  static void arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    assert_params_ok(from, to, LogBytesPerLong);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    pd_arrayof_conjoint_jlongs(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // oops,                  conjoint array, atomic on each oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  static void arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   195
    assert_params_ok(from, to, LogBytesPerHeapOop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    pd_arrayof_conjoint_oops(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Known overlap methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Copy word-aligned words from higher to lower addresses, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  inline static void conjoint_words_to_lower(HeapWord* from, HeapWord* to, size_t byte_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    // byte_count is in bytes to check its alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    assert_params_ok(from, to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    assert_byte_count_ok(byte_count, HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    assert(to <= from || from + count <= to, "do not overwrite source data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      *to++ = *from++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // Copy word-aligned words from lower to higher addresses, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  inline static void conjoint_words_to_higher(HeapWord* from, HeapWord* to, size_t byte_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    // byte_count is in bytes to check its alignment
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    assert_params_ok(from, to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    assert_byte_count_ok(byte_count, HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    size_t count = (size_t)round_to(byte_count, HeapWordSize) >> LogHeapWordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    assert(from <= to || to + count <= from, "do not overwrite source data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    from += count - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    to   += count - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
      *to-- = *from--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
36086
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   231
  /**
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   232
   * Copy and *unconditionally* byte swap elements
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   233
   *
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   234
   * @param src address of source
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   235
   * @param dst address of destination
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   236
   * @param byte_count number of bytes to copy
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   237
   * @param elem_size size of the elements to copy-swap
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   238
   */
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   239
  static void conjoint_swap(address src, address dst, size_t byte_count, size_t elem_size);
f70e100d3195 8141491: Unaligned memory access in Bits.c
mikael
parents: 29180
diff changeset
   240
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Fill methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // Fill word-aligned words, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // set_words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  static void fill_to_words(HeapWord* to, size_t count, juint value = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    assert_params_ok(to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    pd_fill_to_words(to, count, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  static void fill_to_aligned_words(HeapWord* to, size_t count, juint value = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    assert_params_aligned(to);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    pd_fill_to_aligned_words(to, count, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // Fill bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  static void fill_to_bytes(void* to, size_t count, jubyte value = 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    pd_fill_to_bytes(to, count, value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Fill a span of memory.  If the span is an integral number of aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // longs, words, or ints, store to those units atomically.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // The largest atomic transfer unit is 8 bytes, or the largest power
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // of two which divides both to and size, whichever is smaller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  static void fill_to_memory_atomic(void* to, size_t size, jubyte value = 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Zero-fill methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // Zero word-aligned words, not atomic on each word
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  static void zero_to_words(HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    assert_params_ok(to, LogHeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    pd_zero_to_words(to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Zero bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  static void zero_to_bytes(void* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    pd_zero_to_bytes(to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  static bool params_disjoint(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    if (from < to) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      return pointer_delta(to, from) >= count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    return pointer_delta(from, to) >= count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // These methods raise a fatal if they detect a problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  static void assert_disjoint(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    if (!params_disjoint(from, to, count))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      basic_fatal("source and dest overlap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  static void assert_params_ok(void* from, void* to, intptr_t log_align) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    if (mask_bits((uintptr_t)from, right_n_bits(log_align)) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
      basic_fatal("not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    if (mask_bits((uintptr_t)to, right_n_bits(log_align)) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      basic_fatal("not aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  static void assert_params_ok(HeapWord* to, intptr_t log_align) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    if (mask_bits((uintptr_t)to, right_n_bits(log_align)) != 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      basic_fatal("not word aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  static void assert_params_aligned(HeapWord* from, HeapWord* to) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
#ifdef ASSERT
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   313
    if (mask_bits((uintptr_t)from, BytesPerLong-1) != 0)
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   314
      basic_fatal("not long aligned");
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   315
    if (mask_bits((uintptr_t)to, BytesPerLong-1) != 0)
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   316
      basic_fatal("not long aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  static void assert_params_aligned(HeapWord* to) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
#ifdef ASSERT
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   322
    if (mask_bits((uintptr_t)to, BytesPerLong-1) != 0)
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   323
      basic_fatal("not long aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  static void assert_byte_count_ok(size_t byte_count, size_t unit_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    if ((size_t)round_to(byte_count, unit_size) != byte_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      basic_fatal("byte count must be aligned");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // Platform dependent implementations of the above methods.
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 36086
diff changeset
   336
#include CPU_HEADER(copy)
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
   337
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
   339
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
   340
#endif // SHARE_VM_UTILITIES_COPY_HPP