Skip to content

Commit

Permalink
Properly recover from shorter read.
Browse files Browse the repository at this point in the history
  • Loading branch information
H.J. Lu authored and Ulrich Drepper committed Nov 20, 2009
1 parent df1934d commit 6622141
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2009-11-18 H.J. Lu <hongjiu.lu@intel.com>

[BZ #10162]
* sysdeps/ia64/memchr.S: Don't use a simple loop on data shorter
than software pipeline. Properly recover from shorter read.

2009-11-19 Ulrich Drepper <drepper@redhat.com>

[BZ #10958]
Expand Down
14 changes: 11 additions & 3 deletions sysdeps/ia64/memchr.S
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ ENTRY(__memchr)
cmp.ne p7, p0 = r0, r0 // clear p7
extr.u chr = in1, 0, 8 // chr = (unsigned char) in1
mov len = in2
// use a simple loop on data shorter than software pipeline
cmp.gtu p6, p0 = ((MEMLAT + 1) * 8), in2
cmp.gtu p6, p0 = 16, in2 // use a simple loop for short
(p6) br.cond.spnt .srchfew ;; // searches
sub loopcnt = 8, tmp // loopcnt = 8 - tmp
cmp.eq p6, p0 = tmp, r0
Expand Down Expand Up @@ -127,7 +126,16 @@ ENTRY(__memchr)
br.ret.sptk.many b0

.recovery:
adds ret0 = -((MEMLAT + 1) * 8), ret0;;
#if MEMLAT != 6
# error "MEMLAT must be 6!"
#endif
(p[MEMLAT-6]) add ret0 = -8, ret0;;
(p[MEMLAT-5]) add ret0 = -8, ret0;;
(p[MEMLAT-4]) add ret0 = -8, ret0;;
(p[MEMLAT-3]) add ret0 = -8, ret0;;
(p[MEMLAT-2]) add ret0 = -8, ret0;;
(p[MEMLAT-1]) add ret0 = -8, ret0;;
(p[MEMLAT]) add ret0 = -8, ret0;;
(p[MEMLAT+1]) add ret0 = -8, ret0;;
(p[MEMLAT+2]) add ret0 = -8, ret0;;
.l4:
Expand Down

0 comments on commit 6622141

Please sign in to comment.