comparison gcc/config/frv/cmovd.c @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 /* Move double-word library function.
2 Copyright (C) 2000, 2003, 2009 Free Software Foundation, Inc.
3 Contributed by Red Hat, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software ; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY ; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
20
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
25
26 void
27 __cmovd (long long *dest, const long long *src, unsigned len)
28 {
29 unsigned i;
30 unsigned num = len >> 3;
31 unsigned xlen = len & ~7;
32 char *dest_byte = (char *)dest;
33 const char *src_byte = (const char *)src;
34
35 if (dest_byte < src_byte || dest_byte > src_byte+len)
36 {
37 for (i = 0; i < num; i++)
38 dest[i] = src[i];
39
40 while (len > xlen)
41 {
42 dest_byte[xlen] = src_byte[xlen];
43 xlen++;
44 }
45 }
46 else
47 {
48 while (len-- > 0)
49 dest_byte[len] = src_byte[len];
50 }
51 }