From: Anton Tayanovskyy <anton.tayanovskyy@gmail.com>
To: 47589@debbugs.gnu.org
Subject: bug#47589: [PATCH] 27.1; Freeze on long lines in compilation-shell-minor-mode
Date: Sat, 3 Apr 2021 22:52:36 -0400 [thread overview]
Message-ID: <CA+i_Kj7vFQvTNNk_SAXmAom+ZFopLXgC1bJgYgXXCi1B0E6AyQ@mail.gmail.com> (raw)
To reproduce the issue of Emacs freezing on long lines, do the
following:
```
M-x shell
M-x compilation-shell-minor-mode
$ python3 -c 'print("x"*1024*8)'
```
Depending on the machine configuration, make your lines longer. 1024*8
is enough to freeze my MacBook Pro 2019 visibly but I need more
characters to slow down an XPS-13 running Ubuntu.
In the real world the issue comes up when I'm enjoying my
compilation-shell-minor-mode buffer but accidentally cat or print some
data with very long lines. Then Emacs freezes and I experience one of my
very rare moments of unhappiness with the editor.
Using `M-x profiler-start, profiler-stop, profiler-report` the culprit
is `compilation-parse-errors`. The function loops over many (about 50)
patterns of potential error output and scans the buffer for them
repeatedly.
The patch edits the function to use a limited version of
`re-search-forward`. Instead of finding the pattern everywhere, it only
looks for the pattern in the first 1024 chars of every line. It seems
plausible that real-world compiler warnings would sit close to the
beginning of lines.
With the patch the experience (in combination with global-so-long-mode)
becomes tolerable; while not lightning fast, Emacs is a lot more
responsive in this situation and I as a user retain control to fix the
problem, such as comint-clear-buffer etc.
FWIW see also the PR https://github.com/emacs-mirror/emacs/pull/24/files
---
lisp/progmodes/compile.el | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 7a02c3a896..45c69f330c 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1535,7 +1535,7 @@ to `compilation-error-regexp-alist' if RULES is nil."
(error "HYPERLINK should be an integer: %s" (nth 5 item)))
(goto-char start)
- (while (re-search-forward pat end t)
+ (while (compilation--re-search-forward-limited pat end 1024)
(when (setq props (compilation-error-properties
file line end-line col end-col
(or type 2) fmt rule))
@@ -1597,6 +1597,28 @@ to `compilation-error-regexp-alist' if RULES is nil."
(match-beginning mn) (match-end mn)
'font-lock-face (cadr props)))))))))
+(defun compilation--re-search-forward-limited (regexp bound n)
+ "Like 're-search-forward limited to the first N chars per line.
+This avoids Emacs performance degradation on scanning excessively
+long lines of text. It is reasonable when scanning for compiler
+warnings to expect to find them early on each line. REGEXP and
+BOUND are as in 're-search-forward."
+ (let ((inhibit-field-text-motion t)
+ (found nil)
+ (orig-point (point)))
+ (while (and (null found)
+ (< (point) bound)
+ (not (eobp)))
+ (setq found (re-search-forward regexp
+ (max (point)
+ (min bound (+ (point-at-bol) n)))
+ t))
+ (when (null found)
+ (forward-line 1)))
+ (when (null found)
+ (goto-char orig-point))
+ found))
+
(defvar-local compilation--parsed -1)
(defun compilation--ensure-parse (limit)
--
2.28.0
--------------------------------------------------------------------------------
In GNU Emacs 27.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.21,
cairo version 1.16.0)
Windowing system distributor 'The X.Org Foundation', version 11.0.12009000
System Description: Ubuntu 20.04.2 LTS
Configured using:
'configure
--prefix=/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-emacs-27.1
--disable-build-details --with-modules --with-x-toolkit=gtk3 --with-xft
--with-cairo CFLAGS=-DMAC_OS_X_VERSION_MAX_ALLOWED=101200'
Configured features:
XPM JPEG TIFF GIF PNG RSVG CAIRO SOUND DBUS GSETTINGS GLIB NOTIFY
INOTIFY LIBSELINUX GNUTLS LIBXML2 FREETYPE HARFBUZZ M17N_FLT LIBOTF ZLIB
TOOLKIT_SCROLL_BARS GTK3 X11 XDBE XIM MODULES THREADS LIBSYSTEMD JSON
PDUMPER GMP
next reply other threads:[~2021-04-04 2:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-04 2:52 Anton Tayanovskyy [this message]
2021-05-06 10:51 ` bug#47589: [PATCH] 27.1; Freeze on long lines in compilation-shell-minor-mode Lars Ingebrigtsen
2021-06-05 20:19 ` Lars Ingebrigtsen
2021-06-12 3:05 ` bug#47589: not reproducing on emacs 28 Anton Tayanovskyy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CA+i_Kj7vFQvTNNk_SAXmAom+ZFopLXgC1bJgYgXXCi1B0E6AyQ@mail.gmail.com \
--to=anton.tayanovskyy@gmail.com \
--cc=47589@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).