aboutsummaryrefslogtreecommitdiff
path: root/libc/arch-mips/string/memmove.c
blob: 74d4cd0bf30dc5ec725e341c76bfc2df3a8742ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*
 * Copyright (c) 2017 Imagination Technologies.
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *      * Redistributions of source code must retain the above copyright
 *        notice, this list of conditions and the following disclaimer.
 *      * Redistributions in binary form must reproduce the above copyright
 *        notice, this list of conditions and the following disclaimer
 *        in the documentation and/or other materials provided with
 *        the distribution.
 *      * Neither the name of Imagination Technologies nor the names of its
 *        contributors may be used to endorse or promote products derived
 *        from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <string.h>

#if !defined(UNALIGNED_INSTR_SUPPORT)
/* does target have unaligned lw/ld/ualw/uald instructions? */
#define UNALIGNED_INSTR_SUPPORT 0
#if __mips_isa_rev < 6 && !__mips1
#undef UNALIGNED_INSTR_SUPPORT
#define UNALIGNED_INSTR_SUPPORT 1
#endif
#endif

#if !defined(HW_UNALIGNED_SUPPORT)
/* Does target have hardware support for unaligned accesses?  */
#define HW_UNALIGNED_SUPPORT 0
#if __mips_isa_rev >= 6
#undef HW_UNALIGNED_SUPPORT
#define HW_UNALIGNED_SUPPORT 1
#endif
#endif

#define ENABLE_PREFETCH     1

#if ENABLE_PREFETCH
#define PREFETCH(addr)  __builtin_prefetch (addr, 0, 1);
#else
#define PREFETCH(addr)
#endif

#if _MIPS_SIM == _ABIO32
typedef unsigned long reg_t;
typedef struct
{
  reg_t B0:8, B1:8, B2:8, B3:8;
} bits_t;
#else
typedef unsigned long long reg_t;
typedef struct
{
  reg_t B0:8, B1:8, B2:8, B3:8, B4:8, B5:8, B6:8, B7:8;
} bits_t;
#endif

typedef union
{
  reg_t v;
  bits_t b;
} bitfields_t;

#define DO_BYTE(a, i)   \
  a[i] = bw.b.B##i;     \
  len--;                \
  if(!len) return ret;  \

/* This code is called when aligning a pointer, there are remaining bytes
   after doing word compares, or architecture does not have some form
   of unaligned support.  */
static inline void * __attribute__ ((always_inline))
do_bytes (void *a, const void *b, unsigned long len, void *ret)
{
  unsigned char *x = (unsigned char *) a;
  unsigned char *y = (unsigned char *) b;
  unsigned long i;

  /* 'len' might be zero here, so preloading the first two values
     before the loop may access unallocated memory.  */
  for (i = 0; i < len; i++)
  {
    *x = *y;
    x++;
    y++;
  }
  return ret;
}

static inline void * __attribute__ ((always_inline))
do_bytes_backward (void *a, const void *b, unsigned long len, void *ret)
{
  unsigned char *x = (unsigned char *) a;
  unsigned char *y = (unsigned char *) b;
  unsigned long i;

  /* 'len' might be zero here, so preloading the first two values
     before the loop may access unallocated memory.  */
  for (i = 0; i < len; i++) {
    *--x = *--y;
  }
  return ret;
}

static inline void * __attribute__ ((always_inline))
do_bytes_aligned (void *a, const void *b, unsigned long len, void *ret)
{
  unsigned char *x = (unsigned char *) a;

  if(len > 0) {
    bitfields_t bw;
    bw.v = *((reg_t*) b);

#if __mips64
    DO_BYTE(x, 0);
    DO_BYTE(x, 1);
    DO_BYTE(x, 2);
    DO_BYTE(x, 3);
    DO_BYTE(x, 4);
    DO_BYTE(x, 5);
    DO_BYTE(x, 6);
    DO_BYTE(x, 7);
#else
    DO_BYTE(x, 0);
    DO_BYTE(x, 1);
    DO_BYTE(x, 2);
    DO_BYTE(x, 3);
#endif
  }

  return ret;
}

#if !HW_UNALIGNED_SUPPORT
#if UNALIGNED_INSTR_SUPPORT
/* for MIPS GCC, there are no unaligned builtins - so this struct forces
   the compiler to treat the pointer access as unaligned.  */
struct ulw
{
  reg_t uli;
} __attribute__ ((packed));

#define STORE_UNALIGNED_8(a, b)                      \
{                                                    \
  reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3];  \
  reg_t y4 = b[4], y5 = b[5], y6 = b[6], y7 = b[7];  \
  a[0].uli = y0;                                     \
  a[1].uli = y1;                                     \
  a[2].uli = y2;                                     \
  a[3].uli = y3;                                     \
  a[4].uli = y4;                                     \
  a[5].uli = y5;                                     \
  a[6].uli = y6;                                     \
  a[7].uli = y7;                                     \
}

#define STORE_UNALIGNED_4(a, b)                      \
{                                                    \
  reg_t y0 = b[0], y1 = b[1], y2 = b[2], y3 = b[3];  \
  a[0].uli = y0;                                     \
  a[1].uli = y1;                                     \
  a[2].uli = y2;                                     \
  a[3].uli = y3;                                     \
}

/* first pointer is not aligned while second pointer is.  */
static void *
unaligned_words_forward (struct ulw *a, const reg_t * b,
                         unsigned long words, unsigned long bytes, void *ret)
{
#if ((_MIPS_SIM == _ABIO32) || _MIPS_TUNE_I6400)
  unsigned long i, words_by_8, words_by_1;
  words_by_1 = words % 8;
  words_by_8 = words >> 3;
  for (; words_by_8 > 0; words_by_8--) {
    if(words_by_8 != 1)
      PREFETCH (b + 8);
    STORE_UNALIGNED_8(a, b);
    a += 8;
    b += 8;
  }
#else
  unsigned long i, words_by_4, words_by_1;
  words_by_1 = words % 4;
  words_by_4 = words >> 2;
  for (; words_by_4 > 0; words_by_4--) {
    if(words_by_4 != 1)
      PREFETCH (b + 4);
    STORE_UNALIGNED_4(a, b);
    a += 4;
    b += 4;
  }
#endif

  /* do remaining words.  */
  for (i = 0; i < words_by_1; i++) {
    a->uli = *b;
    a += 1;
    b += 1;
  }

  /* mop up any remaining bytes.  */
  return do_bytes_aligned (a, b, bytes, ret);
}

static void *
unaligned_words_backward (struct ulw *a, const reg_t * b,
                          unsigned long words, unsigned long bytes, void *ret)
{
#if ((_MIPS_SIM == _ABIO32) || _MIPS_TUNE_I6400)
  unsigned long i, words_by_8, words_by_1;
  words_by_1 = words % 8;
  words_by_8 = words >> 3;
  for (; words_by_8 > 0; words_by_8--) {
    if(words_by_8 != 1)
      PREFETCH (b - 16);
    a -= 8;
    b -= 8;
    STORE_UNALIGNED_8(a, b);
  }
#else
  unsigned long i, words_by_4, words_by_1;
  words_by_1 = words % 4;
  words_by_4 = words >> 2;
  for (; words_by_4 > 0; words_by_4--) {
    if(words_by_4 != 1)
      PREFETCH (b - 8);
    a -= 4;
    b -= 4;
    STORE_UNALIGNED_4(a, b);
  }
#endif

  /* do remaining words.  */
  for (i = 0; i < words_by_1; i++) {
    a -= 1;
    b -= 1;
    a->uli = *b;
  }

  /* mop up any remaining bytes.  */
  return do_bytes_backward (a, b, bytes, ret);
}

#else
/* no HW support or unaligned lw/ld/ualw/uald instructions.  */
static void *
unaligned_words_forward (reg_t * a, const reg_t * b,
                         unsigned long words, unsigned long bytes, void *ret)
{
  return do_bytes_aligned (a, b, (sizeof (reg_t) * words) + bytes, ret);
}

static void *
unaligned_words_backward (reg_t * a, const reg_t * b,
                          unsigned long words, unsigned long bytes, void *ret)
{
  return do_bytes_backward (a, b, (sizeof (reg_t) * words) + bytes, ret);
}

#endif /* UNALIGNED_INSTR_SUPPORT */
#endif /* HW_UNALIGNED_SUPPORT */

/* both pointers are aligned, or first isn't and HW support for unaligned.  */

#define STORE_ALIGNED_8(a, b)                        \
{                                                    \
  reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3];  \
  reg_t x4 = b[4], x5 = b[5], x6 = b[6], x7 = b[7];  \
  a[0] = x0;                                         \
  a[1] = x1;                                         \
  a[2] = x2;                                         \
  a[3] = x3;                                         \
  a[4] = x4;                                         \
  a[5] = x5;                                         \
  a[6] = x6;                                         \
  a[7] = x7;                                         \
}

#define STORE_ALIGNED_4(a, b)                        \
{                                                    \
  reg_t x0 = b[0], x1 = b[1], x2 = b[2], x3 = b[3];  \
  a[0] = x0;                                         \
  a[1] = x1;                                         \
  a[2] = x2;                                         \
  a[3] = x3;                                         \
}

static void *
aligned_words_forward (reg_t * a, const reg_t * b,
                       unsigned long words, unsigned long bytes, void *ret)
{
#if ((_MIPS_SIM == _ABIO32) || _MIPS_TUNE_I6400)
  unsigned long i, words_by_8, words_by_1;
  words_by_1 = words % 8;
  words_by_8 = words >> 3;
  for (; words_by_8 > 0; words_by_8--) {
    if(words_by_8 != 1)
      PREFETCH (b + 8);
    STORE_ALIGNED_8(a, b);
    a += 8;
    b += 8;
  }
#else
  unsigned long i, words_by_4, words_by_1;
  words_by_1 = words % 4;
  words_by_4 = words >> 2;
  for (; words_by_4 > 0; words_by_4--) {
    if(words_by_4 != 1)
      PREFETCH (b + 4);
    STORE_ALIGNED_4(a, b);
    a += 4;
    b += 4;
  }
#endif

  /* do remaining words.  */
  for (i = 0; i < words_by_1; i++) {
    *a = *b;
    a += 1;
    b += 1;
  }

  /* mop up any remaining bytes.  */
  return do_bytes_aligned (a, b, bytes, ret);
}


static void *
aligned_words_backward (reg_t * a, const reg_t * b,
                        unsigned long words, unsigned long bytes, void *ret)
{
#if ((_MIPS_SIM == _ABIO32) || _MIPS_TUNE_I6400)
  unsigned long i, words_by_8, words_by_1;
  words_by_1 = words % 8;
  words_by_8 = words >> 3;
  for (; words_by_8 > 0; words_by_8--) {
    if(words_by_8 != 1)
      PREFETCH (b - 16);
    a -= 8;
    b -= 8;
    STORE_ALIGNED_8(a, b);
  }
#else
  unsigned long i, words_by_4, words_by_1;
  words_by_1 = words % 4;
  words_by_4 = words >> 2;
  for (; words_by_4 > 0; words_by_4--) {
    if(words_by_4 != 1)
      PREFETCH (b - 8);
    a -= 4;
    b -= 4;
    STORE_ALIGNED_4(a, b);
  }
#endif

  /* do remaining words.  */
  for (i = 0; i < words_by_1; i++) {
    a -= 1;
    b -= 1;
    *a = *b;
  }

  /* mop up any remaining bytes.  */
  return do_bytes_backward (a, b, bytes, ret);
}

void *
memmove (void *dst0, const void *src0, size_t length)
{
  unsigned long bytes, words;
  void *ret = dst0;

  if (length == 0 || dst0 == src0)      /* nothing to do */
    return dst0;

  if ((unsigned long)dst0 < (unsigned long)src0) {
    /* Copy forwards. */
    /* This shouldn't hit that often. */
    if (length < sizeof (reg_t) * 4) {
      return do_bytes (dst0, src0, length, ret);
    }

    /* Align the second pointer to word/dword alignment.
       Note that the pointer is only 32-bits for o32/n32 ABIs. For
       n32, loads are done as 64-bit while address remains 32-bit.   */
    bytes = ((unsigned long) src0) % sizeof (reg_t);
    if (bytes) {
      bytes = sizeof (reg_t) - bytes;
      if (bytes > length)
        bytes = length;
      do_bytes (dst0, src0, bytes, ret);
      if (length == bytes)
        return ret;
      length -= bytes;
      dst0 = (void *) (((unsigned char *) dst0) + bytes);
      src0 = (const void *) (((unsigned char *) src0) + bytes);
    }

    /* Second pointer now aligned.  */
    words = length / sizeof (reg_t);
    bytes = length % sizeof (reg_t);
#if HW_UNALIGNED_SUPPORT
    /* treat possible unaligned first pointer as aligned.  */
    return aligned_words_forward (dst0, src0, words, bytes, ret);
#else
    if (((unsigned long) dst0) % sizeof (reg_t) == 0) {
      return aligned_words_forward (dst0, src0, words, bytes, ret);
    }
    /* need to use unaligned instructions on first pointer.  */
    return unaligned_words_forward (dst0, src0, words, bytes, ret);
#endif
  } else {
    /* Copy backwards. */
    dst0 = (void *) (((unsigned char *) dst0) + length);
    src0 = (const void *) (((unsigned char *) src0) + length);

    /* This shouldn't hit that often. */
    if (length < sizeof (reg_t) * 4) {
      return do_bytes_backward (dst0, src0, length, ret);
    }

    /* Align the second pointer to word/dword alignment.
       Note that the pointer is only 32-bits for o32/n32 ABIs. For
       n32, loads are done as 64-bit while address remains 32-bit.   */
    bytes = ((unsigned long) src0) % sizeof (reg_t);
    if (bytes) {
      if (bytes > length)
        bytes = length;
      do_bytes_backward (dst0, src0, bytes, ret);
      if (length == bytes)
        return ret;
      length -= bytes;
      dst0 = (void *) (((unsigned char *) dst0) - bytes);
      src0 = (const void *) (((unsigned char *) src0) - bytes);
    }

    words = length / sizeof (reg_t);
    bytes = length % sizeof (reg_t);
#if HW_UNALIGNED_SUPPORT
    /* treat possible unaligned first pointer as aligned.  */
    return aligned_words_backward ((void *)dst0, (void *)src0, words, bytes, ret);
#else
    if (((unsigned long) dst0) % sizeof (reg_t) == 0) {
      return aligned_words_backward (dst0, src0, words, bytes, ret);
    }
    /* need to use unaligned instructions on first pointer.  */
    return unaligned_words_backward (dst0, src0, words, bytes, ret);
#endif
  }
}