FC2: gnome-terminal takes much longer to startup than Mozilla

Soeren Sandmann Pedersen sandmann at redhat.com
Thu May 27 13:52:28 UTC 2004


On Tue, 2004-05-25 at 23:31, Will Cohen wrote:

> After running the little script and installing the debuginfo rpms I was 
> able to get some profiles. It looks like this particular machine has a 
> reasonable video card (NVIDIA Quadro 4). Most of the are not for drawing 
> stuff on the screen.
> 
> One drawback is rpm with /usr/X11R6/bin/Xorg does not have an associated 
> debuginfo rpm. I assume this is where the redendering happens and where 
> people see the performance hit in gnome-terminal.
> 
> The first opreport shows the overall view of which applications had 
> samples and the shared libraries associated with them. The second 
> opreport lists the function-by-function breakdown.  Why so much 25% of 
> the time in memchr and real_tolower?
> 

The memchr() hit comes from this function:

static char *
_vte_iso2022_find_nextctl(const char *p, size_t length)
{
        char *ret;
        if (length == 0) {
                return NULL;
        }
        ret = memchr(p, '\033', length);
        ret = _vte_iso2022_better(ret, memchr(p, '\n', length));
        ret = _vte_iso2022_better(ret, memchr(p, '\r', length));
        ret = _vte_iso2022_better(ret, memchr(p, '\016', length));
        ret = _vte_iso2022_better(ret, memchr(p, '\017', length));
#ifdef VTE_ISO2022_8_BIT_CONTROLS
        /* This breaks UTF-8 and other encodings which use the high
bits. */
        ret = _vte_iso2022_better(ret, memchr(p, 0x8e, length));
        ret = _vte_iso2022_better(ret, memchr(p, 0x8f, length));
#endif
        return ret;
}


Since the _vte_iso2022_better() function basically returns the minimum
of the two pointers a speedup is possible by 
	
	- doing only one pass over the string instead of seven
	- stopping as soon as a control character is found.

The attached patch makes the elapsed time drop from 14.1 seconds to 12.4
seconds on cat jarg22.txt.


Soeren

-------------- next part --------------
Index: iso2022.c
===================================================================
RCS file: /cvs/gnome/vte/src/iso2022.c,v
retrieving revision 1.50
diff -u -r1.50 iso2022.c
--- iso2022.c	15 Sep 2003 18:57:33 -0000	1.50
+++ iso2022.c	27 May 2004 13:39:23 -0000
@@ -862,35 +862,31 @@
 }
 
 static char *
-_vte_iso2022_better(char *p, char *q)
-{
-	if (p == NULL) {
-		return q;
-	}
-	if (q == NULL) {
-		return p;
-	}
-	return MIN(p, q);
-}
-
-static char *
 _vte_iso2022_find_nextctl(const char *p, size_t length)
 {
 	char *ret;
+	int i;
+	
 	if (length == 0) {
 		return NULL;
 	}
-	ret = memchr(p, '\033', length);
-	ret = _vte_iso2022_better(ret, memchr(p, '\n', length));
-	ret = _vte_iso2022_better(ret, memchr(p, '\r', length));
-	ret = _vte_iso2022_better(ret, memchr(p, '\016', length));
-	ret = _vte_iso2022_better(ret, memchr(p, '\017', length));
+
+	for (i = 0; i < length; ++i) {
+		if (p[i] == '\033' ||
+		    p[i] == '\n' ||
+		    p[i] == '\r' ||
+		    p[i] == '\016' ||
+		    p[i] == '\017'
 #ifdef VTE_ISO2022_8_BIT_CONTROLS
-	/* This breaks UTF-8 and other encodings which use the high bits. */
-	ret = _vte_iso2022_better(ret, memchr(p, 0x8e, length));
-	ret = _vte_iso2022_better(ret, memchr(p, 0x8f, length));
+		                 ||
+		    p[i] == 0x8e ||
+		    p[i] == 0x8f
 #endif
-	return ret;
+			) {
+			return (char *)p + i;
+		}
+	}
+	return NULL;
 }
 
 static long


More information about the Fedora-desktop-list mailing list