073263
To: vim_dev@googlegroups.com
073263
Subject: Patch 7.4.613
073263
Fcc: outbox
073263
From: Bram Moolenaar <Bram@moolenaar.net>
073263
Mime-Version: 1.0
073263
Content-Type: text/plain; charset=UTF-8
073263
Content-Transfer-Encoding: 8bit
073263
------------
073263
073263
Patch 7.4.613
073263
Problem:    The NFA engine does not implement the 'redrawtime' time limit.
073263
Solution:   Implement the time limit.
073263
Files:	    src/regexp_nfa.c
073263
073263
073263
*** ../vim-7.4.612/src/regexp_nfa.c	2015-01-27 14:54:07.944583588 +0100
073263
--- src/regexp_nfa.c	2015-02-03 16:25:58.681726505 +0100
073263
***************
073263
*** 311,318 ****
073263
  static void nfa_save_listids __ARGS((nfa_regprog_T *prog, int *list));
073263
  static void nfa_restore_listids __ARGS((nfa_regprog_T *prog, int *list));
073263
  static int nfa_re_num_cmp __ARGS((long_u val, int op, long_u pos));
073263
! static long nfa_regtry __ARGS((nfa_regprog_T *prog, colnr_T col));
073263
! static long nfa_regexec_both __ARGS((char_u *line, colnr_T col));
073263
  static regprog_T *nfa_regcomp __ARGS((char_u *expr, int re_flags));
073263
  static void nfa_regfree __ARGS((regprog_T *prog));
073263
  static int  nfa_regexec_nl __ARGS((regmatch_T *rmp, char_u *line, colnr_T col, int line_lbr));
073263
--- 311,318 ----
073263
  static void nfa_save_listids __ARGS((nfa_regprog_T *prog, int *list));
073263
  static void nfa_restore_listids __ARGS((nfa_regprog_T *prog, int *list));
073263
  static int nfa_re_num_cmp __ARGS((long_u val, int op, long_u pos));
073263
! static long nfa_regtry __ARGS((nfa_regprog_T *prog, colnr_T col, proftime_T *tm));
073263
! static long nfa_regexec_both __ARGS((char_u *line, colnr_T col, proftime_T *tm));
073263
  static regprog_T *nfa_regcomp __ARGS((char_u *expr, int re_flags));
073263
  static void nfa_regfree __ARGS((regprog_T *prog));
073263
  static int  nfa_regexec_nl __ARGS((regmatch_T *rmp, char_u *line, colnr_T col, int line_lbr));
073263
***************
073263
*** 3850,3855 ****
073263
--- 3850,3859 ----
073263
  
073263
  /* Used during execution: whether a match has been found. */
073263
  static int nfa_match;
073263
+ #ifdef FEAT_RELTIME
073263
+ static proftime_T  *nfa_time_limit;
073263
+ static int         nfa_time_count;
073263
+ #endif
073263
  
073263
  static void copy_pim __ARGS((nfa_pim_T *to, nfa_pim_T *from));
073263
  static void clear_sub __ARGS((regsub_T *sub));
073263
***************
073263
*** 5449,5454 ****
073263
--- 5453,5462 ----
073263
      fast_breakcheck();
073263
      if (got_int)
073263
  	return FALSE;
073263
+ #ifdef FEAT_RELTIME
073263
+     if (nfa_time_limit != NULL && profile_passed_limit(nfa_time_limit))
073263
+ 	return FALSE;
073263
+ #endif
073263
  
073263
      nfa_match = FALSE;
073263
  
073263
***************
073263
*** 6789,6797 ****
073263
  	    break;
073263
  
073263
  	/* Allow interrupting with CTRL-C. */
073263
! 	fast_breakcheck();
073263
  	if (got_int)
073263
  	    break;
073263
      }
073263
  
073263
  #ifdef ENABLE_LOG
073263
--- 6797,6814 ----
073263
  	    break;
073263
  
073263
  	/* Allow interrupting with CTRL-C. */
073263
! 	line_breakcheck();
073263
  	if (got_int)
073263
  	    break;
073263
+ #ifdef FEAT_RELTIME
073263
+ 	/* Check for timeout once in a twenty times to avoid overhead. */
073263
+ 	if (nfa_time_limit != NULL && ++nfa_time_count == 20)
073263
+ 	{
073263
+ 	    nfa_time_count = 0;
073263
+ 	    if (profile_passed_limit(nfa_time_limit))
073263
+ 		break;
073263
+ 	}
073263
+ #endif
073263
      }
073263
  
073263
  #ifdef ENABLE_LOG
073263
***************
073263
*** 6818,6826 ****
073263
   * Returns <= 0 for failure, number of lines contained in the match otherwise.
073263
   */
073263
      static long
073263
! nfa_regtry(prog, col)
073263
      nfa_regprog_T   *prog;
073263
      colnr_T	    col;
073263
  {
073263
      int		i;
073263
      regsubs_T	subs, m;
073263
--- 6835,6844 ----
073263
   * Returns <= 0 for failure, number of lines contained in the match otherwise.
073263
   */
073263
      static long
073263
! nfa_regtry(prog, col, tm)
073263
      nfa_regprog_T   *prog;
073263
      colnr_T	    col;
073263
+     proftime_T	    *tm;	/* timeout limit or NULL */
073263
  {
073263
      int		i;
073263
      regsubs_T	subs, m;
073263
***************
073263
*** 6831,6836 ****
073263
--- 6849,6858 ----
073263
  #endif
073263
  
073263
      reginput = regline + col;
073263
+ #ifdef FEAT_RELTIME
073263
+     nfa_time_limit = tm;
073263
+     nfa_time_count = 0;
073263
+ #endif
073263
  
073263
  #ifdef ENABLE_LOG
073263
      f = fopen(NFA_REGEXP_RUN_LOG, "a");
073263
***************
073263
*** 6951,6959 ****
073263
   * Returns <= 0 for failure, number of lines contained in the match otherwise.
073263
   */
073263
      static long
073263
! nfa_regexec_both(line, startcol)
073263
      char_u	*line;
073263
      colnr_T	startcol;	/* column to start looking for match */
073263
  {
073263
      nfa_regprog_T   *prog;
073263
      long	    retval = 0L;
073263
--- 6973,6982 ----
073263
   * Returns <= 0 for failure, number of lines contained in the match otherwise.
073263
   */
073263
      static long
073263
! nfa_regexec_both(line, startcol, tm)
073263
      char_u	*line;
073263
      colnr_T	startcol;	/* column to start looking for match */
073263
+     proftime_T	*tm;		/* timeout limit or NULL */
073263
  {
073263
      nfa_regprog_T   *prog;
073263
      long	    retval = 0L;
073263
***************
073263
*** 7047,7053 ****
073263
  	prog->state[i].lastlist[1] = 0;
073263
      }
073263
  
073263
!     retval = nfa_regtry(prog, col);
073263
  
073263
      nfa_regengine.expr = NULL;
073263
  
073263
--- 7070,7076 ----
073263
  	prog->state[i].lastlist[1] = 0;
073263
      }
073263
  
073263
!     retval = nfa_regtry(prog, col, tm);
073263
  
073263
      nfa_regengine.expr = NULL;
073263
  
073263
***************
073263
*** 7209,7215 ****
073263
      ireg_icombine = FALSE;
073263
  #endif
073263
      ireg_maxcol = 0;
073263
!     return nfa_regexec_both(line, col);
073263
  }
073263
  
073263
  
073263
--- 7232,7238 ----
073263
      ireg_icombine = FALSE;
073263
  #endif
073263
      ireg_maxcol = 0;
073263
!     return nfa_regexec_both(line, col, NULL);
073263
  }
073263
  
073263
  
073263
***************
073263
*** 7245,7251 ****
073263
      buf_T	*buf;		/* buffer in which to search */
073263
      linenr_T	lnum;		/* nr of line to start looking for match */
073263
      colnr_T	col;		/* column to start looking for match */
073263
!     proftime_T	*tm UNUSED;	/* timeout limit or NULL */
073263
  {
073263
      reg_match = NULL;
073263
      reg_mmatch = rmp;
073263
--- 7268,7274 ----
073263
      buf_T	*buf;		/* buffer in which to search */
073263
      linenr_T	lnum;		/* nr of line to start looking for match */
073263
      colnr_T	col;		/* column to start looking for match */
073263
!     proftime_T	*tm;		/* timeout limit or NULL */
073263
  {
073263
      reg_match = NULL;
073263
      reg_mmatch = rmp;
073263
***************
073263
*** 7260,7266 ****
073263
  #endif
073263
      ireg_maxcol = rmp->rmm_maxcol;
073263
  
073263
!     return nfa_regexec_both(NULL, col);
073263
  }
073263
  
073263
  #ifdef DEBUG
073263
--- 7283,7289 ----
073263
  #endif
073263
      ireg_maxcol = rmp->rmm_maxcol;
073263
  
073263
!     return nfa_regexec_both(NULL, col, tm);
073263
  }
073263
  
073263
  #ifdef DEBUG
073263
*** ../vim-7.4.612/src/version.c	2015-02-03 16:07:44.193584399 +0100
073263
--- src/version.c	2015-02-03 16:48:54.770821421 +0100
073263
***************
073263
*** 743,744 ****
073263
--- 743,746 ----
073263
  {   /* Add new patch number below this line */
073263
+ /**/
073263
+     613,
073263
  /**/
073263
073263
-- 
073263
In Joseph Heller's novel "Catch-22", the main character tries to get out of a
073263
war by proving he is crazy.  But the mere fact he wants to get out of the war
073263
only shows he isn't crazy -- creating the original "Catch-22".
073263
073263
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
073263
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
073263
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
073263
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///