unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
@ 2015-06-10 15:13 Wolfgang Jenkner
  2015-06-10 17:17 ` Eli Zaretskii
  0 siblings, 1 reply; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-10 15:13 UTC (permalink / raw)
  To: 20783

Here's a test case for the bug:

(with-temp-buffer
  (insert "éé")
  (let ((i 1) pos res)
    (while (setq pos (byte-to-position i))
      (push pos res)
      (setq i (1+ i)))
    (nreverse res)))

=> (1 2 2 2 3)

while the correct result is

=> (1 1 2 2 3)

I found that this bug had been noticed before in

http://stackoverflow.com/questions/17588117/emacs-byte-to-position-function-is-not-consistent-with-document

Here's a patch.  The fix may look a bit clumsy but it's actually meant
to avoid pessimizing the presumably common case where the initial
bytepos is at a character boundary.

-- >8 --
Subject: [PATCH] * src/marker.c (buf_bytepos_to_charpos): Fix best_below_byte
 count.

If bytepos is not after a character boundary the preceding loop
overshoots by one character position.
---
 src/marker.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/marker.c b/src/marker.c
index 73928ba..94d676b 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -341,6 +341,12 @@ buf_bytepos_to_charpos (struct buffer *b, ptrdiff_t bytepos)
 	  BUF_INC_POS (b, best_below_byte);
 	}
 
+      if (best_below_byte != bytepos)
+	{
+	  best_below--;
+	  BUF_DEC_POS (b, best_below_byte);
+	}
+
       /* If this position is quite far from the nearest known position,
 	 cache the correspondence by creating a marker here.
 	 It will last until the next GC.
-- 
2.4.2






^ permalink raw reply related	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-10 15:13 bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug Wolfgang Jenkner
@ 2015-06-10 17:17 ` Eli Zaretskii
  2015-06-11 15:24   ` Wolfgang Jenkner
  0 siblings, 1 reply; 11+ messages in thread
From: Eli Zaretskii @ 2015-06-10 17:17 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: 20783

> From: Wolfgang Jenkner <wjenkner@inode.at>
> Date: Wed, 10 Jun 2015 17:13:30 +0200
> 
> Here's a test case for the bug:
> 
> (with-temp-buffer
>   (insert "éé")
>   (let ((i 1) pos res)
>     (while (setq pos (byte-to-position i))
>       (push pos res)
>       (setq i (1+ i)))
>     (nreverse res)))
> 
> => (1 2 2 2 3)
> 
> while the correct result is
> 
> => (1 1 2 2 3)
> 
> I found that this bug had been noticed before in
> 
> http://stackoverflow.com/questions/17588117/emacs-byte-to-position-function-is-not-consistent-with-document
> 
> Here's a patch.  The fix may look a bit clumsy but it's actually meant
> to avoid pessimizing the presumably common case where the initial
> bytepos is at a character boundary.

Wouldn't it be better to handle this use case in Fbyte_to_position?
The BYTE_TO_CHAR macro is called an awful lot in the Emacs innermost
loops, and it's _always_ called with a byte position that's on a
character boundary.  So punishing all that code with even a single
comparison, for the benefit of a use case whose importance is unclear
to me is not necessarily TRT.

Thanks.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-10 17:17 ` Eli Zaretskii
@ 2015-06-11 15:24   ` Wolfgang Jenkner
  2015-06-11 16:04     ` Eli Zaretskii
  2015-06-16 15:40     ` Wolfgang Jenkner
  0 siblings, 2 replies; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-11 15:24 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 20783

On Wed, Jun 10 2015, Eli Zaretskii wrote:

> Wouldn't it be better to handle this use case in Fbyte_to_position?
> The BYTE_TO_CHAR macro is called an awful lot in the Emacs innermost
> loops, and it's _always_ called with a byte position that's on a
> character boundary.

I see.  How about something like the patch below?  The loop could be
improved a bit by doing pointer arithmetic like in DEC_POS but it's
perhaps not worth complicating things for the case where bytepos is not
at a character boundary.

-- >8 --
Subject: [PATCH] * editfns.c (Fbyte_to_position): Fix bytepos not at char
 boundary.

The behavior now matches the description in the manual.  (Bug#20783)
---
 src/editfns.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/editfns.c b/src/editfns.c
index cddb0d4..94715fe 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1025,10 +1025,18 @@ DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
 If BYTEPOS is out of range, the value is nil.  */)
   (Lisp_Object bytepos)
 {
+  ptrdiff_t pos_byte;
+
   CHECK_NUMBER (bytepos);
-  if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
+  pos_byte = XINT (bytepos);
+  if (pos_byte < BEG_BYTE || pos_byte > Z_BYTE)
     return Qnil;
-  return make_number (BYTE_TO_CHAR (XINT (bytepos)));
+  if (Z != Z_BYTE)
+    /* There are multibyte characters in the buffer.
+       Search for the start of the current character. */
+    while (!CHAR_HEAD_P (FETCH_BYTE (pos_byte)))
+      pos_byte--;
+  return make_number (BYTE_TO_CHAR (pos_byte));
 }
 \f
 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
-- 
2.4.2






^ permalink raw reply related	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-11 15:24   ` Wolfgang Jenkner
@ 2015-06-11 16:04     ` Eli Zaretskii
  2015-06-11 16:41       ` Wolfgang Jenkner
  2015-06-17 12:19       ` Wolfgang Jenkner
  2015-06-16 15:40     ` Wolfgang Jenkner
  1 sibling, 2 replies; 11+ messages in thread
From: Eli Zaretskii @ 2015-06-11 16:04 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: 20783

> From: Wolfgang Jenkner <wjenkner@inode.at>
> Cc: 20783@debbugs.gnu.org
> Date: Thu, 11 Jun 2015 17:24:42 +0200
> 
> I see.  How about something like the patch below?  The loop could be
> improved a bit by doing pointer arithmetic like in DEC_POS but it's
> perhaps not worth complicating things for the case where bytepos is not
> at a character boundary.
> 
> -- >8 --
> Subject: [PATCH] * editfns.c (Fbyte_to_position): Fix bytepos not at char
>  boundary.
> 
> The behavior now matches the description in the manual.  (Bug#20783)
> ---
>  src/editfns.c | 12 ++++++++++--
>  1 file changed, 10 insertions(+), 2 deletions(-)
> 
> diff --git a/src/editfns.c b/src/editfns.c
> index cddb0d4..94715fe 100644
> --- a/src/editfns.c
> +++ b/src/editfns.c
> @@ -1025,10 +1025,18 @@ DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
>  If BYTEPOS is out of range, the value is nil.  */)
>    (Lisp_Object bytepos)
>  {
> +  ptrdiff_t pos_byte;
> +
>    CHECK_NUMBER (bytepos);
> -  if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
> +  pos_byte = XINT (bytepos);
> +  if (pos_byte < BEG_BYTE || pos_byte > Z_BYTE)
>      return Qnil;
> -  return make_number (BYTE_TO_CHAR (XINT (bytepos)));
> +  if (Z != Z_BYTE)
> +    /* There are multibyte characters in the buffer.
> +       Search for the start of the current character. */
> +    while (!CHAR_HEAD_P (FETCH_BYTE (pos_byte)))
> +      pos_byte--;
> +  return make_number (BYTE_TO_CHAR (pos_byte));
>  }

Works for me, thanks.  But please add a comment there about
BYTE_TO_CHAR expecting byte positions that are on a character
boundary, so that the reason for the loop is clear.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-11 16:04     ` Eli Zaretskii
@ 2015-06-11 16:41       ` Wolfgang Jenkner
  2015-06-11 19:08         ` Eli Zaretskii
  2015-06-17 12:19       ` Wolfgang Jenkner
  1 sibling, 1 reply; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-11 16:41 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 20783

On Thu, Jun 11 2015, Eli Zaretskii wrote:

>  But please add a comment there about
> BYTE_TO_CHAR expecting byte positions that are on a character
> boundary,

Wouldn't it make sense to add this to the comment before the definition
of BYTE_TO_CHAR instead (or to both)?







^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-11 16:41       ` Wolfgang Jenkner
@ 2015-06-11 19:08         ` Eli Zaretskii
  0 siblings, 0 replies; 11+ messages in thread
From: Eli Zaretskii @ 2015-06-11 19:08 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: 20783

> From: Wolfgang Jenkner <wjenkner@inode.at>
> Cc: 20783@debbugs.gnu.org
> Date: Thu, 11 Jun 2015 18:41:35 +0200
> 
> On Thu, Jun 11 2015, Eli Zaretskii wrote:
> 
> >  But please add a comment there about
> > BYTE_TO_CHAR expecting byte positions that are on a character
> > boundary,
> 
> Wouldn't it make sense to add this to the comment before the definition
> of BYTE_TO_CHAR instead (or to both)?

Both, I'd say.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-11 15:24   ` Wolfgang Jenkner
  2015-06-11 16:04     ` Eli Zaretskii
@ 2015-06-16 15:40     ` Wolfgang Jenkner
  2015-06-16 16:08       ` Eli Zaretskii
  1 sibling, 1 reply; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-16 15:40 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 20783

[-- Attachment #1: Type: text/plain, Size: 1135 bytes --]

On Thu, Jun 11 2015, Wolfgang Jenkner wrote:

> The loop could be improved a bit by doing pointer arithmetic like in
> DEC_POS

I wondered whether such a change (to avoid unnecessary buffer gap
considerations while in the middle of a multibyte character) would
actually make a measurable difference, so, silly as that may be, I wrote
a simple benchmark for byte-to-position, using the tutorials as data
samples, and passed the results to ministat(1)[*], please see the
attached btp-ministat.el and ministat.sh for details.

[*] https://www.freebsd.org/cgi/man.cgi?query=ministat&sektion=1&manpath=FreeBSD+10.1-RELEASE

The result is that ministat reports statistical differences for several
of the tutorials (but not generally for the same languages at each run,
system load apparently generating too much statistical noise) and I find
that the version with the DEC_POS like loop is _always_ faster in those
cases (judging from the average values or just by taking a quick look at
the histograms).

So, while this is not really very important, it seems that it would be
safe to use the following patch with the improved loop instead:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: improve loop --]
[-- Type: text/x-diff, Size: 1533 bytes --]

From be2adf5b7b427ee5d84c9ae011d8d11d452c2f4e Mon Sep 17 00:00:00 2001
From: Wolfgang Jenkner <wjenkner@inode.at>
Date: Thu, 11 Jun 2015 16:21:21 +0200
Subject: [PATCH] * src/editfns.c (Fbyte_to_position): Fix bytepos not at char
 boundary.

The behavior now matches the description in the manual.  (Bug#20783)
---
 src/editfns.c | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/src/editfns.c b/src/editfns.c
index cddb0d4..ff54e73 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1025,10 +1025,28 @@ DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
 If BYTEPOS is out of range, the value is nil.  */)
   (Lisp_Object bytepos)
 {
+  ptrdiff_t pos_byte;
+
   CHECK_NUMBER (bytepos);
-  if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
+  pos_byte = XINT (bytepos);
+  if (pos_byte < BEG_BYTE || pos_byte > Z_BYTE)
     return Qnil;
-  return make_number (BYTE_TO_CHAR (XINT (bytepos)));
+  if (Z != Z_BYTE)
+    /* There are multibyte characters in the buffer.
+       The argument of BYTE_TO_CHAR must be a byte position at
+       a character boundary, so search for the start of the current
+       character.  */
+    {
+      unsigned char *chp = BYTE_POS_ADDR (pos_byte);
+
+      while (!CHAR_HEAD_P (*chp))
+	{
+	  pos_byte--;
+	  /* There's no buffer gap in the middle of a character.  */
+	  chp--;
+	}
+    }
+  return make_number (BYTE_TO_CHAR (pos_byte));
 }
 \f
 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
-- 
2.4.2


[-- Attachment #3: byte-to-position benchmark --]
[-- Type: application/emacs-lisp, Size: 1569 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: ministat wrapper --]
[-- Type: text/x-sh, Size: 490 bytes --]

#! /bin/sh

old="$(mktemp -t old)"
new="$(mktemp -t new)"
emacs_version=25.0.50
old_emacs=./src/emacs-${emacs_version}.1
new_emacs=./src/emacs-${emacs_version}.2
emacs_flags="--batch -Q -L . --load btp-ministat.el --eval '(benchmark--byte-to-position-results 10)'"

eval $old_emacs $emacs_flags >"$old"
eval $new_emacs $emacs_flags >"$new"

locales="$(head -1 "$old" | sed s'/^#//')"

i=1
for l in $locales; do
	echo
	echo "--- $l ---"
	ministat -s -C$i "$old" "$new"
	i=$(($i + 1))
done
	

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-16 15:40     ` Wolfgang Jenkner
@ 2015-06-16 16:08       ` Eli Zaretskii
  2015-06-16 16:31         ` Wolfgang Jenkner
  0 siblings, 1 reply; 11+ messages in thread
From: Eli Zaretskii @ 2015-06-16 16:08 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: 20783

> From: Wolfgang Jenkner <wjenkner@inode.at>
> Cc: 20783@debbugs.gnu.org
> Date: Tue, 16 Jun 2015 17:40:38 +0200
> 
> +      while (!CHAR_HEAD_P (*chp))
> +	{
> +	  pos_byte--;
> +	  /* There's no buffer gap in the middle of a character.  */
> +	  chp--;
> +	}

Thanks, but I'd prefer we didn't have code that manipulated pointers
to buffer text directly.  E.g., if we ever have some kind of
multi-threading, or even if at some point someone adds a non-trivial
function call to this loop, this code will be a subtle bug waiting to
bite.  It's fundamentally not safe to do this, and not only due to the
gap considerations, but also because in general BEG_ADDR might change
under certain circumstances behind your back.  (Buffer text and string
data are implemented with double indirection for good reasons.)

For some very tight loops, it might be justified to take these
shortcuts (with WARNING COMMENTS CRYING BLOODY MURDER all around), but
this function doesn't belong to those cases.

So I prefer the previous variant, even though it will lose that
benchmark.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-16 16:08       ` Eli Zaretskii
@ 2015-06-16 16:31         ` Wolfgang Jenkner
  0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-16 16:31 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 20783

On Tue, Jun 16 2015, Eli Zaretskii wrote:

> So I prefer the previous variant, even though it will lose that
> benchmark.

Neither do I care about winning the benchmark.  It just seemed the
better code from a micro-optimization point of view (in
a single-threaded emacs).  But I can't argue against your global
arguments, of course.  Thanks for explaining things.






^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-11 16:04     ` Eli Zaretskii
  2015-06-11 16:41       ` Wolfgang Jenkner
@ 2015-06-17 12:19       ` Wolfgang Jenkner
  2015-06-17 16:57         ` Eli Zaretskii
  1 sibling, 1 reply; 11+ messages in thread
From: Wolfgang Jenkner @ 2015-06-17 12:19 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 20783-done

Version: 25.1

On Thu, Jun 11 2015, Eli Zaretskii wrote:

> Works for me, thanks.  But please add a comment there about
> BYTE_TO_CHAR expecting byte positions that are on a character
> boundary, so that the reason for the loop is clear.

Done and pushed.

However, I didn't follow my own suggestion of adding a remark to the
comment above BYTE_TO_CHAR, after all, as it is true for most macros or
functions with a byte position argument, so adding such a comment to
just one of them could be confusing, I think.

Thank you for steering this change in the right direction.





^ permalink raw reply	[flat|nested] 11+ messages in thread

* bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug
  2015-06-17 12:19       ` Wolfgang Jenkner
@ 2015-06-17 16:57         ` Eli Zaretskii
  0 siblings, 0 replies; 11+ messages in thread
From: Eli Zaretskii @ 2015-06-17 16:57 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: 20783

> From: Wolfgang Jenkner <wjenkner@inode.at>
> Cc: 20783-done@debbugs.gnu.org
> Date: Wed, 17 Jun 2015 14:19:10 +0200
> 
> Version: 25.1
> 
> On Thu, Jun 11 2015, Eli Zaretskii wrote:
> 
> > Works for me, thanks.  But please add a comment there about
> > BYTE_TO_CHAR expecting byte positions that are on a character
> > boundary, so that the reason for the loop is clear.
> 
> Done and pushed.

Thanks.





^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-06-17 16:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-10 15:13 bug#20783: 25.0.50; [PATCH] byte-to-position has internal off-by-one bug Wolfgang Jenkner
2015-06-10 17:17 ` Eli Zaretskii
2015-06-11 15:24   ` Wolfgang Jenkner
2015-06-11 16:04     ` Eli Zaretskii
2015-06-11 16:41       ` Wolfgang Jenkner
2015-06-11 19:08         ` Eli Zaretskii
2015-06-17 12:19       ` Wolfgang Jenkner
2015-06-17 16:57         ` Eli Zaretskii
2015-06-16 15:40     ` Wolfgang Jenkner
2015-06-16 16:08       ` Eli Zaretskii
2015-06-16 16:31         ` Wolfgang Jenkner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).