src/hotspot/cpu/sparc/copy_sparc.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 48951 950c35ea6237
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48951
diff changeset
     2
 * Copyright (c) 2003, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48951
diff changeset
    25
#ifndef CPU_SPARC_COPY_SPARC_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48951
diff changeset
    26
#define CPU_SPARC_COPY_SPARC_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Inline functions for memory copy and fill.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    30
static void pd_conjoint_words(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  (void)memmove(to, from, count * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    34
static void pd_disjoint_words(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  switch (count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  case 8:  to[7] = from[7];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  case 7:  to[6] = from[6];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  case 6:  to[5] = from[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  case 5:  to[4] = from[4];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  case 4:  to[3] = from[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  case 3:  to[2] = from[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  case 2:  to[1] = from[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  case 1:  to[0] = from[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  case 0:  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  default: (void)memcpy(to, from, count * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
           break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    50
static void pd_disjoint_words_atomic(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  switch (count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  case 8:  to[7] = from[7];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  case 7:  to[6] = from[6];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  case 6:  to[5] = from[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  case 5:  to[4] = from[4];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  case 4:  to[3] = from[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  case 3:  to[2] = from[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  case 2:  to[1] = from[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  case 1:  to[0] = from[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  case 0:  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  default: while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
             *to++ = *from++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
           break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    68
static void pd_aligned_conjoint_words(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  (void)memmove(to, from, count * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    72
static void pd_aligned_disjoint_words(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  pd_disjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    76
static void pd_conjoint_bytes(const void* from, void* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  (void)memmove(to, from, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    80
static void pd_conjoint_bytes_atomic(const void* from, void* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  (void)memmove(to, from, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
    84
static void pd_conjoint_jshorts_atomic(const jshort* from, jshort* to, size_t count) {
10743
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    85
  if (from > to) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    86
    while (count-- > 0) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    87
      // Copy forwards
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    88
      *to++ = *from++;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    89
    }
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    90
  } else {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    91
    from += count - 1;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    92
    to   += count - 1;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    93
    while (count-- > 0) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    94
      // Copy backwards
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    95
      *to-- = *from--;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    96
    }
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
    97
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   100
static void pd_conjoint_jints_atomic(const jint* from, jint* to, size_t count) {
10743
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   101
  if (from > to) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   102
    while (count-- > 0) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   103
      // Copy forwards
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   104
      *to++ = *from++;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   105
    }
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   106
  } else {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   107
    from += count - 1;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   108
    to   += count - 1;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   109
    while (count-- > 0) {
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   110
      // Copy backwards
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   111
      *to-- = *from--;
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   112
    }
2ee610c1fe49 7100935: win32: memmove is not atomic but is used for pd_conjoint_*_atomic operations
kvn
parents: 10501
diff changeset
   113
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   116
static void pd_conjoint_jlongs_atomic(const jlong* from, jlong* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   118
  pd_conjoint_oops_atomic((const oop*)from, (oop*)to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   121
static void pd_conjoint_oops_atomic(const oop* from, oop* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // Do better than this: inline memmove body  NEEDS CLEANUP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if (from > to) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      // Copy forwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      *to++ = *from++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    from += count - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    to   += count - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      // Copy backwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      *to-- = *from--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   138
static void pd_arrayof_conjoint_bytes(const HeapWord* from, HeapWord* to, size_t count) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  pd_conjoint_bytes_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   142
static void pd_arrayof_conjoint_jshorts(const HeapWord* from, HeapWord* to, size_t count) {
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   143
  pd_conjoint_jshorts_atomic((const jshort*)from, (jshort*)to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   146
static void pd_arrayof_conjoint_jints(const HeapWord* from, HeapWord* to, size_t count) {
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   147
  pd_conjoint_jints_atomic((const jint*)from, (jint*)to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   150
static void pd_arrayof_conjoint_jlongs(const HeapWord* from, HeapWord* to, size_t count) {
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   151
  pd_conjoint_jlongs_atomic((const jlong*)from, (jlong*)to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
48951
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   154
static void pd_arrayof_conjoint_oops(const HeapWord* from, HeapWord* to, size_t count) {
950c35ea6237 8165929: Constify arguments of Copy methods
coleenp
parents: 47216
diff changeset
   155
  pd_conjoint_oops_atomic((const oop*)from, (oop*)to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   159
  guarantee(mask_bits((uintptr_t)tohw, right_n_bits(LogBytesPerLong)) == 0,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   160
         "unaligned fill words");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   161
  julong* to = (julong*)tohw;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   162
  julong  v  = ((julong)value << 32) | value;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   163
  while (count-- > 0) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   164
    *to++ = v;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   165
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   168
typedef void (*_zero_Fn)(HeapWord* to, size_t count);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   169
35898
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 24675
diff changeset
   170
// Only used for heap objects, so align_object_offset.
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 24675
diff changeset
   171
// All other platforms pd_fill_to_aligned_words simply calls pd_fill_to_words, don't
ddc274f0052f 8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents: 24675
diff changeset
   172
// know why this one is different.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) {
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   174
  assert(MinObjAlignmentInBytes >= BytesPerLong, "need alternate implementation");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   176
  if (value == 0 && UseBlockZeroing &&
24675
8dd2c4604ff4 8043206: Fix signed vs. unsigned comparison warning in copy_sparc.hpp
mikael
parents: 10743
diff changeset
   177
      (count > (size_t)(BlockZeroingLowLimit >> LogHeapWordSize))) {
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   178
   // Call it only when block zeroing is used
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   179
   ((_zero_Fn)StubRoutines::zero_aligned_words())(tohw, count);
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   180
  } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
   julong* to = (julong*)tohw;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
   julong  v  = ((julong)value << 32) | value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
   // If count is odd, odd will be equal to 1 on 32-bit platform
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
   // and be equal to 0 on 64-bit platform.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
   size_t odd = count % (BytesPerLong / HeapWordSize) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
5694
1e0532a6abff 6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents: 670
diff changeset
   187
   size_t aligned_count = align_object_offset(count - odd) / HeapWordsPerLong;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
   julong* end = ((julong*)tohw) + aligned_count - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
   while (to <= end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
     DEBUG_ONLY(count -= BytesPerLong / HeapWordSize ;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
     *to++ = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
   assert(count == odd, "bad bounds on loop filling to aligned words");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
   if (odd) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
     *((juint*)to) = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
   }
10501
5bce84af0883 7059037: Use BIS for zeroing on T4
kvn
parents: 7397
diff changeset
   198
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
static void pd_fill_to_bytes(void* to, size_t count, jubyte value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  (void)memset(to, value, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
static void pd_zero_to_words(HeapWord* tohw, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  pd_fill_to_words(tohw, count, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
static void pd_zero_to_bytes(void* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  (void)memset(to, 0, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5702
diff changeset
   212
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 48951
diff changeset
   213
#endif // CPU_SPARC_COPY_SPARC_HPP