| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH v99,13/13] MIPS: microMIPS: Optimise 'strnlen' core library function. |
| From: | "Steven J. Hill" <sjhill@mips.com> |
| Date: | Thu, 6 Dec 2012 23:05:37 -0600 |
| Cc: | "Steven J. Hill" <sjhill@mips.com>, ralf@linux-mips.org |
| In-reply-to: | <1354856737-28678-1-git-send-email-sjhill@mips.com> |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| References: | <1354856737-28678-1-git-send-email-sjhill@mips.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
From: "Steven J. Hill" <sjhill@mips.com>
Optimise 'strnlen' to use microMIPS instructions and/or optimisations
for binary size reduction. When the microMIPS ISA is not being used,
the library function compiles to the original binary code.
Signed-off-by: Steven J. Hill <sjhill@mips.com>
---
arch/mips/lib/strnlen_user.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/lib/strnlen_user.S b/arch/mips/lib/strnlen_user.S
index 6445716..c5bdf8b 100644
--- a/arch/mips/lib/strnlen_user.S
+++ b/arch/mips/lib/strnlen_user.S
@@ -35,7 +35,7 @@ FEXPORT(__strnlen_user_nocheck_asm)
PTR_ADDU a1, a0 # stop pointer
1: beq v0, a1, 1f # limit reached?
EX(lb, t0, (v0), .Lfault)
- PTR_ADDU v0, 1
+ PTR_ADDIU v0, 1
bnez t0, 1b
1: PTR_SUBU v0, a0
jr ra
--
1.7.9.5
|
| Previous by Date: | [PATCH v99,10/13] MIPS: microMIPS: Optimise 'memset' core library function., Steven J. Hill |
|---|---|
| Next by Date: | [PATCH v99,12/13] MIPS: microMIPS: Optimise 'strlen' core library function., Steven J. Hill |
| Previous by Thread: | [PATCH v99,10/13] MIPS: microMIPS: Optimise 'memset' core library function., Steven J. Hill |
| Next by Thread: | [PATCH v99,12/13] MIPS: microMIPS: Optimise 'strlen' core library function., Steven J. Hill |
| Indexes: | [Date] [Thread] [Top] [All Lists] |