After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 330406 - copying entire document inside update_syntax_regions
copying entire document inside update_syntax_regions
Status: RESOLVED OBSOLETE
Product: gtksourceview
Classification: Platform
Component: General
git master
Other Linux
: High major
: ---
Assigned To: GTK Sourceview maintainers
GTK Sourceview maintainers
Depends on:
Blocks:
 
 
Reported: 2006-02-08 14:34 UTC by James "Doc" Livingston
Modified: 2014-02-15 12:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description James "Doc" Livingston 2006-02-08 14:34:04 UTC
I've been doing some profiling on gedit, trying to figure out why replace-all operations are slow (bug 325853).


Using the xml file from that bug, >95% of the time is spent inside the gtk_text_iter_get_slice call from update_syntax_regions, 40% of that in copy_segment. Tracing with gdb, it appears that gtk_text_iter_get_slice is duplicating the *entire* document (followed by a strlen call).

It appears that for that file (with all the replace strings I tried, some simple, some complex), that the regions and table->len values were virtually always equal - which causes it to copy everything.


Is line 2261 of gtksourcebuffer.c in cvs "if (region < table->len") supposed to have "<=" instead of "<" ? I don't really know anything about gtksourceview's internals, but changing that didn't seem to have any negative consequences, and made gedit's replace-all operations on the xml file take ~40 seconds instead of a few hours.
Comment 1 Paolo Borelli 2006-02-08 17:00:15 UTC
Thanks for your investigations James.

However if (region < table->len) doesn't sound right to me, since we are doing g_array_index (table, SyntaxDelimiter, region) and afaics the elements in a garray go from 0 to table->len - 1.
Comment 2 Paolo Borelli 2006-02-08 18:14:09 UTC
there is something totally weird going on here: stick a printf of the GArray len in build_syntax_regions_table()

		/* add the delimiter to the table */
		g_array_append_val (table, delim);
		g_print ("N: %d\n", table->len);

for a normal file, for instance gtksourcebuffer.c itself, I get a len of 622, for shorter files a bit less, but for the incriminated xml file I just get 2!
Comment 3 James "Doc" Livingston 2006-02-09 13:36:22 UTC
(In reply to comment #2)
> for a normal file, for instance gtksourcebuffer.c itself, I get a len of 622,
> for shorter files a bit less, but for the incriminated xml file I just get 2!

I'd been seeing 2 for the xml file too, but I hadn't looked closely enough to see if that was abnormal.
Comment 4 Yevgen Muntyan 2007-09-04 16:52:29 UTC
Obsolete, new engine doesn't do that.