]> granicus.if.org Git - vim/commitdiff
patch 8.0.1284: loading file type detection slows down startup v8.0.1284
authorBram Moolenaar <Bram@vim.org>
Fri, 10 Nov 2017 20:53:11 +0000 (21:53 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 10 Nov 2017 20:53:11 +0000 (21:53 +0100)
Problem:    Loading file type detection slows down startup.
Solution:   Store the last pattern of an autocommand event to make appending
            quicker.

src/fileio.c
src/version.c

index 400ad87b18ca645b258e6c97b88eb71125856fa5..d991822c3431a68df34e6c7b9127b0b2db1a1692 100644 (file)
@@ -7650,6 +7650,8 @@ forward_slash(char_u *fname)
  * together, to avoid having to match the pattern too often.
  * The result is an array of Autopat lists, which point to AutoCmd lists:
  *
+ * last_autopat[0]  -----------------------------+
+ *                                              V
  * first_autopat[0] --> Autopat.next  -->  Autopat.next -->  NULL
  *                     Autopat.cmds       Autopat.cmds
  *                         |                    |
@@ -7662,6 +7664,8 @@ forward_slash(char_u *fname)
  *                         V
  *                        NULL
  *
+ * last_autopat[1]  --------+
+ *                         V
  * first_autopat[1] --> Autopat.next  -->  NULL
  *                     Autopat.cmds
  *                         |
@@ -7689,11 +7693,12 @@ typedef struct AutoCmd
 
 typedef struct AutoPat
 {
+    struct AutoPat  *next;             /* next AutoPat in AutoPat list; MUST
+                                        * be the first entry */
     char_u         *pat;               /* pattern as typed (NULL when pattern
                                           has been removed) */
     regprog_T      *reg_prog;          /* compiled regprog for pattern */
     AutoCmd        *cmds;              /* list of commands to do */
-    struct AutoPat  *next;             /* next AutoPat in AutoPat list */
     int                    group;              /* group ID */
     int                    patlen;             /* strlen() of pat */
     int                    buflocal_nr;        /* !=0 for buffer-local AutoPat */
@@ -7813,6 +7818,16 @@ static AutoPat *first_autopat[NUM_EVENTS] =
     NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
 };
 
+static AutoPat *last_autopat[NUM_EVENTS] =
+{
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
+};
+
 /*
  * struct used to keep status while executing autocommands for an event.
  */
@@ -8011,6 +8026,15 @@ au_cleanup(void)
            /* remove the pattern if it has been marked for deletion */
            if (ap->pat == NULL)
            {
+               if (ap->next == NULL)
+               {
+                   if (prev_ap == &(first_autopat[(int)event]))
+                       last_autopat[(int)event] = NULL;
+                   else
+                       /* this depends on the "next" field being the first in
+                        * the struct */
+                       last_autopat[(int)event] = (AutoPat *)prev_ap;
+               }
                *prev_ap = ap->next;
                vim_regfree(ap->reg_prog);
                vim_free(ap);
@@ -8675,9 +8699,13 @@ do_autocmd_event(
        }
 
        /*
-        * Find AutoPat entries with this pattern.
+        * Find AutoPat entries with this pattern.  When adding a command it
+        * always goes at or after the last one, so start at the end.
         */
-       prev_ap = &first_autopat[(int)event];
+       if (!forceit && *cmd != NUL && last_autopat[(int)event] != NULL)
+           prev_ap = &last_autopat[(int)event];
+       else
+           prev_ap = &first_autopat[(int)event];
        while ((ap = *prev_ap) != NULL)
        {
            if (ap->pat != NULL)
@@ -8783,6 +8811,7 @@ do_autocmd_event(
                }
                ap->cmds = NULL;
                *prev_ap = ap;
+               last_autopat[(int)event] = ap;
                ap->next = NULL;
                if (group == AUGROUP_ALL)
                    ap->group = current_augroup;
index c74f062516acfe8e659ae74a8e20710b7d47109c..65cc66f31f67ed5861831b272fcc0f0203f16675 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1284,
 /**/
     1283,
 /**/