summaryrefslogtreecommitdiff
path: root/firmware/common
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common')
-rw-r--r--firmware/common/strlen.c6
-rwxr-xr-xfirmware/common/strlen_a.S94
2 files changed, 99 insertions, 1 deletions
diff --git a/firmware/common/strlen.c b/firmware/common/strlen.c
index 4249e14c78..932567c181 100644
--- a/firmware/common/strlen.c
+++ b/firmware/common/strlen.c
@@ -1,4 +1,4 @@
1/* 1/*
2FUNCTION 2FUNCTION
3 <<strlen>>---character string length 3 <<strlen>>---character string length
4 4
@@ -55,6 +55,10 @@ QUICKREF
55 55
56size_t 56size_t
57_DEFUN (strlen, (str), 57_DEFUN (strlen, (str),
58 _CONST char *str) __attribute__ ((section (".icode")));
59
60size_t
61_DEFUN (strlen, (str),
58 _CONST char *str) 62 _CONST char *str)
59{ 63{
60#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) 64#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
diff --git a/firmware/common/strlen_a.S b/firmware/common/strlen_a.S
new file mode 100755
index 0000000000..34837605ac
--- /dev/null
+++ b/firmware/common/strlen_a.S
@@ -0,0 +1,94 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 by Jens Arnold
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include "config.h"
20
21 .section .icode,"ax",@progbits
22
23 .align 2
24 .global _strlen
25 .type _strlen,@function
26
27/* Works out the length of a string
28 * This version is optimized for speed
29 *
30 * arguments:
31 * r4 - start address
32 *
33 * return value:
34 * r0 - string length
35 *
36 * register usage:
37 * r0 - current address
38 * r1 - current value (byte/long)
39 * r2 - mask for alignment / zero (for cmp/str)
40 * r4 - start address
41 *
42 */
43
44_strlen:
45 mov r4,r0 /* r0 = start address */
46 tst #3,r0 /* long aligned? */
47 bt .start_l /* yes, jump directly to the longword loop */
48
49 /* not long aligned: check the first 3 bytes */
50 mov.b @r0+,r1 /* fetch first byte */
51 tst r1,r1 /* byte == 0 ? */
52 bt .hitzero /* yes, string end found */
53 mov.b @r0+,r1 /* fetch second byte */
54 mov #3,r2 /* prepare mask: r2 = 0..00000011b */
55 tst r1,r1 /* byte == 0 ? */
56 bt .hitzero /* yes, string end found */
57 mov.b @r0+,r1 /* fetch third byte */
58 not r2,r2 /* prepare mask: r2 = 1..11111100b */
59 tst r1,r1 /* byte == 0 ? */
60 bt .hitzero /* yes, string end found */
61
62 /* not yet found, fall through into longword loop */
63 and r2,r0 /* align down to long bound */
64
65 /* main loop: check longwords */
66.start_l:
67 mov #0,r2 /* zero longword for cmp/str */
68.loop_l:
69 mov.l @r0+,r1 /* fetch long word */
70 cmp/str r1,r2 /* any zero byte within? */
71 bf .loop_l /* no, loop */
72 add #-4,r0 /* set address back to start of this longword */
73
74 /* the last longword contains the string end: figure out the byte */
75 mov.b @r0+,r1 /* fetch first byte */
76 tst r1,r1 /* byte == 0 ? */
77 bt .hitzero /* yes, string end found */
78 mov.b @r0+,r1 /* fetch second byte */
79 tst r1,r1 /* byte == 0 ? */
80 bt .hitzero /* yes, string end found */
81 mov.b @r0+,r1 /* fetch third byte */
82 tst r1,r1 /* byte == 0 ? */
83 bt .hitzero /* yes, string end found */
84 rts /* must be the fourth byte */
85 sub r4,r0 /* len = string_end - string_start */
86
87.hitzero:
88 add #-1,r0 /* undo address increment */
89 rts
90 sub r4,r0 /* len = string_end - string_start */
91
92.end:
93 .size _strlen,.end-_strlen
94