hotspot/src/os_cpu/linux_x86/vm/copy_linux_x86.inline.hpp
author goetz
Thu, 22 Oct 2015 13:07:10 -0400
changeset 33589 7cbd1b2c139b
parent 7397 5b173b4ca846
permissions -rw-r--r--
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux. Reviewed-by: stuefe, coleenp, roland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
     2
 * Copyright (c) 2003, 2010, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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 OS_CPU_LINUX_X86_VM_COPY_LINUX_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    26
#define OS_CPU_LINUX_X86_VM_COPY_LINUX_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
static void pd_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  (void)memmove(to, from, count * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#else
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5547
diff changeset
    32
  // Includes a zero-count check.
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 7397
diff changeset
    33
  intx temp = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  __asm__ volatile("        testl   %6,%6         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
                   "        jz      7f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
                   "        cmpl    %4,%5         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
                   "        leal    -4(%4,%6,4),%3;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
                   "        jbe     1f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
                   "        cmpl    %7,%5         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
                   "        jbe     4f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
                   "1:      cmpl    $32,%6        ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
                   "        ja      3f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                   "        subl    %4,%1         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                   "2:      movl    (%4),%3       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
                   "        movl    %7,(%5,%4,1)  ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
                   "        addl    $4,%0         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                   "        subl    $1,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                   "        jnz     2b            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                   "        jmp     7f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                   "3:      rep;    smovl         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                   "        jmp     7f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
                   "4:      cmpl    $32,%2        ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                   "        movl    %7,%0         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                   "        leal    -4(%5,%6,4),%1;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                   "        ja      6f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                   "        subl    %4,%1         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                   "5:      movl    (%4),%3       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                   "        movl    %7,(%5,%4,1)  ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                   "        subl    $4,%0         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
                   "        subl    $1,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                   "        jnz     5b            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                   "        jmp     7f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                   "6:      std                   ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                   "        rep;    smovl         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
                   "        cld                   ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                   "7:      nop                    "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                   : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                   : "0"  (from), "1"  (to), "2"  (count), "3"  (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                   : "memory", "flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
static void pd_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  switch (count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  case 8:  to[7] = from[7];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  case 7:  to[6] = from[6];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  case 6:  to[5] = from[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  case 5:  to[4] = from[4];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  case 4:  to[3] = from[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  case 3:  to[2] = from[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  case 2:  to[1] = from[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  case 1:  to[0] = from[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  case 0:  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    (void)memcpy(to, from, count * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#else
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5547
diff changeset
    90
  // Includes a zero-count check.
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 7397
diff changeset
    91
  intx temp = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  __asm__ volatile("        testl   %6,%6       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                   "        jz      3f          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                   "        cmpl    $32,%6      ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                   "        ja      2f          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                   "        subl    %4,%1       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                   "1:      movl    (%4),%3     ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                   "        movl    %7,(%5,%4,1);"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                   "        addl    $4,%0       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                   "        subl    $1,%2        ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                   "        jnz     1b          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
                   "        jmp     3f          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                   "2:      rep;    smovl       ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                   "3:      nop                  "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                   : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                   : "0"  (from), "1"  (to), "2"  (count), "3"  (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                   : "memory", "cc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
static void pd_disjoint_words_atomic(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  switch (count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  case 8:  to[7] = from[7];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  case 7:  to[6] = from[6];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  case 6:  to[5] = from[5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  case 5:  to[4] = from[4];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  case 4:  to[3] = from[3];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  case 3:  to[2] = from[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  case 2:  to[1] = from[1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  case 1:  to[0] = from[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  case 0:  break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      *to++ = *from++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // pd_disjoint_words is word-atomic in this implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  pd_disjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
static void pd_aligned_conjoint_words(HeapWord* from, HeapWord* to, size_t count) {
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5547
diff changeset
   136
  pd_conjoint_words(from, to, count);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
static void pd_aligned_disjoint_words(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  pd_disjoint_words(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
static void pd_conjoint_bytes(void* from, void* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  (void)memmove(to, from, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#else
5883
8dc4bdc132d5 6730276: JDI_REGRESSION tests fail with "Error: count must be non-zero" error on x86
kvn
parents: 5547
diff changeset
   147
  // Includes a zero-count check.
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 7397
diff changeset
   148
  intx temp = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  __asm__ volatile("        testl   %6,%6          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                   "        jz      13f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                   "        cmpl    %4,%5          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
                   "        leal    -1(%4,%6),%3   ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
                   "        jbe     1f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
                   "        cmpl    %7,%5          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                   "        jbe     8f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                   "1:      cmpl    $3,%6          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                   "        jbe     6f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                   "        movl    %6,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                   "        movl    $4,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                   "        subl    %4,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                   "        andl    $3,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                   "        jz      2f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                   "        subl    %6,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
                   "        rep;    smovb          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
                   "2:      movl    %7,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
                   "        shrl    $2,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
                   "        jz      5f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
                   "        cmpl    $32,%2         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                   "        ja      4f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
                   "        subl    %4,%1          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                   "3:      movl    (%4),%%edx     ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
                   "        movl    %%edx,(%5,%4,1);"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
                   "        addl    $4,%0          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
                   "        subl    $1,%2           ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
                   "        jnz     3b             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                   "        addl    %4,%1          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                   "        jmp     5f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                   "4:      rep;    smovl          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
                   "5:      movl    %7,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
                   "        andl    $3,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                   "        jz      13f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
                   "6:      xorl    %7,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                   "7:      movb    (%4,%7,1),%%dl ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
                   "        movb    %%dl,(%5,%7,1) ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
                   "        addl    $1,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                   "        subl    $1,%2           ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
                   "        jnz     7b             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                   "        jmp     13f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
                   "8:      std                    ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
                   "        cmpl    $12,%2         ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                   "        ja      9f             ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
                   "        movl    %7,%0          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                   "        leal    -1(%6,%5),%1   ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                   "        jmp     11f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
                   "9:      xchgl   %3,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                   "        movl    %6,%0          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
                   "        addl    $1,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                   "        leal    -1(%7,%5),%1   ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                   "        andl    $3,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                   "        jz      10f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
                   "        subl    %6,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
                   "        rep;    smovb          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
                   "10:     movl    %7,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
                   "        subl    $3,%0          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
                   "        shrl    $2,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                   "        subl    $3,%1          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                   "        rep;    smovl          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
                   "        andl    $3,%3          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
                   "        jz      12f            ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
                   "        movl    %7,%2          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
                   "        addl    $3,%0          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                   "        addl    $3,%1          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                   "11:     rep;    smovb          ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
                   "12:     cld                    ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
                   "13:     nop                    ;"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
                   : "=S" (from), "=D" (to), "=c" (count), "=r" (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
                   : "0"  (from), "1"  (to), "2"  (count), "3"  (temp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
                   : "memory", "flags", "%edx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
static void pd_conjoint_bytes_atomic(void* from, void* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  pd_conjoint_bytes(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
static void pd_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  _Copy_conjoint_jshorts_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
static void pd_conjoint_jints_atomic(jint* from, jint* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  _Copy_conjoint_jints_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  assert(HeapWordSize == BytesPerInt, "heapwords and jints must be the same size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // pd_conjoint_words is word-atomic in this implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  pd_conjoint_words((HeapWord*)from, (HeapWord*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
static void pd_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  _Copy_conjoint_jlongs_atomic(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // Guarantee use of fild/fistp or xmm regs via some asm code, because compilers won't.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (from > to) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      __asm__ volatile("fildll (%0); fistpll (%1)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
                       :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
                       : "r" (from), "r" (to)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
                       : "memory" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      ++from;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      ++to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    while (count-- > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      __asm__ volatile("fildll (%0,%2,8); fistpll (%1,%2,8)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                       :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
                       : "r" (from), "r" (to), "r" (count)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                       : "memory" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
static void pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  _Copy_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  assert(HeapWordSize == BytesPerOop, "heapwords and oops must be the same size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // pd_conjoint_words is word-atomic in this implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  pd_conjoint_words((HeapWord*)from, (HeapWord*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
static void pd_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  _Copy_arrayof_conjoint_bytes(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
static void pd_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _Copy_arrayof_conjoint_jshorts(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
static void pd_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
   _Copy_arrayof_conjoint_jints(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  pd_conjoint_jints_atomic((jint*)from, (jint*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  _Copy_arrayof_conjoint_jlongs(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  pd_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  _Copy_arrayof_conjoint_jlongs(from, to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  pd_conjoint_oops_atomic((oop*)from, (oop*)to, count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
   308
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5883
diff changeset
   309
#endif // OS_CPU_LINUX_X86_VM_COPY_LINUX_X86_INLINE_HPP