-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 250398 b: refs/heads/master c: 66d83ab h: refs/heads/master v: v3
- Loading branch information
Greg Ungerer
committed
May 24, 2011
1 parent
dbfe06a
commit cd745ed
Showing
5 changed files
with
76 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: d10ed2f5383cc6e6b7649f03540b8cb1838d5f67 | ||
refs/heads/master: 66d83ab32aec5d84d707d4d72717b9468ec33a96 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,80 @@ | ||
/* | ||
* This file is subject to the terms and conditions of the GNU General Public | ||
* License. See the file COPYING in the main directory of this archive | ||
* for more details. | ||
*/ | ||
|
||
#include <linux/types.h> | ||
#include <linux/module.h> | ||
#include <linux/string.h> | ||
|
||
void * memcpy(void * to, const void * from, size_t n) | ||
void *memcpy(void *to, const void *from, size_t n) | ||
{ | ||
#ifdef CONFIG_COLDFIRE | ||
void *xto = to; | ||
size_t temp; | ||
void *xto = to; | ||
size_t temp, temp1; | ||
|
||
if (!n) | ||
return xto; | ||
if ((long) to & 1) | ||
{ | ||
char *cto = to; | ||
const char *cfrom = from; | ||
*cto++ = *cfrom++; | ||
to = cto; | ||
from = cfrom; | ||
n--; | ||
} | ||
if (n > 2 && (long) to & 2) | ||
{ | ||
short *sto = to; | ||
const short *sfrom = from; | ||
*sto++ = *sfrom++; | ||
to = sto; | ||
from = sfrom; | ||
n -= 2; | ||
} | ||
temp = n >> 2; | ||
if (temp) | ||
{ | ||
long *lto = to; | ||
const long *lfrom = from; | ||
for (; temp; temp--) | ||
*lto++ = *lfrom++; | ||
to = lto; | ||
from = lfrom; | ||
} | ||
if (n & 2) | ||
{ | ||
short *sto = to; | ||
const short *sfrom = from; | ||
*sto++ = *sfrom++; | ||
to = sto; | ||
from = sfrom; | ||
} | ||
if (n & 1) | ||
{ | ||
char *cto = to; | ||
const char *cfrom = from; | ||
*cto = *cfrom; | ||
} | ||
return xto; | ||
if (!n) | ||
return xto; | ||
if ((long)to & 1) { | ||
char *cto = to; | ||
const char *cfrom = from; | ||
*cto++ = *cfrom++; | ||
to = cto; | ||
from = cfrom; | ||
n--; | ||
} | ||
if (n > 2 && (long)to & 2) { | ||
short *sto = to; | ||
const short *sfrom = from; | ||
*sto++ = *sfrom++; | ||
to = sto; | ||
from = sfrom; | ||
n -= 2; | ||
} | ||
temp = n >> 2; | ||
if (temp) { | ||
long *lto = to; | ||
const long *lfrom = from; | ||
#if defined(__mc68020__) || defined(__mc68030__) || \ | ||
defined(__mc68040__) || defined(__mc68060__) || defined(__mcpu32__) | ||
asm volatile ( | ||
" movel %2,%3\n" | ||
" andw #7,%3\n" | ||
" lsrl #3,%2\n" | ||
" negw %3\n" | ||
" jmp %%pc@(1f,%3:w:2)\n" | ||
"4: movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
" movel %0@+,%1@+\n" | ||
"1: dbra %2,4b\n" | ||
" clrw %2\n" | ||
" subql #1,%2\n" | ||
" jpl 4b" | ||
: "=a" (lfrom), "=a" (lto), "=d" (temp), "=&d" (temp1) | ||
: "0" (lfrom), "1" (lto), "2" (temp)); | ||
#else | ||
const char *c_from = from; | ||
char *c_to = to; | ||
while (n-- > 0) | ||
*c_to++ = *c_from++; | ||
return((void *) to); | ||
for (; temp; temp--) | ||
*lto++ = *lfrom++; | ||
#endif | ||
to = lto; | ||
from = lfrom; | ||
} | ||
if (n & 2) { | ||
short *sto = to; | ||
const short *sfrom = from; | ||
*sto++ = *sfrom++; | ||
to = sto; | ||
from = sfrom; | ||
} | ||
if (n & 1) { | ||
char *cto = to; | ||
const char *cfrom = from; | ||
*cto = *cfrom; | ||
} | ||
return xto; | ||
} | ||
EXPORT_SYMBOL(memcpy); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters