rx.h
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:113k
源码类别:

DVD

开发平台:

Unix_Linux

  1. #if !defined(RXH) || defined(RX_WANT_SE_DEFS)
  2. #define RXH
  3. /* Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4. This file is part of the librx library.
  5. Librx is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU Library General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. Librx is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with this software; see the file COPYING.LIB.  If not,
  15. write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA
  16. 02139, USA.  */
  17. /*  t. lord Wed Sep 23 18:20:57 1992 */
  18. #ifndef RX_WANT_SE_DEFS
  19. /* This page: Bitsets */
  20. #ifndef RX_subset
  21. typedef unsigned int RX_subset;
  22. #define RX_subset_bits (32)
  23. #define RX_subset_mask (RX_subset_bits - 1)
  24. #endif
  25. typedef RX_subset * rx_Bitset;
  26. #ifdef __STDC__
  27. typedef void (*rx_bitset_iterator) (void *, int member_index);
  28. #else
  29. typedef void (*rx_bitset_iterator) ();
  30. #endif
  31. #define rx_bitset_subset(N)  ((N) / RX_subset_bits)
  32. #define rx_bitset_subset_val(B,N)  ((B)[rx_bitset_subset(N)])
  33. #define RX_bitset_access(B,N,OP) 
  34.   ((B)[rx_bitset_subset(N)] OP rx_subset_singletons[(N) & RX_subset_mask])
  35. #define RX_bitset_member(B,N)   RX_bitset_access(B, N, &)
  36. #define RX_bitset_enjoin(B,N)   RX_bitset_access(B, N, |=)
  37. #define RX_bitset_remove(B,N)   RX_bitset_access(B, N, &= ~)
  38. #define RX_bitset_toggle(B,N)   RX_bitset_access(B, N, ^= )
  39. #define rx_bitset_numb_subsets(N) (((N) + RX_subset_bits - 1) / RX_subset_bits)
  40. #define rx_sizeof_bitset(N) (rx_bitset_numb_subsets(N) * sizeof(RX_subset))
  41. /* This page: Splay trees. */
  42. #ifdef __STDC__
  43. typedef int (*rx_sp_comparer) (void * a, void * b);
  44. #else
  45. typedef int (*rx_sp_comparer) ();
  46. #endif
  47. struct rx_sp_node 
  48. {
  49.   void * key;
  50.   void * data;
  51.   struct rx_sp_node * kids[2];
  52. };
  53. #ifdef __STDC__
  54. typedef void (*rx_sp_key_data_freer) (struct rx_sp_node *);
  55. #else
  56. typedef void (*rx_sp_key_data_freer) ();
  57. #endif
  58. /* giant inflatable hash trees */
  59. struct rx_hash_item
  60. {
  61.   struct rx_hash_item * next_same_hash;
  62.   struct rx_hash * table;
  63.   unsigned long hash;
  64.   void * data;
  65.   void * binding;
  66. };
  67. struct rx_hash
  68. {
  69.   struct rx_hash * parent;
  70.   int refs;
  71.   struct rx_hash * children[13];
  72.   struct rx_hash_item * buckets [13];
  73.   int bucket_size [13];
  74. };
  75. struct rx_hash_rules;
  76. #ifdef __STDC__
  77. /* should return like == */
  78. typedef int (*rx_hash_eq)(void *, void *);
  79. typedef struct rx_hash * (*rx_alloc_hash)(struct rx_hash_rules *);
  80. typedef void (*rx_free_hash)(struct rx_hash *,
  81.     struct rx_hash_rules *);
  82. typedef struct rx_hash_item * (*rx_alloc_hash_item)(struct rx_hash_rules *,
  83.     void *);
  84. typedef void (*rx_free_hash_item)(struct rx_hash_item *,
  85.  struct rx_hash_rules *);
  86. #else
  87. typedef int (*rx_hash_eq)();
  88. typedef struct rx_hash * (*rx_alloc_hash)();
  89. typedef void (*rx_free_hash)();
  90. typedef struct rx_hash_item * (*rx_alloc_hash_item)();
  91. typedef void (*rx_free_hash_item)();
  92. #endif
  93. struct rx_hash_rules
  94. {
  95.   rx_hash_eq eq;
  96.   rx_alloc_hash hash_alloc;
  97.   rx_free_hash free_hash;
  98.   rx_alloc_hash_item hash_item_alloc;
  99.   rx_free_hash_item free_hash_item;
  100. };
  101. /* Forward declarations */
  102. struct rx_cache;
  103. struct rx_superset;
  104. struct rx;
  105. struct rx_se_list;
  106. /* 
  107.  * GLOSSARY
  108.  *
  109.  * regexp
  110.  * regular expression
  111.  * expression
  112.  * pattern - a `regular' expression.  The expression
  113.  *       need not be formally regular -- it can contain
  114.  *       constructs that don't correspond to purely regular
  115.  *       expressions.
  116.  *
  117.  * buffer
  118.  * string - the string (or strings) being searched or matched.
  119.  *
  120.  * pattern buffer - a structure of type `struct re_pattern_buffer'
  121.  *       This in turn contains a `struct rx', which holds the
  122.  *       NFA compiled from a pattern, as well as some of the state
  123.  *       of a matcher using the pattern.
  124.  *
  125.  * NFA - nondeterministic finite automata.  Some people
  126.  *       use this term to a member of the class of 
  127.  *       regular automata (those corresponding to a regular
  128.  *       language).  However, in this code, the meaning is
  129.  *       more general.  The automata used by Rx are comperable
  130.  *       in power to what are usually called `push down automata'.
  131.  *
  132.  *       Two NFA are built by rx for every pattern.  One is built
  133.  *       by the compiler.  The other is built from the first, on
  134.  *       the fly, by the matcher.  The latter is called the `superstate
  135.  *       NFA' because its states correspond to sets of states from
  136.  *       the first NFA.  (Joe Keane gets credit for the name
  137.  *       `superstate NFA').
  138.  *
  139.  * NFA edges
  140.  * epsilon edges
  141.  * side-effect edges - The NFA compiled from a pattern can have three
  142.  *       kinds of edges.  Epsilon edges can be taken freely anytime
  143.  *       their source state is reached.  Character set edges can be
  144.  *       taken when their source state is reached and when the next 
  145.  *       character in the buffer is a member of the set.  Side effect
  146.  *       edges imply a transition that can only be taken after the
  147.  *       indicated side effect has been successfully accomplished.
  148.  *       Some examples of side effects are:
  149.  *
  150.  * Storing the current match position to record the
  151.  *              location of a parentesized subexpression.
  152.  *
  153.  *              Advancing the matcher over N characters if they
  154.  *              match the N characters previously matched by a 
  155.  *              parentesized subexpression.
  156.  *
  157.  *       Both of those kinds of edges occur in the NFA generated
  158.  *       by the pattern:  (.)1
  159.  *
  160.  *       Epsilon and side effect edges are similar.  Unfortunately,
  161.  *       some of the code uses the name `epsilon edge' to mean
  162.  *       both epsilon and side effect edges.  For example,  the
  163.  *       function has_non_idempotent_epsilon_path computes the existance
  164.  *       of a non-trivial path containing only a mix of epsilon and
  165.  *       side effect edges.  In that case `nonidempotent epsilon' is being
  166.  *       used to mean `side effect'.
  167.  */
  168. /* LOW LEVEL PATTERN BUFFERS */
  169. /* Suppose that from some NFA state, more than one path through
  170.  * side-effect edges is possible.  In what order should the paths
  171.  * be tried?  A function of type rx_se_list_order answers that
  172.  * question.  It compares two lists of side effects, and says
  173.  * which list comes first.
  174.  */
  175.  
  176. #ifdef __STDC__
  177. typedef int (*rx_se_list_order) (struct rx *,
  178.  struct rx_se_list *, 
  179.  struct rx_se_list *);
  180. #else
  181. typedef int (*rx_se_list_order) ();
  182. #endif
  183. /* Struct RX holds a compiled regular expression - that is, an nfa
  184.  * ready to be converted on demand to a more efficient superstate nfa.
  185.  * This is for the low level interface.  The high-level interfaces enclose
  186.  * this in a `struct re_pattern_buffer'.  
  187.  */
  188. struct rx
  189. {
  190.   /* The compiler assigns a unique id to every pattern.
  191.    * Like sequence numbers in X, there is a subtle bug here
  192.    * if you use Rx in a system that runs for a long time.
  193.    * But, because of the way the caches work out, it is almost
  194.    * impossible to trigger the Rx version of this bug.
  195.    *
  196.    * The id is used to validate superstates found in a cache
  197.    * of superstates.  It isn't sufficient to let a superstate
  198.    * point back to the rx for which it was compiled -- the caller
  199.    * may be re-using a `struct rx' in which case the superstate
  200.    * is not really valid.  So instead, superstates are validated
  201.    * by checking the sequence number of the pattern for which
  202.    * they were built.
  203.    */
  204.   int rx_id;
  205.   /* This is memory mgt. state for superstates.  This may be 
  206.    * shared by more than one struct rx.
  207.    */
  208.   struct rx_cache * cache;
  209.   /* Every regex defines the size of its own character set. 
  210.    * A superstate has an array of this size, with each element
  211.    * a `struct rx_inx'.  So, don't make this number too large.
  212.    * In particular, don't make it 2^16.
  213.    */
  214.   int local_cset_size;
  215.   /* After the NFA is built, it is copied into a contiguous region
  216.    * of memory (mostly for compatability with GNU regex).
  217.    * Here is that region, and it's size:
  218.    */
  219.   void * buffer;
  220.   unsigned long allocated;
  221.   /* Clients of RX can ask for some extra storage in the space pointed
  222.    * to by BUFFER.  The field RESERVED is an input parameter to the
  223.    * compiler.  After compilation, this much space will be available 
  224.    * at (buffer + allocated - reserved)
  225.    */
  226.   unsigned long reserved;
  227.   /* --------- The remaining fields are for internal use only. --------- */
  228.   /* --------- But! they must be initialized to 0.        --------- */
  229.   /* NODEC is the number of nodes in the NFA with non-epsilon
  230.    * transitions. 
  231.    */
  232.   int nodec;
  233.   /* EPSNODEC is the number of nodes with only epsilon transitions. */
  234.   int epsnodec;
  235.   /* The sum (NODEC + EPSNODEC) is the total number of states in the
  236.    * compiled NFA.
  237.    */
  238.   /* Lists of side effects as stored in the NFA are `hash consed'..meaning
  239.    * that lists with the same elements are ==.  During compilation, 
  240.    * this table facilitates hash-consing.
  241.    */
  242.   struct rx_hash se_list_memo;
  243.   /* Lists of NFA states are also hashed. 
  244.    */
  245.   struct rx_hash set_list_memo;
  246.   /* The compiler and matcher must build a number of instruction frames.
  247.    * The format of these frames is fixed (c.f. struct rx_inx).  The values
  248.    * of the instructions is not fixed.
  249.    *
  250.    * An enumerated type (enum rx_opcode) defines the set of instructions
  251.    * that the compiler or matcher might generate.  When filling an instruction
  252.    * frame, the INX field is found by indexing this instruction table
  253.    * with an opcode:
  254.    */
  255.   void ** instruction_table;
  256.   /* The list of all states in an NFA.
  257.    * During compilation, the NEXT field of NFA states links this list.
  258.    * After compilation, all the states are compacted into an array,
  259.    * ordered by state id numbers.  At that time, this points to the base 
  260.    * of that array.
  261.    */
  262.   struct rx_nfa_state *nfa_states;
  263.   /* Every nfa begins with one distinguished starting state:
  264.    */
  265.   struct rx_nfa_state *start;
  266.   /* This orders the search through super-nfa paths.
  267.    * See the comment near the typedef of rx_se_list_order.
  268.    */
  269.   rx_se_list_order se_list_cmp;
  270.   struct rx_superset * start_set;
  271. };
  272. /* SYNTAX TREES */
  273. /* Compilation is in stages.  
  274.  *
  275.  * In the first stage, a pattern specified by a string is 
  276.  * translated into a syntax tree.  Later stages will convert
  277.  * the syntax tree into an NFA optimized for conversion to a
  278.  * superstate-NFA.
  279.  *
  280.  * This page is about syntax trees.
  281.  */
  282. enum rexp_node_type
  283. {
  284.   r_cset, /* Match from a character set. `a' or `[a-z]'*/
  285.   r_concat, /* Concat two subexpressions.   `ab' */
  286.   r_alternate, /* Choose one of two subexpressions. `a|b' */
  287.   r_opt, /* Optional subexpression. `a?' */
  288.   r_star, /* Repeated subexpression. `a*' */
  289.   /* A 2phase-star is a variation on a repeated subexpression.
  290.    * In this case, there are two subexpressions.  The first, if matched,
  291.    * begins a repitition (otherwise, the whole expression is matches the
  292.    * empth string).  
  293.    * 
  294.    * After matching the first subexpression, a 2phase star either finishes,
  295.    * or matches the second subexpression.  If the second subexpression is
  296.    * matched, then the whole construct repeats.
  297.    *
  298.    * 2phase stars are used in two circumstances.  First, they
  299.    * are used as part of the implementation of POSIX intervals (counted
  300.    * repititions).  Second, they are used to implement proper star
  301.    * semantics when the repeated subexpression contains paths of
  302.    * only side effects.  See rx_compile for more information.
  303.    */
  304.   r_2phase_star,
  305.   /* c.f. "typedef void * rx_side_effect" */
  306.   r_side_effect,
  307.   /* This is an extension type:  It is for transient use in source->source
  308.    * transformations (implemented over syntax trees).
  309.    */
  310.   r_data
  311. };
  312. /* A side effect is a matcher-specific action associated with
  313.  * transitions in the NFA.  The details of side effects are up
  314.  * to the matcher.  To the compiler and superstate constructors
  315.  * side effects are opaque:
  316.  */
  317. typedef void * rx_side_effect;
  318. /* Nodes in a syntax tree are of this type:
  319.  */
  320. struct rexp_node
  321. {
  322.   enum rexp_node_type type;
  323.   union
  324.   {
  325.     rx_Bitset cset;
  326.     rx_side_effect side_effect;
  327.     struct
  328.       {
  329. struct rexp_node *left;
  330. struct rexp_node *right;
  331.       } pair;
  332.     void * data;
  333.   } params;
  334. };
  335. /* NFA
  336.  *
  337.  * A syntax tree is compiled into an NFA.  This page defines the structure
  338.  * of that NFA.
  339.  */
  340. struct rx_nfa_state
  341. {
  342.   /* These are kept in a list as the NFA is being built. */
  343.   struct rx_nfa_state *next;
  344.   /* After the NFA is built, states are given integer id's.
  345.    * States whose outgoing transitions are all either epsilon or 
  346.    * side effect edges are given ids less than 0.  Other states
  347.    * are given successive non-negative ids starting from 0.
  348.    */
  349.   int id;
  350.   /* The list of NFA edges that go from this state to some other. */
  351.   struct rx_nfa_edge *edges;
  352.   /* If you land in this state, then you implicitly land
  353.    * in all other states reachable by only epsilon translations.
  354.    * Call the set of maximal paths to such states the epsilon closure
  355.    * of this state.
  356.    *
  357.    * There may be other states that are reachable by a mixture of
  358.    * epsilon and side effect edges.  Consider the set of maximal paths
  359.    * of that sort from this state.  Call it the epsilon-side-effect
  360.    * closure of the state.
  361.    * 
  362.    * The epsilon closure of the state is a subset of the epsilon-side-
  363.    * effect closure.  It consists of all the paths that contain 
  364.    * no side effects -- only epsilon edges.
  365.    * 
  366.    * The paths in the epsilon-side-effect closure  can be partitioned
  367.    * into equivalance sets. Two paths are equivalant if they have the
  368.    * same set of side effects, in the same order.  The epsilon-closure
  369.    * is one of these equivalance sets.  Let's call these equivalance
  370.    * sets: observably equivalant path sets.  That name is chosen
  371.    * because equivalance of two paths means they cause the same side
  372.    * effects -- so they lead to the same subsequent observations other
  373.    * than that they may wind up in different target states.
  374.    *
  375.    * The superstate nfa, which is derived from this nfa, is based on
  376.    * the observation that all of the paths in an observably equivalant
  377.    * path set can be explored at the same time, provided that the
  378.    * matcher keeps track not of a single nfa state, but of a set of
  379.    * states.   In particular, after following all the paths in an
  380.    * observably equivalant set, you wind up at a set of target states.
  381.    * That set of target states corresponds to one state in the
  382.    * superstate NFA.
  383.    *
  384.    * Staticly, before matching begins, it is convenient to analyze the
  385.    * nfa.  Each state is labeled with a list of the observably
  386.    * equivalant path sets who's union covers all the
  387.    * epsilon-side-effect paths beginning in this state.  This list is
  388.    * called the possible futures of the state.
  389.    *
  390.    * A trivial example is this NFA:
  391.    *             s1
  392.    *         A  --->  B
  393.    *
  394.    *             s2  
  395.    *            --->  C
  396.    *
  397.    *             epsilon           s1
  398.    *            --------->  D   ------> E
  399.    * 
  400.    * 
  401.    * In this example, A has two possible futures.
  402.    * One invokes the side effect `s1' and contains two paths,
  403.    * one ending in state B, the other in state E.
  404.    * The other invokes the side effect `s2' and contains only
  405.    * one path, landing in state C.
  406.    */
  407.   struct rx_possible_future *futures;
  408.   /* There are exactly two distinguished states in every NFA: */
  409.   unsigned int is_final:1;
  410.   unsigned int is_start:1;
  411.   /* These are used during NFA construction... */
  412.   unsigned int eclosure_needed:1;
  413.   unsigned int mark:1;
  414. };
  415. /* An edge in an NFA is typed: */
  416. enum rx_nfa_etype
  417. {
  418.   /* A cset edge is labled with a set of characters one of which
  419.    * must be matched for the edge to be taken.
  420.    */
  421.   ne_cset,
  422.   /* An epsilon edge is taken whenever its starting state is
  423.    * reached. 
  424.    */
  425.   ne_epsilon,
  426.   /* A side effect edge is taken whenever its starting state is
  427.    * reached.  Side effects may cause the match to fail or the
  428.    * position of the matcher to advance.
  429.    */
  430.   ne_side_effect /* A special kind of epsilon. */
  431. };
  432. struct rx_nfa_edge
  433. {
  434.   struct rx_nfa_edge *next;
  435.   enum rx_nfa_etype type;
  436.   struct rx_nfa_state *dest;
  437.   union
  438.   {
  439.     rx_Bitset cset;
  440.     rx_side_effect side_effect;
  441.   } params;
  442. };
  443. /* A possible future consists of a list of side effects
  444.  * and a set of destination states.  Below are their
  445.  * representations.  These structures are hash-consed which
  446.  * means that lists with the same elements share a representation
  447.  * (their addresses are ==).
  448.  */
  449. struct rx_nfa_state_set
  450. {
  451.   struct rx_nfa_state * car;
  452.   struct rx_nfa_state_set * cdr;
  453. };
  454. struct rx_se_list
  455. {
  456.   rx_side_effect car;
  457.   struct rx_se_list * cdr;
  458. };
  459. struct rx_possible_future
  460. {
  461.   struct rx_possible_future *next;
  462.   struct rx_se_list * effects;
  463.   struct rx_nfa_state_set * destset;
  464. };
  465. /* This begins the description of the superstate NFA.
  466.  *
  467.  * The superstate NFA corresponds to the NFA in these ways:
  468.  *
  469.  * Every superstate NFA states SUPER correspond to sets of NFA states,
  470.  * nfa_states(SUPER).
  471.  *
  472.  * Superstate edges correspond to NFA paths.
  473.  *
  474.  * The superstate has no epsilon transitions;
  475.  * every edge has a character label, and a (possibly empty) side
  476.  * effect label.   The side effect label corresponds to a list of
  477.  * side effects that occur in the NFA.  These parts are referred
  478.  * to as:   superedge_character(EDGE) and superedge_sides(EDGE).
  479.  *
  480.  * For a superstate edge EDGE starting in some superstate SUPER,
  481.  * the following is true (in pseudo-notation :-):
  482.  *
  483.  *       exists DEST in nfa_states s.t. 
  484.  *         exists nfaEDGE in nfa_edges s.t.
  485.  *                 origin (nfaEDGE) == DEST
  486.  *              && origin (nfaEDGE) is a member of nfa_states(SUPER)
  487.  *              && exists PF in possible_futures(dest(nfaEDGE)) s.t.
  488.  *                  sides_of_possible_future (PF) == superedge_sides (EDGE)
  489.  *
  490.  * also:
  491.  *
  492.  *      let SUPER2 := superedge_destination(EDGE)
  493.  *          nfa_states(SUPER2)
  494.  *           == union of all nfa state sets S s.t.
  495.  *                          exists PF in possible_futures(dest(nfaEDGE)) s.t.
  496.  *                         sides_of_possible_future (PF) == superedge_sides (EDGE)
  497.  *                          && S == dests_of_possible_future (PF) }
  498.  *
  499.  * Or in english, every superstate is a set of nfa states.  A given
  500.  * character and a superstate implies many transitions in the NFA --
  501.  * those that begin with an edge labeled with that character from a
  502.  * state in the set corresponding to the superstate.
  503.  * 
  504.  * The destinations of those transitions each have a set of possible
  505.  * futures.  A possible future is a list of side effects and a set of
  506.  * destination NFA states.  Two sets of possible futures can be
  507.  * `merged' by combining all pairs of possible futures that have the
  508.  * same side effects.  A pair is combined by creating a new future
  509.  * with the same side effect but the union of the two destination sets.
  510.  * In this way, all the possible futures suggested by a superstate
  511.  * and a character can be merged into a set of possible futures where
  512.  * no two elements of the set have the same set of side effects.
  513.  *
  514.  * The destination of a possible future, being a set of NFA states, 
  515.  * corresponds to a supernfa state.  So, the merged set of possible
  516.  * futures we just created can serve as a set of edges in the
  517.  * supernfa.
  518.  *
  519.  * The representation of the superstate nfa and the nfa is critical.
  520.  * The nfa has to be compact, but has to facilitate the rapid
  521.  * computation of missing superstates.  The superstate nfa has to 
  522.  * be fast to interpret, lazilly constructed, and bounded in space.
  523.  *
  524.  * To facilitate interpretation, the superstate data structures are 
  525.  * peppered with `instruction frames'.  There is an instruction set
  526.  * defined below which matchers using the supernfa must be able to
  527.  * interpret.
  528.  *
  529.  * We'd like to make it possible but not mandatory to use code
  530.  * addresses to represent instructions (c.f. gcc's computed goto).
  531.  * Therefore, we define an enumerated type of opcodes, and when
  532.  * writing one of these instructions into a data structure, use
  533.  * the opcode as an index into a table of instruction values.
  534.  * 
  535.  * Here are the opcodes that occur in the superstate nfa:
  536.  */
  537.  
  538. /* Every superstate contains a table of instruction frames indexed 
  539.  * by characters.  A normal `move' in a matcher is to fetch the next
  540.  * character and use it as an index into a superstates transition
  541.  * table.
  542.  *
  543.  * In the fasted case, only one edge follows from that character.
  544.  * In other cases there is more work to do.
  545.  * 
  546.  * The descriptions of the opcodes refer to data structures that are
  547.  * described further below. 
  548.  */
  549. enum rx_opcode
  550. {
  551.   /* 
  552.    * BACKTRACK_POINT is invoked when a character transition in 
  553.    * a superstate leads to more than one edge.  In that case,
  554.    * the edges have to be explored independently using a backtracking
  555.    * strategy.
  556.    *
  557.    * A BACKTRACK_POINT instruction is stored in a superstate's 
  558.    * transition table for some character when it is known that that
  559.    * character crosses more than one edge.  On encountering this
  560.    * instruction, the matcher saves enough state to backtrack to this
  561.    * point in the match later.
  562.    */
  563.   rx_backtrack_point = 0, /* data is (struct transition_class *) */
  564.   /* 
  565.    * RX_DO_SIDE_EFFECTS evaluates the side effects of an epsilon path.
  566.    * There is one occurence of this instruction per rx_distinct_future.
  567.    * This instruction is skipped if a rx_distinct_future has no side effects.
  568.    */
  569.   rx_do_side_effects = rx_backtrack_point + 1,
  570.   /* data is (struct rx_distinct_future *) */
  571.   /* 
  572.    * RX_CACHE_MISS instructions are stored in rx_distinct_futures whose
  573.    * destination superstate has been reclaimed (or was never built).
  574.    * It recomputes the destination superstate.
  575.    * RX_CACHE_MISS is also stored in a superstate transition table before
  576.    * any of its edges have been built.
  577.    */
  578.   rx_cache_miss = rx_do_side_effects + 1,
  579.   /* data is (struct rx_distinct_future *) */
  580.   /* 
  581.    * RX_NEXT_CHAR is called to consume the next character and take the
  582.    * corresponding transition.  This is the only instruction that uses 
  583.    * the DATA field of the instruction frame instead of DATA_2.
  584.    * (see EXPLORE_FUTURE in regex.c).
  585.    */
  586.   rx_next_char = rx_cache_miss + 1, /* data is (struct superstate *) */
  587.   /* RX_BACKTRACK indicates that a transition fails.
  588.    */
  589.   rx_backtrack = rx_next_char + 1, /* no data */
  590.   /* 
  591.    * RX_ERROR_INX is stored only in places that should never be executed.
  592.    */
  593.   rx_error_inx = rx_backtrack + 1, /* Not supposed to occur. */
  594.   rx_num_instructions = rx_error_inx + 1
  595. };
  596. /* An id_instruction_table holds the values stored in instruction
  597.  * frames.  The table is indexed by the enums declared above.
  598.  */
  599. extern void * rx_id_instruction_table[rx_num_instructions];
  600. /* The heart of the matcher is a `word-code-interpreter' 
  601.  * (like a byte-code interpreter, except that instructions
  602.  * are a full word wide).
  603.  *
  604.  * Instructions are not stored in a vector of code, instead,
  605.  * they are scattered throughout the data structures built
  606.  * by the regexp compiler and the matcher.  One word-code instruction,
  607.  * together with the arguments to that instruction, constitute
  608.  * an instruction frame (struct rx_inx).
  609.  *
  610.  * This structure type is padded by hand to a power of 2 because
  611.  * in one of the dominant cases, we dispatch by indexing a table
  612.  * of instruction frames.  If that indexing can be accomplished
  613.  * by just a shift of the index, we're happy.
  614.  *
  615.  * Instructions take at most one argument, but there are two
  616.  * slots in an instruction frame that might hold that argument.
  617.  * These are called data and data_2.  The data slot is only
  618.  * used for one instruction (RX_NEXT_CHAR).  For all other 
  619.  * instructions, data should be set to 0.
  620.  *
  621.  * RX_NEXT_CHAR is the most important instruction by far.
  622.  * By reserving the data field for its exclusive use, 
  623.  * instruction dispatch is sped up in that case.  There is
  624.  * no need to fetch both the instruction and the data,
  625.  * only the data is needed.  In other words, a `cycle' begins
  626.  * by fetching the field data.  If that is non-0, then it must
  627.  * be the destination state of a next_char transition, so
  628.  * make that value the current state, advance the match position
  629.  * by one character, and start a new cycle.  On the other hand,
  630.  * if data is 0, fetch the instruction and do a more complicated
  631.  * dispatch on that.
  632.  */
  633. struct rx_inx 
  634. {
  635.   void * data;
  636.   void * data_2;
  637.   void * inx;
  638.   void * fnord;
  639. };
  640. #ifndef RX_TAIL_ARRAY
  641. #define RX_TAIL_ARRAY  1
  642. #endif
  643. /* A superstate corresponds to a set of nfa states.  Those sets are
  644.  * represented by STRUCT RX_SUPERSET.  The constructors
  645.  * guarantee that only one (shared) structure is created for a given set.
  646.  */
  647. struct rx_superset
  648. {
  649.   int refs; /* This is a reference counted structure. */
  650.   /* We keep these sets in a cache because (in an unpredictable way),
  651.    * the same set is often created again and again.  But that is also
  652.    * problematic -- compatibility with POSIX and GNU regex requires
  653.    * that we not be able to tell when a program discards a particular
  654.    * NFA (thus invalidating the supersets created from it).
  655.    *
  656.    * But when a cache hit appears to occur, we will have in hand the
  657.    * nfa for which it may have happened.  That is why every nfa is given
  658.    * its own sequence number.  On a cache hit, the cache is validated
  659.    * by comparing the nfa sequence number to this field:
  660.    */
  661.   int id;
  662.   struct rx_nfa_state * car; /* May or may not be a valid addr. */
  663.   struct rx_superset * cdr;
  664.   /* If the corresponding superstate exists: */
  665.   struct rx_superstate * superstate;
  666.   /* There is another bookkeeping problem.  It is expensive to 
  667.    * compute the starting nfa state set for an nfa.  So, once computed,
  668.    * it is cached in the `struct rx'.
  669.    *
  670.    * But, the state set can be flushed from the superstate cache.
  671.    * When that happens, we can't know if the corresponding `struct rx'
  672.    * is still alive or if it has been freed or re-used by the program.
  673.    * So, the cached pointer to this set in a struct rx might be invalid
  674.    * and we need a way to validate it.
  675.    *
  676.    * Fortunately, even if this set is flushed from the cache, it is
  677.    * not freed.  It just goes on the free-list of supersets.
  678.    * So we can still examine it.  
  679.    *
  680.    * So to validate a starting set memo, check to see if the
  681.    * starts_for field still points back to the struct rx in question,
  682.    * and if the ID matches the rx sequence number.
  683.    */
  684.   struct rx * starts_for;
  685.   /* This is used to link into a hash bucket so these objects can
  686.    * be `hash-consed'.
  687.    */
  688.   struct rx_hash_item hash_item;
  689. };
  690. #define rx_protect_superset(RX,CON) (++(CON)->refs)
  691. /* The terminology may be confusing (rename this structure?).
  692.  * Every character occurs in at most one rx_super_edge per super-state.
  693.  * But, that structure might have more than one option, indicating a point
  694.  * of non-determinism. 
  695.  *
  696.  * In other words, this structure holds a list of superstate edges
  697.  * sharing a common starting state and character label.  The edges
  698.  * are in the field OPTIONS.  All superstate edges sharing the same
  699.  * starting state and character are in this list.
  700.  */
  701. struct rx_super_edge
  702. {
  703.   struct rx_super_edge *next;
  704.   struct rx_inx rx_backtrack_frame;
  705.   int cset_size;
  706.   rx_Bitset cset;
  707.   struct rx_distinct_future *options;
  708. };
  709. /* A superstate is a set of nfa states (RX_SUPERSET) along
  710.  * with a transition table.  Superstates are built on demand and reclaimed
  711.  * without warning.  To protect a superstate from this ghastly fate,
  712.  * use LOCK_SUPERSTATE. 
  713.  */
  714. struct rx_superstate
  715. {
  716.   int rx_id; /* c.f. the id field of rx_superset */
  717.   int locks; /* protection from reclamation */
  718.   /* Within a superstate cache, all the superstates are kept in a big
  719.    * queue.  The tail of the queue is the state most likely to be
  720.    * reclaimed.  The *recyclable fields hold the queue position of 
  721.    * this state.
  722.    */
  723.   struct rx_superstate * next_recyclable;
  724.   struct rx_superstate * prev_recyclable;
  725.   /* The supernfa edges that exist in the cache and that have
  726.    * this state as their destination are kept in this list:
  727.    */
  728.   struct rx_distinct_future * transition_refs;
  729.   /* The list of nfa states corresponding to this superstate: */
  730.   struct rx_superset * contents;
  731.   /* The list of edges in the cache beginning from this state. */
  732.   struct rx_super_edge * edges;
  733.   /* A tail of the recyclable queue is marked as semifree.  A semifree
  734.    * state has no incoming next_char transitions -- any transition
  735.    * into a semifree state causes a complex dispatch with the side
  736.    * effect of rescuing the state from its semifree state.
  737.    *
  738.    * An alternative to this might be to make next_char more expensive,
  739.    * and to move a state to the head of the recyclable queue whenever
  740.    * it is entered.  That way, popular states would never be recycled.
  741.    *
  742.    * But unilaterally making next_char more expensive actually loses.
  743.    * So, incoming transitions are only made expensive for states near
  744.    * the tail of the recyclable queue.  The more cache contention
  745.    * there is, the more frequently a state will have to prove itself
  746.    * and be moved back to the front of the queue.  If there is less 
  747.    * contention, then popular states just aggregate in the front of 
  748.    * the queue and stay there.
  749.    */
  750.   int is_semifree;
  751.   /* This keeps track of the size of the transition table for this
  752.    * state.  There is a half-hearted attempt to support variable sized
  753.    * superstates.
  754.    */
  755.   int trans_size;
  756.   /* Indexed by characters... */
  757.   struct rx_inx transitions[RX_TAIL_ARRAY];
  758. };
  759. /* A list of distinct futures define the edges that leave from a 
  760.  * given superstate on a given character.  c.f. rx_super_edge.
  761.  */
  762. struct rx_distinct_future
  763. {
  764.   struct rx_distinct_future * next_same_super_edge[2];
  765.   struct rx_distinct_future * next_same_dest;
  766.   struct rx_distinct_future * prev_same_dest;
  767.   struct rx_superstate * present; /* source state */
  768.   struct rx_superstate * future; /* destination state */
  769.   struct rx_super_edge * edge;
  770.   /* The future_frame holds the instruction that should be executed
  771.    * after all the side effects are done, when it is time to complete
  772.    * the transition to the next state.
  773.    *
  774.    * Normally this is a next_char instruction, but it may be a
  775.    * cache_miss instruction as well, depending on whether or not
  776.    * the superstate is in the cache and semifree.
  777.    * 
  778.    * If this is the only future for a given superstate/char, and
  779.    * if there are no side effects to be performed, this frame is
  780.    * not used (directly) at all.  Instead, its contents are copied
  781.    * into the transition table of the starting state of this dist. future.
  782.    */
  783.   struct rx_inx future_frame;
  784.   struct rx_inx side_effects_frame;
  785.   struct rx_se_list * effects;
  786. };
  787. #define rx_lock_superstate(R,S)  ((S)->locks++)
  788. #define rx_unlock_superstate(R,S) (--(S)->locks)
  789. /* This page destined for rx.h */
  790. struct rx_blocklist
  791. {
  792.   struct rx_blocklist * next;
  793.   int bytes;
  794. };
  795. struct rx_freelist
  796. {
  797.   struct rx_freelist * next;
  798. };
  799. struct rx_cache;
  800. #ifdef __STDC__
  801. typedef void (*rx_morecore_fn)(struct rx_cache *);
  802. #else
  803. typedef void (*rx_morecore_fn)();
  804. #endif
  805. /* You use this to control the allocation of superstate data 
  806.  * during matching.  Most of it should be initialized to 0.
  807.  *
  808.  * A MORECORE function is necessary.  It should allocate
  809.  * a new block of memory or return 0.
  810.  * A default that uses malloc is called `rx_morecore'.
  811.  *
  812.  * The number of SUPERSTATES_ALLOWED indirectly limits how much memory
  813.  * the system will try to allocate.  The default is 128.  Batch style
  814.  * applications that are very regexp intensive should use as high a number
  815.  * as possible without thrashing.
  816.  * 
  817.  * The LOCAL_CSET_SIZE is the number of characters in a character set.
  818.  * It is therefore the number of entries in a superstate transition table.
  819.  * Generally, it should be 256.  If your character set has 16 bits, 
  820.  * it is better to translate your regexps into equivalent 8 bit patterns.
  821.  */
  822. struct rx_cache
  823. {
  824.   struct rx_hash_rules superset_hash_rules;
  825.   /* Objects are allocated by incrementing a pointer that 
  826.    * scans across rx_blocklists.
  827.    */
  828.   struct rx_blocklist * memory;
  829.   struct rx_blocklist * memory_pos;
  830.   int bytes_left;
  831.   char * memory_addr;
  832.   rx_morecore_fn morecore;
  833.   /* Freelists. */
  834.   struct rx_freelist * free_superstates;
  835.   struct rx_freelist * free_transition_classes;
  836.   struct rx_freelist * free_discernable_futures;
  837.   struct rx_freelist * free_supersets;
  838.   struct rx_freelist * free_hash;
  839.   /* Two sets of superstates -- those that are semifreed, and those
  840.    * that are being used.
  841.    */
  842.   struct rx_superstate * lru_superstate;
  843.   struct rx_superstate * semifree_superstate;
  844.   struct rx_superset * empty_superset;
  845.   int superstates;
  846.   int semifree_superstates;
  847.   int hits;
  848.   int misses;
  849.   int superstates_allowed;
  850.   int local_cset_size;
  851.   void ** instruction_table;
  852.   struct rx_hash superset_table;
  853. };
  854. /* The lowest-level search function supports arbitrarily fragmented
  855.  * strings and (optionally) suspendable/resumable searches.
  856.  *
  857.  * Callers have to provide a few hooks.
  858.  */
  859. #ifndef __GNUC__
  860. #ifdef __STDC__
  861. #define __const__ const
  862. #else
  863. #define __const__
  864. #endif
  865. #endif
  866. /* This holds a matcher position */
  867. struct rx_string_position
  868. {
  869.   __const__ unsigned char * pos; /* The current pos. */
  870.   __const__ unsigned char * string; /* The current string burst. */
  871.   __const__ unsigned char * end; /* First invalid position >= POS. */
  872.   int offset; /* Integer address of the current burst. */
  873.   int size; /* Current string's size. */
  874.   int search_direction; /* 1 or -1 */
  875.   int search_end; /* First position to not try. */
  876. };
  877. enum rx_get_burst_return
  878. {
  879.   rx_get_burst_continuation,
  880.   rx_get_burst_error,
  881.   rx_get_burst_ok,
  882.   rx_get_burst_no_more
  883. };
  884. /* A call to get burst should make POS valid.  It might be invalid
  885.  * if the STRING field doesn't point to a burst that actually
  886.  * contains POS.
  887.  *
  888.  * GET_BURST should take a clue from SEARCH_DIRECTION (1 or -1) as to
  889.  * whether or not to pad to the left.  Padding to the right is always
  890.  * appropriate, but need not go past the point indicated by STOP.
  891.  *
  892.  * If a continuation is returned, then the reentering call to
  893.  * a search function will retry the get_burst.
  894.  */
  895. #ifdef __STDC__
  896. typedef enum rx_get_burst_return
  897.   (*rx_get_burst_fn) (struct rx_string_position * pos,
  898.       void * app_closure,
  899.       int stop);
  900.        
  901. #else
  902. typedef enum rx_get_burst_return (*rx_get_burst_fn) ();
  903. #endif
  904. enum rx_back_check_return
  905. {
  906.   rx_back_check_continuation,
  907.   rx_back_check_error,
  908.   rx_back_check_pass,
  909.   rx_back_check_fail
  910. };
  911. /* Back_check should advance the position it is passed 
  912.  * over rparen - lparen characters and return pass iff
  913.  * the characters starting at POS match those indexed
  914.  * by [LPAREN..RPAREN].
  915.  *
  916.  * If a continuation is returned, then the reentering call to
  917.  * a search function will retry the back_check.
  918.  */
  919. #ifdef __STDC__
  920. typedef enum rx_back_check_return
  921.   (*rx_back_check_fn) (struct rx_string_position * pos,
  922.        int lparen,
  923.        int rparen,
  924.        unsigned char * translate,
  925.        void * app_closure,
  926.        int stop);
  927.        
  928. #else
  929. typedef enum rx_back_check_return (*rx_back_check_fn) ();
  930. #endif
  931. /* A call to fetch_char should return the character at POS or POS + 1.
  932.  * Returning continuations here isn't supported.  OFFSET is either 0 or 1
  933.  * and indicates which characters is desired.
  934.  */
  935. #ifdef __STDC__
  936. typedef int (*rx_fetch_char_fn) (struct rx_string_position * pos,
  937.  int offset,
  938.  void * app_closure,
  939.  int stop);
  940. #else
  941. typedef int (*rx_fetch_char_fn) ();
  942. #endif
  943. enum rx_search_return
  944. {
  945.   rx_search_continuation = -4,
  946.   rx_search_error = -3,
  947.   rx_search_soft_fail = -2, /* failed by running out of string */
  948.   rx_search_fail = -1 /* failed only by reaching failure states */
  949.   /* return values >= 0 indicate the position of a successful match */
  950. };
  951. /* regex.h
  952.  * 
  953.  * The remaining declarations replace regex.h.
  954.  */
  955. /* This is an array of error messages corresponding to the error codes.
  956.  */
  957. extern __const__ char *re_error_msg[];
  958. /* If any error codes are removed, changed, or added, update the
  959.    `re_error_msg' table in regex.c.  */
  960. typedef enum
  961. {
  962.   REG_NOERROR = 0, /* Success.  */
  963.   REG_NOMATCH, /* Didn't find a match (for regexec).  */
  964.   /* POSIX regcomp return error codes.  (In the order listed in the
  965.      standard.)  */
  966.   REG_BADPAT, /* Invalid pattern.  */
  967.   REG_ECOLLATE, /* Not implemented.  */
  968.   REG_ECTYPE, /* Invalid character class name.  */
  969.   REG_EESCAPE, /* Trailing backslash.  */
  970.   REG_ESUBREG, /* Invalid back reference.  */
  971.   REG_EBRACK, /* Unmatched left bracket.  */
  972.   REG_EPAREN, /* Parenthesis imbalance.  */ 
  973.   REG_EBRACE, /* Unmatched {.  */
  974.   REG_BADBR, /* Invalid contents of {}.  */
  975.   REG_ERANGE, /* Invalid range end.  */
  976.   REG_ESPACE, /* Ran out of memory.  */
  977.   REG_BADRPT, /* No preceding re for repetition op.  */
  978.   /* Error codes we've added.  */
  979.   REG_EEND, /* Premature end.  */
  980.   REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes.  */
  981.   REG_ERPAREN /* Unmatched ) or ); not returned from regcomp.  */
  982. } reg_errcode_t;
  983. /* The regex.c support, as a client of rx, defines a set of possible
  984.  * side effects that can be added to the edge lables of nfa edges.
  985.  * Here is the list of sidef effects in use.
  986.  */
  987. enum re_side_effects
  988. {
  989. #define RX_WANT_SE_DEFS 1
  990. #undef RX_DEF_SE
  991. #undef RX_DEF_CPLX_SE
  992. #define RX_DEF_SE(IDEM, NAME, VALUE)       NAME VALUE,
  993. #define RX_DEF_CPLX_SE(IDEM, NAME, VALUE)     NAME VALUE,
  994. #include "rx.h"
  995. #undef RX_DEF_SE
  996. #undef RX_DEF_CPLX_SE
  997. #undef RX_WANT_SE_DEFS
  998.    re_floogle_flap = 65533
  999. };
  1000. /* These hold paramaters for the kinds of side effects that are possible
  1001.  * in the supported pattern languages.  These include things like the 
  1002.  * numeric bounds of {} operators and the index of paren registers for 
  1003.  * subexpression measurement or backreferencing.
  1004.  */
  1005. struct re_se_params
  1006. {
  1007.   enum re_side_effects se;
  1008.   int op1;
  1009.   int op2;
  1010. };
  1011. typedef unsigned reg_syntax_t;
  1012. struct re_pattern_buffer
  1013. {
  1014.   struct rx rx;
  1015.   reg_syntax_t syntax; /* See below for syntax bit definitions. */
  1016.   unsigned int no_sub:1; /* If set, don't  return register offsets. */
  1017.   unsigned int not_bol:1; /* If set, the anchors ('^' and '$') don't */
  1018.   unsigned int not_eol:1; /*     match at the ends of the string.  */  
  1019.   unsigned int newline_anchor:1;/* If true, an anchor at a newline matches.*/
  1020.   unsigned int least_subs:1; /* If set, and returning registers, return
  1021.  * as few values as possible.  Only 
  1022.  * backreferenced groups and group 0 (the whole
  1023.  * match) will be returned.
  1024.  */
  1025.   /* If true, this says that the matcher should keep registers on its
  1026.    * backtracking stack.  For many patterns, we can easily determine that
  1027.    * this isn't necessary.
  1028.    */
  1029.   unsigned int match_regs_on_stack:1;
  1030.   unsigned int search_regs_on_stack:1;
  1031.   /* is_anchored and begbuf_only are filled in by rx_compile. */
  1032.   unsigned int is_anchored:1; /* Anchorded by ^? */
  1033.   unsigned int begbuf_only:1; /* Anchored to char position 0? */
  1034.   
  1035.   /* If REGS_UNALLOCATED, allocate space in the `regs' structure
  1036.    * for `max (RE_NREGS, re_nsub + 1)' groups.
  1037.    * If REGS_REALLOCATE, reallocate space if necessary.
  1038.    * If REGS_FIXED, use what's there.  
  1039.    */
  1040. #define REGS_UNALLOCATED 0
  1041. #define REGS_REALLOCATE 1
  1042. #define REGS_FIXED 2
  1043.   unsigned int regs_allocated:2;
  1044.   
  1045.   /* Either a translate table to apply to all characters before
  1046.    * comparing them, or zero for no translation.  The translation
  1047.    * is applied to a pattern when it is compiled and to a string
  1048.    * when it is matched.
  1049.    */
  1050.   unsigned char * translate;
  1051.   /* If this is a valid pointer, it tells rx not to store the extents of 
  1052.    * certain subexpressions (those corresponding to non-zero entries).
  1053.    * Passing 0x1 is the same as passing an array of all ones.  Passing 0x0
  1054.    * is the same as passing an array of all zeros.
  1055.    * The array should contain as many entries as their are subexps in the 
  1056.    * regexp.
  1057.    */
  1058.   char * syntax_parens;
  1059. /* Number of subexpressions found by the compiler.  */
  1060.   size_t re_nsub;
  1061.   void * buffer; /* Malloced memory for the nfa. */
  1062.   unsigned long allocated; /* Size of that memory. */
  1063.   /* Pointer to a fastmap, if any, otherwise zero.  re_search uses
  1064.    * the fastmap, if there is one, to skip over impossible
  1065.    * starting points for matches.  */
  1066.   char *fastmap;
  1067.   unsigned int fastmap_accurate:1; /* These three are internal. */
  1068.   unsigned int can_match_empty:1;  
  1069.   struct rx_nfa_state * start; /* The nfa starting state. */
  1070.   /* This is the list of iterator bounds for {lo,hi} constructs.
  1071.    * The memory pointed to is part of the rx->buffer.
  1072.    */
  1073.   struct re_se_params *se_params;
  1074.   /* This is a bitset representation of the fastmap.
  1075.    * This is a true fastmap that already takes the translate
  1076.    * table into account.
  1077.    */
  1078.   rx_Bitset fastset;
  1079. };
  1080. /* Type for byte offsets within the string.  POSIX mandates this.  */
  1081. typedef int regoff_t;
  1082. /* This is the structure we store register match data in.  See
  1083.    regex.texinfo for a full description of what registers match.  */
  1084. struct re_registers
  1085. {
  1086.   unsigned num_regs;
  1087.   regoff_t *start;
  1088.   regoff_t *end;
  1089. };
  1090. typedef struct re_pattern_buffer regex_t;
  1091. /* POSIX specification for registers.  Aside from the different names than
  1092.    `re_registers', POSIX uses an array of structures, instead of a
  1093.    structure of arrays.  */
  1094. typedef struct
  1095. {
  1096.   regoff_t rm_so;  /* Byte offset from string's start to substring's start.  */
  1097.   regoff_t rm_eo;  /* Byte offset from string's start to substring's end.  */
  1098. } regmatch_t;
  1099. /* The following bits are used to determine the regexp syntax we
  1100.    recognize.  The set/not-set meanings are chosen so that Emacs syntax
  1101.    remains the value 0.  The bits are given in alphabetical order, and
  1102.    the definitions shifted by one from the previous bit; thus, when we
  1103.    add or remove a bit, only one other definition need change.  */
  1104. /* If this bit is not set, then  inside a bracket expression is literal.
  1105.    If set, then such a  quotes the following character.  */
  1106. #define RE_BACKSLASH_ESCAPE_IN_LISTS (1)
  1107. /* If this bit is not set, then + and ? are operators, and + and ? are
  1108.      literals. 
  1109.    If set, then + and ? are operators and + and ? are literals.  */
  1110. #define RE_BK_PLUS_QM (RE_BACKSLASH_ESCAPE_IN_LISTS << 1)
  1111. /* If this bit is set, then character classes are supported.  They are:
  1112.      [:alpha:], [:upper:], [:lower:],  [:digit:], [:alnum:], [:xdigit:],
  1113.      [:space:], [:print:], [:punct:], [:graph:], and [:cntrl:].
  1114.    If not set, then character classes are not supported.  */
  1115. #define RE_CHAR_CLASSES (RE_BK_PLUS_QM << 1)
  1116. /* If this bit is set, then ^ and $ are always anchors (outside bracket
  1117.      expressions, of course).
  1118.    If this bit is not set, then it depends:
  1119.         ^  is an anchor if it is at the beginning of a regular
  1120.            expression or after an open-group or an alternation operator;
  1121.         $  is an anchor if it is at the end of a regular expression, or
  1122.            before a close-group or an alternation operator.  
  1123.    This bit could be (re)combined with RE_CONTEXT_INDEP_OPS, because
  1124.    POSIX draft 11.2 says that * etc. in leading positions is undefined.
  1125.    We already implemented a previous draft which made those constructs
  1126.    invalid, though, so we haven't changed the code back.  */
  1127. #define RE_CONTEXT_INDEP_ANCHORS (RE_CHAR_CLASSES << 1)
  1128. /* If this bit is set, then special characters are always special
  1129.      regardless of where they are in the pattern.
  1130.    If this bit is not set, then special characters are special only in
  1131.      some contexts; otherwise they are ordinary.  Specifically, 
  1132.      * + ? and intervals are only special when not after the beginning,
  1133.      open-group, or alternation operator.  */
  1134. #define RE_CONTEXT_INDEP_OPS (RE_CONTEXT_INDEP_ANCHORS << 1)
  1135. /* If this bit is set, then *, +, ?, and { cannot be first in an re or
  1136.      immediately after an alternation or begin-group operator.  */
  1137. #define RE_CONTEXT_INVALID_OPS (RE_CONTEXT_INDEP_OPS << 1)
  1138. /* If this bit is set, then . matches newline.
  1139.    If not set, then it doesn't.  */
  1140. #define RE_DOT_NEWLINE (RE_CONTEXT_INVALID_OPS << 1)
  1141. /* If this bit is set, then . doesn't match NUL.
  1142.    If not set, then it does.  */
  1143. #define RE_DOT_NOT_NULL (RE_DOT_NEWLINE << 1)
  1144. /* If this bit is set, nonmatching lists [^...] do not match newline.
  1145.    If not set, they do.  */
  1146. #define RE_HAT_LISTS_NOT_NEWLINE (RE_DOT_NOT_NULL << 1)
  1147. /* If this bit is set, either {...} or {...} defines an
  1148.      interval, depending on RE_NO_BK_BRACES. 
  1149.    If not set, {, }, {, and } are literals.  */
  1150. #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
  1151. /* If this bit is set, +, ? and | aren't recognized as operators.
  1152.    If not set, they are.  */
  1153. #define RE_LIMITED_OPS (RE_INTERVALS << 1)
  1154. /* If this bit is set, newline is an alternation operator.
  1155.    If not set, newline is literal.  */
  1156. #define RE_NEWLINE_ALT (RE_LIMITED_OPS << 1)
  1157. /* If this bit is set, then `{...}' defines an interval, and { and }
  1158.      are literals.
  1159.   If not set, then `{...}' defines an interval.  */
  1160. #define RE_NO_BK_BRACES (RE_NEWLINE_ALT << 1)
  1161. /* If this bit is set, (...) defines a group, and ( and ) are literals.
  1162.    If not set, (...) defines a group, and ( and ) are literals.  */
  1163. #define RE_NO_BK_PARENS (RE_NO_BK_BRACES << 1)
  1164. /* If this bit is set, then <digit> matches <digit>.
  1165.    If not set, then <digit> is a back-reference.  */
  1166. #define RE_NO_BK_REFS (RE_NO_BK_PARENS << 1)
  1167. /* If this bit is set, then | is an alternation operator, and | is literal. 
  1168.    If not set, then | is an alternation operator, and | is literal.  */
  1169. #define RE_NO_BK_VBAR (RE_NO_BK_REFS << 1)
  1170. /* If this bit is set, then an ending range point collating higher
  1171.      than the starting range point, as in [z-a], is invalid.
  1172.    If not set, then when ending range point collates higher than the
  1173.      starting range point, the range is ignored.  */
  1174. #define RE_NO_EMPTY_RANGES (RE_NO_BK_VBAR << 1)
  1175. /* If this bit is set, then an unmatched ) is ordinary.
  1176.    If not set, then an unmatched ) is invalid.  */
  1177. #define RE_UNMATCHED_RIGHT_PAREN_ORD (RE_NO_EMPTY_RANGES << 1)
  1178. /* This global variable defines the particular regexp syntax to use (for
  1179.    some interfaces).  When a regexp is compiled, the syntax used is
  1180.    stored in the pattern buffer, so changing this does not affect
  1181.    already-compiled regexps.  */
  1182. extern reg_syntax_t re_syntax_options;
  1183. /* Define combinations of the above bits for the standard possibilities.
  1184.    (The [[[ comments delimit what gets put into the Texinfo file, so
  1185.    don't delete them!)  */ 
  1186. /* [[[begin syntaxes]]] */
  1187. #define RE_SYNTAX_EMACS 0
  1188. #define RE_SYNTAX_AWK
  1189.   (RE_BACKSLASH_ESCAPE_IN_LISTS | RE_DOT_NOT_NULL
  1190.    | RE_NO_BK_PARENS            | RE_NO_BK_REFS
  1191.    | RE_NO_BK_VAR               | RE_NO_EMPTY_RANGES
  1192.    | RE_UNMATCHED_RIGHT_PAREN_ORD)
  1193. #define RE_SYNTAX_POSIX_AWK 
  1194.   (RE_SYNTAX_POSIX_EXTENDED | RE_BACKSLASH_ESCAPE_IN_LISTS)
  1195. #define RE_SYNTAX_GREP
  1196.   (RE_BK_PLUS_QM              | RE_CHAR_CLASSES
  1197.    | RE_HAT_LISTS_NOT_NEWLINE | RE_INTERVALS
  1198.    | RE_NEWLINE_ALT)
  1199. #define RE_SYNTAX_EGREP
  1200.   (RE_CHAR_CLASSES        | RE_CONTEXT_INDEP_ANCHORS
  1201.    | RE_CONTEXT_INDEP_OPS | RE_HAT_LISTS_NOT_NEWLINE
  1202.    | RE_NEWLINE_ALT       | RE_NO_BK_PARENS
  1203.    | RE_NO_BK_VBAR)
  1204. #define RE_SYNTAX_POSIX_EGREP
  1205.   (RE_SYNTAX_EGREP | RE_INTERVALS | RE_NO_BK_BRACES)
  1206. #define RE_SYNTAX_SED RE_SYNTAX_POSIX_BASIC
  1207. /* Syntax bits common to both basic and extended POSIX regex syntax.  */
  1208. #define _RE_SYNTAX_POSIX_COMMON
  1209.   (RE_CHAR_CLASSES | RE_DOT_NEWLINE      | RE_DOT_NOT_NULL
  1210.    | RE_INTERVALS  | RE_NO_EMPTY_RANGES)
  1211. #define RE_SYNTAX_POSIX_BASIC
  1212.   (_RE_SYNTAX_POSIX_COMMON | RE_BK_PLUS_QM)
  1213. /* Differs from ..._POSIX_BASIC only in that RE_BK_PLUS_QM becomes
  1214.    RE_LIMITED_OPS, i.e., ? + | are not recognized.  Actually, this
  1215.    isn't minimal, since other operators, such as `, aren't disabled.  */
  1216. #define RE_SYNTAX_POSIX_MINIMAL_BASIC
  1217.   (_RE_SYNTAX_POSIX_COMMON | RE_LIMITED_OPS)
  1218. #define RE_SYNTAX_POSIX_EXTENDED
  1219.   (_RE_SYNTAX_POSIX_COMMON | RE_CONTEXT_INDEP_ANCHORS
  1220.    | RE_CONTEXT_INDEP_OPS  | RE_NO_BK_BRACES
  1221.    | RE_NO_BK_PARENS       | RE_NO_BK_VBAR
  1222.    | RE_UNMATCHED_RIGHT_PAREN_ORD)
  1223. /* Differs from ..._POSIX_EXTENDED in that RE_CONTEXT_INVALID_OPS
  1224.    replaces RE_CONTEXT_INDEP_OPS and RE_NO_BK_REFS is added.  */
  1225. #define RE_SYNTAX_POSIX_MINIMAL_EXTENDED
  1226.   (_RE_SYNTAX_POSIX_COMMON  | RE_CONTEXT_INDEP_ANCHORS
  1227.    | RE_CONTEXT_INVALID_OPS | RE_NO_BK_BRACES
  1228.    | RE_NO_BK_PARENS        | RE_NO_BK_REFS
  1229.    | RE_NO_BK_VBAR     | RE_UNMATCHED_RIGHT_PAREN_ORD)
  1230. /* [[[end syntaxes]]] */
  1231. /* Maximum number of duplicates an interval can allow.  Some systems
  1232.    (erroneously) define this in other header files, but we want our
  1233.    value, so remove any previous define.  */
  1234. #ifdef RE_DUP_MAX
  1235. #undef RE_DUP_MAX
  1236. #endif
  1237. #define RE_DUP_MAX ((1 << 15) - 1) 
  1238. /* POSIX `cflags' bits (i.e., information for `regcomp').  */
  1239. /* If this bit is set, then use extended regular expression syntax.
  1240.    If not set, then use basic regular expression syntax.  */
  1241. #define REG_EXTENDED 1
  1242. /* If this bit is set, then ignore case when matching.
  1243.    If not set, then case is significant.  */
  1244. #define REG_ICASE (REG_EXTENDED << 1)
  1245.  
  1246. /* If this bit is set, then anchors do not match at newline
  1247.      characters in the string.
  1248.    If not set, then anchors do match at newlines.  */
  1249. #define REG_NEWLINE (REG_ICASE << 1)
  1250. /* If this bit is set, then report only success or fail in regexec.
  1251.    If not set, then returns differ between not matching and errors.  */
  1252. #define REG_NOSUB (REG_NEWLINE << 1)
  1253. /* POSIX `eflags' bits (i.e., information for regexec).  */
  1254. /* If this bit is set, then the beginning-of-line operator doesn't match
  1255.      the beginning of the string (presumably because it's not the
  1256.      beginning of a line).
  1257.    If not set, then the beginning-of-line operator does match the
  1258.      beginning of the string.  */
  1259. #define REG_NOTBOL 1
  1260. /* Like REG_NOTBOL, except for the end-of-line.  */
  1261. #define REG_NOTEOL (1 << 1)
  1262. /* If `regs_allocated' is REGS_UNALLOCATED in the pattern buffer,
  1263.  * `re_match_2' returns information about at least this many registers
  1264.  * the first time a `regs' structure is passed. 
  1265.  *
  1266.  * Also, this is the greatest number of backreferenced subexpressions
  1267.  * allowed in a pattern being matched without caller-supplied registers.
  1268.  */
  1269. #ifndef RE_NREGS
  1270. #define RE_NREGS 30
  1271. #endif
  1272. extern int rx_cache_bound;
  1273. extern char rx_version_string[];
  1274. #ifdef RX_WANT_RX_DEFS
  1275. /* This is decls to the interesting subsystems and lower layers
  1276.  * of rx.  Everything which doesn't have a public counterpart in 
  1277.  * regex.c is declared here.
  1278.  */
  1279. #ifdef __STDC__
  1280. typedef void (*rx_hash_freefn) (struct rx_hash_item * it);
  1281. #else /* ndef __STDC__ */
  1282. typedef void (*rx_hash_freefn) ();
  1283. #endif /* ndef __STDC__ */
  1284. #ifdef __STDC__
  1285. RX_DECL int rx_bitset_is_equal (int size, rx_Bitset a, rx_Bitset b);
  1286. RX_DECL int rx_bitset_is_subset (int size, rx_Bitset a, rx_Bitset b);
  1287. RX_DECL int rx_bitset_empty (int size, rx_Bitset set);
  1288. RX_DECL void rx_bitset_null (int size, rx_Bitset b);
  1289. RX_DECL void rx_bitset_universe (int size, rx_Bitset b);
  1290. RX_DECL void rx_bitset_complement (int size, rx_Bitset b);
  1291. RX_DECL void rx_bitset_assign (int size, rx_Bitset a, rx_Bitset b);
  1292. RX_DECL void rx_bitset_union (int size, rx_Bitset a, rx_Bitset b);
  1293. RX_DECL void rx_bitset_intersection (int size,
  1294.      rx_Bitset a, rx_Bitset b);
  1295. RX_DECL void rx_bitset_difference (int size, rx_Bitset a, rx_Bitset b);
  1296. RX_DECL void rx_bitset_revdifference (int size,
  1297.       rx_Bitset a, rx_Bitset b);
  1298. RX_DECL void rx_bitset_xor (int size, rx_Bitset a, rx_Bitset b);
  1299. RX_DECL unsigned long rx_bitset_hash (int size, rx_Bitset b);
  1300. RX_DECL struct rx_hash_item * rx_hash_find (struct rx_hash * table,
  1301.     unsigned long hash,
  1302.     void * value,
  1303.     struct rx_hash_rules * rules);
  1304. RX_DECL struct rx_hash_item * rx_hash_store (struct rx_hash * table,
  1305.      unsigned long hash,
  1306.      void * value,
  1307.      struct rx_hash_rules * rules);
  1308. RX_DECL void rx_hash_free (struct rx_hash_item * it, struct rx_hash_rules * rules);
  1309. RX_DECL void rx_free_hash_table (struct rx_hash * tab, rx_hash_freefn freefn,
  1310.  struct rx_hash_rules * rules);
  1311. RX_DECL rx_Bitset rx_cset (struct rx *rx);
  1312. RX_DECL rx_Bitset rx_copy_cset (struct rx *rx, rx_Bitset a);
  1313. RX_DECL void rx_free_cset (struct rx * rx, rx_Bitset c);
  1314. RX_DECL struct rexp_node * rexp_node (struct rx *rx,
  1315.       enum rexp_node_type type);
  1316. RX_DECL struct rexp_node * rx_mk_r_cset (struct rx * rx,
  1317.  rx_Bitset b);
  1318. RX_DECL struct rexp_node * rx_mk_r_concat (struct rx * rx,
  1319.    struct rexp_node * a,
  1320.    struct rexp_node * b);
  1321. RX_DECL struct rexp_node * rx_mk_r_alternate (struct rx * rx,
  1322.       struct rexp_node * a,
  1323.       struct rexp_node * b);
  1324. RX_DECL struct rexp_node * rx_mk_r_opt (struct rx * rx,
  1325. struct rexp_node * a);
  1326. RX_DECL struct rexp_node * rx_mk_r_star (struct rx * rx,
  1327.  struct rexp_node * a);
  1328. RX_DECL struct rexp_node * rx_mk_r_2phase_star (struct rx * rx,
  1329. struct rexp_node * a,
  1330. struct rexp_node * b);
  1331. RX_DECL struct rexp_node * rx_mk_r_side_effect (struct rx * rx,
  1332. rx_side_effect a);
  1333. RX_DECL struct rexp_node * rx_mk_r_data  (struct rx * rx,
  1334.   void * a);
  1335. RX_DECL void rx_free_rexp (struct rx * rx, struct rexp_node * node);
  1336. RX_DECL struct rexp_node * rx_copy_rexp (struct rx *rx,
  1337.  struct rexp_node *node);
  1338. RX_DECL struct rx_nfa_state * rx_nfa_state (struct rx *rx);
  1339. RX_DECL void rx_free_nfa_state (struct rx_nfa_state * n);
  1340. RX_DECL struct rx_nfa_state * rx_id_to_nfa_state (struct rx * rx,
  1341.   int id);
  1342. RX_DECL struct rx_nfa_edge * rx_nfa_edge (struct rx *rx,
  1343.   enum rx_nfa_etype type,
  1344.   struct rx_nfa_state *start,
  1345.   struct rx_nfa_state *dest);
  1346. RX_DECL void rx_free_nfa_edge (struct rx_nfa_edge * e);
  1347. RX_DECL void rx_free_nfa (struct rx *rx);
  1348. RX_DECL int rx_build_nfa (struct rx *rx,
  1349.   struct rexp_node *rexp,
  1350.   struct rx_nfa_state **start,
  1351.   struct rx_nfa_state **end);
  1352. RX_DECL void rx_name_nfa_states (struct rx *rx);
  1353. RX_DECL int rx_eclose_nfa (struct rx *rx);
  1354. RX_DECL void rx_delete_epsilon_transitions (struct rx *rx);
  1355. RX_DECL int rx_compactify_nfa (struct rx *rx,
  1356.        void **mem, unsigned long *size);
  1357. RX_DECL void rx_release_superset (struct rx *rx,
  1358.   struct rx_superset *set);
  1359. RX_DECL struct rx_superset * rx_superset_cons (struct rx * rx,
  1360.        struct rx_nfa_state *car, struct rx_superset *cdr);
  1361. RX_DECL struct rx_superset * rx_superstate_eclosure_union
  1362.   (struct rx * rx, struct rx_superset *set, struct rx_nfa_state_set *ecl);
  1363. RX_DECL struct rx_superstate * rx_superstate (struct rx *rx,
  1364.       struct rx_superset *set);
  1365. RX_DECL struct rx_inx * rx_handle_cache_miss
  1366.   (struct rx *rx, struct rx_superstate *super, unsigned char chr, void *data);
  1367. RX_DECL reg_errcode_t rx_compile (__const__ char *pattern, int size,
  1368.   reg_syntax_t syntax,
  1369.   struct re_pattern_buffer * rxb);
  1370. RX_DECL void rx_blow_up_fastmap (struct re_pattern_buffer * rxb);
  1371. #else /* STDC */
  1372. RX_DECL int rx_bitset_is_equal ();
  1373. RX_DECL int rx_bitset_is_subset ();
  1374. RX_DECL int rx_bitset_empty ();
  1375. RX_DECL void rx_bitset_null ();
  1376. RX_DECL void rx_bitset_universe ();
  1377. RX_DECL void rx_bitset_complement ();
  1378. RX_DECL void rx_bitset_assign ();
  1379. RX_DECL void rx_bitset_union ();
  1380. RX_DECL void rx_bitset_intersection ();
  1381. RX_DECL void rx_bitset_difference ();
  1382. RX_DECL void rx_bitset_revdifference ();
  1383. RX_DECL void rx_bitset_xor ();
  1384. RX_DECL unsigned long rx_bitset_hash ();
  1385. RX_DECL struct rx_hash_item * rx_hash_find ();
  1386. RX_DECL struct rx_hash_item * rx_hash_store ();
  1387. RX_DECL void rx_hash_free ();
  1388. RX_DECL void rx_free_hash_table ();
  1389. RX_DECL rx_Bitset rx_cset ();
  1390. RX_DECL rx_Bitset rx_copy_cset ();
  1391. RX_DECL void rx_free_cset ();
  1392. RX_DECL struct rexp_node * rexp_node ();
  1393. RX_DECL struct rexp_node * rx_mk_r_cset ();
  1394. RX_DECL struct rexp_node * rx_mk_r_concat ();
  1395. RX_DECL struct rexp_node * rx_mk_r_alternate ();
  1396. RX_DECL struct rexp_node * rx_mk_r_opt ();
  1397. RX_DECL struct rexp_node * rx_mk_r_star ();
  1398. RX_DECL struct rexp_node * rx_mk_r_2phase_star ();
  1399. RX_DECL struct rexp_node * rx_mk_r_side_effect ();
  1400. RX_DECL struct rexp_node * rx_mk_r_data  ();
  1401. RX_DECL void rx_free_rexp ();
  1402. RX_DECL struct rexp_node * rx_copy_rexp ();
  1403. RX_DECL struct rx_nfa_state * rx_nfa_state ();
  1404. RX_DECL void rx_free_nfa_state ();
  1405. RX_DECL struct rx_nfa_state * rx_id_to_nfa_state ();
  1406. RX_DECL struct rx_nfa_edge * rx_nfa_edge ();
  1407. RX_DECL void rx_free_nfa_edge ();
  1408. RX_DECL void rx_free_nfa ();
  1409. RX_DECL int rx_build_nfa ();
  1410. RX_DECL void rx_name_nfa_states ();
  1411. RX_DECL int rx_eclose_nfa ();
  1412. RX_DECL void rx_delete_epsilon_transitions ();
  1413. RX_DECL int rx_compactify_nfa ();
  1414. RX_DECL void rx_release_superset ();
  1415. RX_DECL struct rx_superset * rx_superset_cons ();
  1416. RX_DECL struct rx_superset * rx_superstate_eclosure_union ();
  1417. RX_DECL struct rx_superstate * rx_superstate ();
  1418. RX_DECL struct rx_inx * rx_handle_cache_miss ();
  1419. RX_DECL reg_errcode_t rx_compile ();
  1420. RX_DECL void rx_blow_up_fastmap ();
  1421. #endif /* STDC */
  1422. #endif /* RX_WANT_RX_DEFS */
  1423. #ifdef __STDC__
  1424. extern int re_search_2 (struct re_pattern_buffer *rxb,
  1425. __const__ char * string1, int size1,
  1426. __const__ char * string2, int size2,
  1427. int startpos, int range,
  1428. struct re_registers *regs,
  1429. int stop);
  1430. extern int re_search (struct re_pattern_buffer * rxb, __const__ char *string,
  1431.       int size, int startpos, int range,
  1432.       struct re_registers *regs);
  1433. extern int re_match_2 (struct re_pattern_buffer * rxb,
  1434.        __const__ char * string1, int size1,
  1435.        __const__ char * string2, int size2,
  1436.        int pos, struct re_registers *regs, int stop);
  1437. extern int re_match (struct re_pattern_buffer * rxb,
  1438.      __const__ char * string,
  1439.      int size, int pos,
  1440.      struct re_registers *regs);
  1441. extern reg_syntax_t re_set_syntax (reg_syntax_t syntax);
  1442. extern void re_set_registers (struct re_pattern_buffer *bufp,
  1443.       struct re_registers *regs,
  1444.       unsigned num_regs,
  1445.       regoff_t * starts, regoff_t * ends);
  1446. extern __const__ char * re_compile_pattern (__const__ char *pattern,
  1447. int length,
  1448. struct re_pattern_buffer * rxb);
  1449. extern int re_compile_fastmap (struct re_pattern_buffer * rxb);
  1450. extern char * re_comp (__const__ char *s);
  1451. extern int re_exec (__const__ char *s);
  1452. extern int regcomp (regex_t * preg, __const__ char * pattern, int cflags);
  1453. extern int regexec (__const__ regex_t *preg, __const__ char *string,
  1454.     size_t nmatch, regmatch_t pmatch[],
  1455.     int eflags);
  1456. extern size_t regerror (int errcode, __const__ regex_t *preg,
  1457. char *errbuf, size_t errbuf_size);
  1458. extern void regfree (regex_t *preg);
  1459. #else /* STDC */
  1460. extern int re_search_2 ();
  1461. extern int re_search ();
  1462. extern int re_match_2 ();
  1463. extern int re_match ();
  1464. extern reg_syntax_t re_set_syntax ();
  1465. extern void re_set_registers ();
  1466. extern __const__ char * re_compile_pattern ();
  1467. extern int re_compile_fastmap ();
  1468. extern char * re_comp ();
  1469. extern int re_exec ();
  1470. extern int regcomp ();
  1471. extern int regexec ();
  1472. extern size_t regerror ();
  1473. extern void regfree ();
  1474. #endif /* STDC */
  1475. #ifdef RX_WANT_RX_DEFS
  1476. struct rx_counter_frame
  1477. {
  1478.   int tag;
  1479.   int val;
  1480.   struct rx_counter_frame * inherited_from; /* If this is a copy. */
  1481.   struct rx_counter_frame * cdr;
  1482. };
  1483. struct rx_backtrack_frame
  1484. {
  1485.   char * counter_stack_sp;
  1486.   /* A frame is used to save the matchers state when it crosses a 
  1487.    * backtracking point.  The `stk_' fields correspond to variables
  1488.    * in re_search_2 (just strip off thes `stk_').  They are documented
  1489.    * tere.
  1490.    */
  1491.   struct rx_superstate * stk_super;
  1492.   unsigned int stk_c;
  1493.   struct rx_string_position stk_test_pos;
  1494.   int stk_last_l;
  1495.   int stk_last_r;
  1496.   int stk_test_ret;
  1497.   /* This is the list of options left to explore at the backtrack
  1498.    * point for which this frame was created. 
  1499.    */
  1500.   struct rx_distinct_future * df;
  1501.   struct rx_distinct_future * first_df;
  1502. #ifdef RX_DEBUG
  1503.    int stk_line_no;
  1504. #endif
  1505. };
  1506. struct rx_stack_chunk
  1507. {
  1508.   struct rx_stack_chunk * next_chunk;
  1509.   int bytes_left;
  1510.   char * sp;
  1511. };
  1512. enum rx_outer_entry
  1513. {
  1514.   rx_outer_start,
  1515.   rx_outer_fastmap,
  1516.   rx_outer_test,
  1517.   rx_outer_restore_pos
  1518. };
  1519. enum rx_fastmap_return
  1520. {
  1521.   rx_fastmap_continuation,
  1522.   rx_fastmap_error,
  1523.   rx_fastmap_ok,
  1524.   rx_fastmap_fail
  1525. };
  1526. enum rx_fastmap_entry
  1527. {
  1528.   rx_fastmap_start,
  1529.   rx_fastmap_string_break
  1530. };
  1531. enum rx_test_return
  1532. {
  1533.   rx_test_continuation,
  1534.   rx_test_error,
  1535.   rx_test_fail,
  1536.   rx_test_ok
  1537. };
  1538. enum rx_test_internal_return
  1539. {
  1540.   rx_test_internal_error,
  1541.   rx_test_found_first,
  1542.   rx_test_line_finished
  1543. };
  1544. enum rx_test_match_entry
  1545. {
  1546.   rx_test_start,
  1547.   rx_test_cache_hit_loop,
  1548.   rx_test_backreference_check,
  1549.   rx_test_backtrack_return
  1550. };
  1551. struct rx_search_state
  1552. {
  1553.   /* Two groups of registers are kept.  The group with the register state
  1554.    * of the current test match, and the group that holds the state at the end
  1555.    * of the best known match, if any.
  1556.    *
  1557.    * For some patterns, there may also be registers saved on the stack.
  1558.    */
  1559.   unsigned num_regs; /* Includes an element for register zero. */
  1560.   regoff_t * lparen; /* scratch space for register returns */
  1561.   regoff_t * rparen;
  1562.   regoff_t * best_lpspace; /* in case the user doesn't want these */
  1563.   regoff_t * best_rpspace; /* values, we still need space to store
  1564.  * them.  Normally, this memoryis unused
  1565.  * and the space pointed to by REGS is 
  1566.  * used instead.
  1567.  */
  1568.   
  1569.   int last_l; /* Highest index of a valid lparen. */
  1570.   int last_r; /* It's dual. */
  1571.   
  1572.   int * best_lparen; /* This contains the best known register */
  1573.   int * best_rparen; /* assignments. 
  1574.  * This may point to the same mem as
  1575.  * best_lpspace, or it might point to memory
  1576.  * passed by the caller.
  1577.  */
  1578.   int best_last_l; /* best_last_l:best_lparen::last_l:lparen */
  1579.   int best_last_r;
  1580.   unsigned char * translate;  
  1581.   struct rx_string_position outer_pos;
  1582.   struct rx_superstate * start_super;
  1583.   int nfa_choice;
  1584.   int first_found; /* If true, return after finding any match. */
  1585.   int ret_val;
  1586.   /* For continuations... */
  1587.   enum rx_outer_entry outer_search_resume_pt;
  1588.   struct re_pattern_buffer * saved_rxb;
  1589.   int saved_startpos;
  1590.   int saved_range;
  1591.   int saved_stop;
  1592.   int saved_total_size;
  1593.   rx_get_burst_fn saved_get_burst;
  1594.   rx_back_check_fn saved_back_check;
  1595.   struct re_registers * saved_regs;
  1596.   
  1597.   /**
  1598.    ** state for fastmap
  1599.    **/
  1600.   char * fastmap;
  1601.   int fastmap_chr;
  1602.   int fastmap_val;
  1603.   /* for continuations in the fastmap procedure: */
  1604.   enum rx_fastmap_entry fastmap_resume_pt;
  1605.   /**
  1606.    ** state for test_match 
  1607.    **/
  1608.   /* The current superNFA position of the matcher. */
  1609.   struct rx_superstate * super;
  1610.   
  1611.   /* The matcher interprets a series of instruction frames.
  1612.    * This is the `instruction counter' for the interpretation.
  1613.    */
  1614.   struct rx_inx * ifr;
  1615.   
  1616.   /* We insert a ghost character in the string to prime
  1617.    * the nfa.  test_pos.pos, test_pos.str_half, and test_pos.end_half
  1618.    * keep track of the test-match position and string-half.
  1619.    */
  1620.   unsigned char c;
  1621.   
  1622.   /* Position within the string. */
  1623.   struct rx_string_position test_pos;
  1624.   struct rx_stack_chunk * counter_stack;
  1625.   struct rx_stack_chunk * backtrack_stack;
  1626.   int backtrack_frame_bytes;
  1627.   int chunk_bytes;
  1628.   struct rx_stack_chunk * free_chunks;
  1629.   /* To return from this function, set test_ret and 
  1630.    * `goto test_do_return'.
  1631.    *
  1632.    * Possible return values are:
  1633.    *     1   --- end of string while the superNFA is still going
  1634.    *     0   --- internal error (out of memory)
  1635.    * -1   --- search completed by reaching the superNFA fail state
  1636.    *    -2   --- a match was found, maybe not the longest.
  1637.    *
  1638.    * When the search is complete (-1), best_last_r indicates whether
  1639.    * a match was found.
  1640.    *
  1641.    * -2 is return only if search_state.first_found is non-zero.
  1642.    *
  1643.    * if search_state.first_found is non-zero, a return of -1 indicates no match,
  1644.    * otherwise, best_last_r has to be checked.
  1645.    */
  1646.   int test_ret;
  1647.   int could_have_continued;
  1648.   
  1649. #ifdef RX_DEBUG
  1650.   int backtrack_depth;
  1651.   /* There is a search tree with every node as set of deterministic
  1652.    * transitions in the super nfa.  For every branch of a 
  1653.    * backtrack point is an edge in the tree.
  1654.    * This counts up a pre-order of nodes in that tree.
  1655.    * It's saved on the search stack and printed when debugging. 
  1656.    */
  1657.   int line_no;
  1658.   int lines_found;
  1659. #endif
  1660.   /* For continuations within the match tester */
  1661.   enum rx_test_match_entry test_match_resume_pt;
  1662.   struct rx_inx * saved_next_tr_table;
  1663.   struct rx_inx * saved_this_tr_table;
  1664.   int saved_reg;
  1665.   struct rx_backtrack_frame * saved_bf;
  1666.   
  1667. };
  1668. extern char rx_slowmap[];
  1669. extern unsigned char rx_id_translation[];
  1670. static __inline__ void
  1671. init_fastmap (rxb, search_state)
  1672.      struct re_pattern_buffer * rxb;
  1673.      struct rx_search_state * search_state;
  1674. {
  1675.   search_state->fastmap = (rxb->fastmap
  1676.    ? (char *)rxb->fastmap
  1677.    : (char *)rx_slowmap);
  1678.   /* Update the fastmap now if not correct already. 
  1679.    * When the regexp was compiled, the fastmap was computed
  1680.    * and stored in a bitset.  This expands the bitset into a
  1681.    * character array containing 1s and 0s.
  1682.    */
  1683.   if ((search_state->fastmap == rxb->fastmap) && !rxb->fastmap_accurate)
  1684.     rx_blow_up_fastmap (rxb);
  1685.   search_state->fastmap_chr = -1;
  1686.   search_state->fastmap_val = 0;
  1687.   search_state->fastmap_resume_pt = rx_fastmap_start;
  1688. }
  1689. static __inline__ void
  1690. uninit_fastmap (rxb, search_state)
  1691.      struct re_pattern_buffer * rxb;
  1692.      struct rx_search_state * search_state;
  1693. {
  1694.   /* Unset the fastmap sentinel */
  1695.   if (search_state->fastmap_chr >= 0)
  1696.     search_state->fastmap[search_state->fastmap_chr]
  1697.       = search_state->fastmap_val;
  1698. }
  1699. static __inline__ int
  1700. fastmap_search (rxb, stop, get_burst, app_closure, search_state)
  1701.      struct re_pattern_buffer * rxb;
  1702.      int stop;
  1703.      rx_get_burst_fn get_burst;
  1704.      void * app_closure;
  1705.      struct rx_search_state * search_state;
  1706. {
  1707.   enum rx_fastmap_entry pc;
  1708.   if (0)
  1709.     {
  1710.     return_continuation:
  1711.       search_state->fastmap_resume_pt = pc;
  1712.       return rx_fastmap_continuation;
  1713.     }
  1714.   pc = search_state->fastmap_resume_pt;
  1715.   switch (pc)
  1716.     {
  1717.     case rx_fastmap_start:
  1718.     init_fastmap_sentinal:
  1719.       /* For the sake of fast fastmapping, set a sentinal in the fastmap.
  1720.        * This sentinal will trap the fastmap loop when it reaches the last
  1721.        * valid character in a string half.
  1722.        *
  1723.        * This must be reset when the fastmap/search loop crosses a string 
  1724.        * boundry, and before returning to the caller.  So sometimes,
  1725.        * the fastmap loop is restarted with `continue', othertimes by
  1726.        * `goto init_fastmap_sentinal'.
  1727.        */
  1728.       if (search_state->outer_pos.size)
  1729. {
  1730.   search_state->fastmap_chr = ((search_state->outer_pos.search_direction == 1)
  1731.        ? *(search_state->outer_pos.end - 1)
  1732.        : *search_state->outer_pos.string);
  1733.   search_state->fastmap_val
  1734.     = search_state->fastmap[search_state->fastmap_chr];
  1735.   search_state->fastmap[search_state->fastmap_chr] = 1;
  1736. }
  1737.       else
  1738. {
  1739.   search_state->fastmap_chr = -1;
  1740.   search_state->fastmap_val = 0;
  1741. }
  1742.       
  1743.       if (search_state->outer_pos.pos >= search_state->outer_pos.end)
  1744. goto fastmap_hit_bound;
  1745.       else
  1746. {
  1747.   if (search_state->outer_pos.search_direction == 1)
  1748.     {
  1749.       if (search_state->fastmap_val)
  1750. {
  1751.   for (;;)
  1752.     {
  1753.       while (!search_state->fastmap[*search_state->outer_pos.pos])
  1754. ++search_state->outer_pos.pos;
  1755.       return rx_fastmap_ok;
  1756.     }
  1757. }
  1758.       else
  1759. {
  1760.   for (;;)
  1761.     {
  1762.       while (!search_state->fastmap[*search_state->outer_pos.pos])
  1763. ++search_state->outer_pos.pos;
  1764.       if (*search_state->outer_pos.pos != search_state->fastmap_chr)
  1765. return rx_fastmap_ok;
  1766.       else 
  1767. {
  1768.   ++search_state->outer_pos.pos;
  1769.   if (search_state->outer_pos.pos == search_state->outer_pos.end)
  1770.     goto fastmap_hit_bound;
  1771. }
  1772.     }
  1773. }
  1774.     }
  1775.   else
  1776.     {
  1777.       __const__ unsigned char * bound;
  1778.       bound = search_state->outer_pos.string - 1;
  1779.       if (search_state->fastmap_val)
  1780. {
  1781.   for (;;)
  1782.     {
  1783.       while (!search_state->fastmap[*search_state->outer_pos.pos])
  1784. --search_state->outer_pos.pos;
  1785.       return rx_fastmap_ok;
  1786.     }
  1787. }
  1788.       else
  1789. {
  1790.   for (;;)
  1791.     {
  1792.       while (!search_state->fastmap[*search_state->outer_pos.pos])
  1793. --search_state->outer_pos.pos;
  1794.       if ((*search_state->outer_pos.pos != search_state->fastmap_chr) || search_state->fastmap_val)
  1795. return rx_fastmap_ok;
  1796.       else 
  1797. {
  1798.   --search_state->outer_pos.pos;
  1799.   if (search_state->outer_pos.pos == bound)
  1800.     goto fastmap_hit_bound;
  1801. }
  1802.     }
  1803. }
  1804.     }
  1805. }
  1806.       
  1807.     case rx_fastmap_string_break:
  1808.     fastmap_hit_bound:
  1809.       {
  1810. /* If we hit a bound, it may be time to fetch another burst
  1811.  * of string, or it may be time to return a continuation to 
  1812.    * the caller, or it might be time to fail.
  1813.  */
  1814. int burst_state;
  1815. burst_state = get_burst (&search_state->outer_pos, app_closure, stop);
  1816. switch (burst_state)
  1817.   {
  1818.   case rx_get_burst_continuation:
  1819.     {
  1820.       pc = rx_fastmap_string_break;
  1821.       goto return_continuation;
  1822.     }
  1823.   case rx_get_burst_error:
  1824.     return rx_fastmap_error;
  1825.   case rx_get_burst_ok:
  1826.     goto init_fastmap_sentinal;
  1827.   case rx_get_burst_no_more:
  1828.     /* ...not a string split, simply no more string. 
  1829.      *
  1830.      * When searching backward, running out of string
  1831.      * is reason to quit.
  1832.      *
  1833.      * When searching forward, we allow the possibility
  1834.      * of an (empty) match after the last character in the
  1835.      * virtual string.  So, fall through to the matcher
  1836.      */
  1837.     return (  (search_state->outer_pos.search_direction == 1)
  1838.     ? rx_fastmap_ok
  1839.     : rx_fastmap_fail);
  1840.   }
  1841.       }
  1842.     }
  1843. }
  1844. #ifdef emacs
  1845. /* The `emacs' switch turns on certain matching commands
  1846.  * that make sense only in Emacs. 
  1847.  */
  1848. #include "config.h"
  1849. #include "lisp.h"
  1850. #include "buffer.h"
  1851. #include "syntax.h"
  1852. /* Emacs uses `NULL' as a predicate.  */
  1853. #undef NULL
  1854. #else  /* not emacs */
  1855. /* Setting RX_MEMDBUG is useful if you have dbmalloc.  Maybe with similar
  1856.  * packages too.
  1857.  */
  1858. #ifdef RX_MEMDBUG
  1859. #include <malloc.h>
  1860. #else /* not RX_RX_MEMDBUG */
  1861. /* We used to test for `BSTRING' here, but only GCC and Emacs define
  1862.  * `BSTRING', as far as I know, and neither of them use this code.  
  1863.  */
  1864. #if HAVE_STRING_H || STDC_HEADERS
  1865. #include <string.h>
  1866. #ifndef bcmp
  1867. #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
  1868. #endif
  1869. #ifndef bcopy
  1870. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  1871. #endif
  1872. #ifndef bzero
  1873. #define bzero(s, n) memset ((s), 0, (n))
  1874. #endif
  1875. #else /*  HAVE_STRING_H || STDC_HEADERS */
  1876. #include <strings.h>
  1877. #endif   /* not RX_MEMDBUG */
  1878. #ifdef STDC_HEADERS
  1879. #include <stdlib.h>
  1880. #else /* not STDC_HEADERS */
  1881. char *malloc ();
  1882. char *realloc ();
  1883. #endif /* not STDC_HEADERS */
  1884. #endif /* not emacs */
  1885. /* Define the syntax basics for <, >, etc.
  1886.  * This must be nonzero for the wordchar and notwordchar pattern
  1887.  * commands in re_match_2.
  1888.  */
  1889. #ifndef Sword 
  1890. #define Sword 1
  1891. #endif
  1892. /* How many characters in the character set.  */
  1893. #define CHAR_SET_SIZE (1 << CHARBITS)
  1894. #define SYNTAX(c) re_syntax_table[c]
  1895. RX_DECL char re_syntax_table[CHAR_SET_SIZE];
  1896. #endif /* not emacs */
  1897. /* Test if at very beginning or at very end of the virtual concatenation
  1898.  *  of `string1' and `string2'.  If only one string, it's `string2'.  
  1899.  */
  1900. #define AT_STRINGS_BEG() 
  1901.   (   -1  
  1902.    == ((search_state.test_pos.pos - search_state.test_pos.string) 
  1903.        + search_state.test_pos.offset))
  1904. #define AT_STRINGS_END() 
  1905.   (   (total_size - 1)  
  1906.    == ((search_state.test_pos.pos - search_state.test_pos.string) 
  1907.        + search_state.test_pos.offset))
  1908. /* Test if POS + 1 points to a character which is word-constituent.  We have
  1909.  * two special cases to check for: if past the end of string1, look at
  1910.  * the first character in string2; and if before the beginning of
  1911.  * string2, look at the last character in string1.
  1912.  *
  1913.  * Assumes `string1' exists, so use in conjunction with AT_STRINGS_BEG ().  
  1914.  */
  1915. #define LETTER_P(POS,OFF)
  1916.   (   SYNTAX (fetch_char(POS, OFF, app_closure, stop))
  1917.    == Sword)
  1918. /* Test if the character at D and the one after D differ with respect
  1919.  * to being word-constituent.  
  1920.  */
  1921. #define AT_WORD_BOUNDARY(d)
  1922.   (AT_STRINGS_BEG () || AT_STRINGS_END () || LETTER_P (d,0) != LETTER_P (d, 1))
  1923. #ifdef RX_SUPPORT_CONTINUATIONS
  1924. #define RX_STACK_ALLOC(BYTES) malloc(BYTES)
  1925. #define RX_STACK_FREE(MEM) free(MEM)
  1926. #else
  1927. #define RX_STACK_ALLOC(BYTES) alloca(BYTES)
  1928. #define RX_STACK_FREE(MEM) 
  1929.       ((struct rx_stack_chunk *)MEM)->next_chunk = search_state.free_chunks; 
  1930.       search_state.free_chunks = ((struct rx_stack_chunk *)MEM);
  1931. #endif
  1932. #define PUSH(CHUNK_VAR,BYTES)   
  1933.   if (!CHUNK_VAR || (CHUNK_VAR->bytes_left < (BYTES)))  
  1934.     {
  1935.       struct rx_stack_chunk * new_chunk;
  1936.       if (search_state.free_chunks)
  1937. {
  1938.   new_chunk = search_state.free_chunks;
  1939.   search_state.free_chunks = search_state.free_chunks->next_chunk; 
  1940. }
  1941.       else
  1942. {
  1943.   new_chunk = (struct rx_stack_chunk *)RX_STACK_ALLOC(search_state.chunk_bytes); 
  1944.   if (!new_chunk)
  1945.     {
  1946.       search_state.ret_val = 0;
  1947.       goto test_do_return;
  1948.     }
  1949. }
  1950.       new_chunk->sp = (char *)new_chunk + sizeof (struct rx_stack_chunk); 
  1951.       new_chunk->bytes_left = (search_state.chunk_bytes 
  1952.        - (BYTES) 
  1953.        - sizeof (struct rx_stack_chunk)); 
  1954.       new_chunk->next_chunk = CHUNK_VAR; 
  1955.       CHUNK_VAR = new_chunk;
  1956.     } 
  1957.   else 
  1958.     (CHUNK_VAR->sp += (BYTES)), (CHUNK_VAR->bytes_left -= (BYTES))
  1959. #define POP(CHUNK_VAR,BYTES) 
  1960.   if (CHUNK_VAR->sp == ((char *)CHUNK_VAR + sizeof(*CHUNK_VAR))) 
  1961.     { 
  1962.       struct rx_stack_chunk * new_chunk = CHUNK_VAR->next_chunk; 
  1963.       RX_STACK_FREE(CHUNK_VAR); 
  1964.       CHUNK_VAR = new_chunk; 
  1965.     } 
  1966.   else 
  1967.     (CHUNK_VAR->sp -= BYTES), (CHUNK_VAR->bytes_left += BYTES)
  1968. #define SRCH_TRANSLATE(C)  search_state.translate[(unsigned char) (C)]
  1969. #ifdef __STDC__
  1970. RX_DECL __inline__ int
  1971. rx_search  (struct re_pattern_buffer * rxb,
  1972.     int startpos,
  1973.     int range,
  1974.     int stop,
  1975.     int total_size,
  1976.     rx_get_burst_fn get_burst,
  1977.     rx_back_check_fn back_check,
  1978.     rx_fetch_char_fn fetch_char,
  1979.     void * app_closure,
  1980.     struct re_registers * regs,
  1981.     struct rx_search_state * resume_state,
  1982.     struct rx_search_state * save_state)
  1983. #else
  1984. RX_DECL __inline__ int
  1985. rx_search  (rxb, startpos, range, stop, total_size,
  1986.     get_burst, back_check, fetch_char,
  1987.     app_closure, regs, resume_state, save_state)
  1988.      struct re_pattern_buffer * rxb;
  1989.      int startpos;
  1990.      int range;
  1991.      int stop;
  1992.      int total_size;
  1993.      rx_get_burst_fn get_burst;
  1994.      rx_back_check_fn back_check;
  1995.      rx_fetch_char_fn fetch_char;
  1996.      void * app_closure;
  1997.      struct re_registers * regs;
  1998.      struct rx_search_state * resume_state;
  1999.      struct rx_search_state * save_state;
  2000. #endif
  2001. {
  2002.   int pc;
  2003.   int test_state;
  2004.   struct rx_search_state search_state;
  2005.   if (!resume_state)
  2006.     pc = rx_outer_start;
  2007.   else
  2008.     {
  2009.       search_state = *resume_state;
  2010.       regs = search_state.saved_regs;
  2011.       rxb = search_state.saved_rxb;
  2012.       startpos = search_state.saved_startpos;
  2013.       range = search_state.saved_range;
  2014.       stop = search_state.saved_stop;
  2015.       total_size = search_state.saved_total_size;
  2016.       get_burst = search_state.saved_get_burst;
  2017.       back_check = search_state.saved_back_check;
  2018.       pc = search_state.outer_search_resume_pt;
  2019.       if (0)
  2020. {
  2021. return_continuation:
  2022.   if (save_state)
  2023.     {
  2024.       *save_state = search_state;
  2025.       save_state->saved_regs = regs;
  2026.       save_state->saved_rxb = rxb;
  2027.       save_state->saved_startpos = startpos;
  2028.       save_state->saved_range = range;
  2029.       save_state->saved_stop = stop;
  2030.       save_state->saved_total_size = total_size;
  2031.       save_state->saved_get_burst = get_burst;
  2032.       save_state->saved_back_check = back_check;
  2033.       save_state->outer_search_resume_pt = pc;
  2034.     }
  2035.   return rx_search_continuation;
  2036. }
  2037.     }
  2038.   switch (pc)
  2039.     {
  2040.     case rx_outer_start:
  2041.       search_state.ret_val = rx_search_fail;
  2042.       (  search_state.lparen
  2043.        = search_state.rparen
  2044.        = search_state.best_lpspace
  2045.        = search_state.best_rpspace
  2046.        = 0);
  2047.       
  2048.       /* figure the number of registers we may need for use in backreferences.
  2049.        * the number here includes an element for register zero.  
  2050.        */
  2051.       search_state.num_regs = rxb->re_nsub + 1;
  2052.       
  2053.       
  2054.       /* check for out-of-range startpos.  */
  2055.       if ((startpos < 0) || (startpos > total_size))
  2056. return rx_search_fail;
  2057.       
  2058.       /* fix up range if it might eventually take us outside the string. */
  2059.       {
  2060. int endpos;
  2061. endpos = startpos + range;
  2062. if (endpos < -1)
  2063.   range = (-1 - startpos);
  2064. else if (endpos > (total_size + 1))
  2065.   range = total_size - startpos;
  2066.       }
  2067.       
  2068.       /* if the search isn't to be a backwards one, don't waste time in a
  2069.        * long search for a pattern that says it is anchored.
  2070.        */
  2071.       if (rxb->begbuf_only && (range > 0))
  2072. {
  2073.   if (startpos > 0)
  2074.     return rx_search_fail;
  2075.   else
  2076.     range = 1;
  2077. }
  2078.       
  2079.       /* decide whether to use internal or user-provided reg buffers. */
  2080.       if (!regs || rxb->no_sub)
  2081. {
  2082.   search_state.best_lpspace =
  2083.     (regoff_t *)REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t));
  2084.   search_state.best_rpspace =
  2085.     (regoff_t *)REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t));
  2086.   search_state.best_lparen = search_state.best_lpspace;
  2087.   search_state.best_rparen = search_state.best_rpspace;
  2088. }
  2089.       else
  2090. {
  2091.   /* have the register data arrays been allocated?  */
  2092.   if (rxb->regs_allocated == REGS_UNALLOCATED)
  2093.     { /* no.  so allocate them with malloc.  we need one
  2094.  extra element beyond `search_state.num_regs' for the `-1' marker
  2095.  gnu code uses.  */
  2096.       regs->num_regs = MAX (RE_NREGS, rxb->re_nsub + 1);
  2097.       regs->start = ((regoff_t *)
  2098.      malloc (regs->num_regs * sizeof ( regoff_t)));
  2099.       regs->end = ((regoff_t *)
  2100.    malloc (regs->num_regs * sizeof ( regoff_t)));
  2101.       if (regs->start == 0 || regs->end == 0)
  2102. return rx_search_error;
  2103.       rxb->regs_allocated = REGS_REALLOCATE;
  2104.     }
  2105.   else if (rxb->regs_allocated == REGS_REALLOCATE)
  2106.     { /* yes.  if we need more elements than were already
  2107.  allocated, reallocate them.  if we need fewer, just
  2108.  leave it alone.  */
  2109.       if (regs->num_regs < search_state.num_regs + 1)
  2110. {
  2111.   regs->num_regs = search_state.num_regs + 1;
  2112.   regs->start = ((regoff_t *)
  2113.  realloc (regs->start,
  2114.   regs->num_regs * sizeof (regoff_t)));
  2115.   regs->end = ((regoff_t *)
  2116.        realloc (regs->end,
  2117. regs->num_regs * sizeof ( regoff_t)));
  2118.   if (regs->start == 0 || regs->end == 0)
  2119.     return rx_search_error;
  2120. }
  2121.     }
  2122.   else if (rxb->regs_allocated != REGS_FIXED)
  2123.     return rx_search_error;
  2124.   
  2125.   if (regs->num_regs < search_state.num_regs + 1)
  2126.     {
  2127.       search_state.best_lpspace =
  2128. ((regoff_t *)
  2129.  REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t)));
  2130.       search_state.best_rpspace =
  2131. ((regoff_t *)
  2132.  REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t)));
  2133.       search_state.best_lparen = search_state.best_lpspace;
  2134.       search_state.best_rparen = search_state.best_rpspace;
  2135.     }
  2136.   else
  2137.     {
  2138.       search_state.best_lparen = regs->start;
  2139.       search_state.best_rparen = regs->end;
  2140.     }
  2141. }
  2142.       
  2143.       search_state.lparen =
  2144. (regoff_t *) REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t));
  2145.       search_state.rparen =
  2146. (regoff_t *) REGEX_ALLOCATE (search_state.num_regs * sizeof(regoff_t)); 
  2147.       
  2148.       if (! (   search_state.best_rparen
  2149.      && search_state.best_lparen
  2150.      && search_state.lparen && search_state.rparen))
  2151. return rx_search_error;
  2152.       
  2153.       search_state.best_last_l = search_state.best_last_r = -1;
  2154.       
  2155.       search_state.translate = (rxb->translate
  2156. ? rxb->translate
  2157. : rx_id_translation);
  2158.       
  2159.       
  2160.       
  2161.       /*
  2162.        * two nfa's were compiled.  
  2163.        * `0' is complete.
  2164.        * `1' faster but gets registers wrong and ends too soon.
  2165.        */
  2166.       search_state.nfa_choice = (regs && !rxb->least_subs) ? '' : '1';
  2167.       
  2168.       /* we have the option to look for the best match or the first
  2169.        * one we can find.  if the user isn't asking for register information,
  2170.        * we don't need to find the best match.
  2171.        */
  2172.       search_state.first_found = !regs;
  2173.       
  2174.       if (range >= 0)
  2175. {
  2176.   search_state.outer_pos.search_end = startpos + range;
  2177.   search_state.outer_pos.search_direction = 1;
  2178. }
  2179.       else
  2180. {
  2181.   search_state.outer_pos.search_end = startpos + range;
  2182.   search_state.outer_pos.search_direction = -1;
  2183. }
  2184.       
  2185.       /* the vacuous search always turns up nothing. */
  2186.       if ((search_state.outer_pos.search_direction == 1)
  2187.   ? (startpos > search_state.outer_pos.search_end)
  2188.   : (startpos < search_state.outer_pos.search_end))
  2189. return rx_search_fail;
  2190.       
  2191.       /* now we build the starting state of the supernfa. */
  2192.       {
  2193. struct rx_superset * start_contents;
  2194. struct rx_nfa_state_set * start_nfa_set;
  2195. /* we presume here that the nfa start state has only one
  2196.  * possible future with no side effects.  
  2197.  */
  2198. start_nfa_set = rxb->start->futures->destset;
  2199. if (   rxb->rx.start_set
  2200.     && (rxb->rx.start_set->starts_for == &rxb->rx))
  2201.   start_contents = rxb->rx.start_set;
  2202. else
  2203.   {
  2204.     start_contents =
  2205.       rx_superstate_eclosure_union (&rxb->rx,
  2206.     rx_superset_cons (&rxb->rx, 0, 0),
  2207.     start_nfa_set);
  2208.     
  2209.     if (!start_contents)
  2210.       return rx_search_fail;
  2211.     
  2212.     start_contents->starts_for = &rxb->rx;
  2213.     rxb->rx.start_set = start_contents;
  2214.   }
  2215. if (   start_contents->superstate
  2216.     && (start_contents->superstate->rx_id == rxb->rx.rx_id))
  2217.   {
  2218.     search_state.start_super = start_contents->superstate;
  2219.     rx_lock_superstate (&rxb->rx, search_state.start_super);
  2220.   }
  2221. else
  2222.   {
  2223.     rx_protect_superset (&rxb->rx, start_contents);
  2224.     
  2225.     search_state.start_super = rx_superstate (&rxb->rx, start_contents);
  2226.     if (!search_state.start_super)
  2227.       return rx_search_fail;
  2228.     rx_lock_superstate (&rxb->rx, search_state.start_super);
  2229.     rx_release_superset (&rxb->rx, start_contents);
  2230.   }
  2231.       }
  2232.       
  2233.       
  2234.       /* The outer_pos tracks the position within the strings
  2235.        * as seen by loop that calls fastmap_search.
  2236.        *
  2237.        * The caller supplied get_burst function actually 
  2238.        * gives us pointers to chars.
  2239.        * 
  2240.        * Communication with the get_burst function is through an
  2241.        * rx_string_position structure.  Here, the structure for
  2242.        * outer_pos is initialized.   It is set to point to the
  2243.        * NULL string, at an offset of STARTPOS.  STARTPOS is out
  2244.        * of range of the NULL string, so the first call to 
  2245.        * getburst will patch up the rx_string_position to point
  2246.        * to valid characters.
  2247.        */
  2248.       (  search_state.outer_pos.string
  2249.        = search_state.outer_pos.end
  2250.        = 0);
  2251.       search_state.outer_pos.offset = 0;
  2252.       search_state.outer_pos.size = 0;
  2253.       search_state.outer_pos.pos = (unsigned char *)startpos;
  2254.       init_fastmap (rxb, &search_state);
  2255.       search_state.fastmap_resume_pt = rx_fastmap_start;
  2256.     case rx_outer_fastmap:
  2257.       /* do { */
  2258.     pseudo_do:
  2259.       {
  2260. {
  2261.   int fastmap_state;
  2262.   fastmap_state = fastmap_search (rxb, stop, get_burst, app_closure,
  2263.   &search_state);
  2264.   switch (fastmap_state)
  2265.     {
  2266.     case rx_fastmap_continuation:
  2267.       pc = rx_outer_fastmap;
  2268.       goto return_continuation;
  2269.     case rx_fastmap_fail:
  2270.       goto finish;
  2271.     case rx_fastmap_ok:
  2272.       break;
  2273.     }
  2274. }
  2275. /* now the fastmap loop has brought us to a plausible 
  2276.  * starting point for a match.  so, it's time to run the
  2277.  * nfa and see if a match occured.
  2278.  */
  2279. startpos = (  search_state.outer_pos.pos
  2280.     - search_state.outer_pos.string
  2281.     + search_state.outer_pos.offset);
  2282. if (startpos == search_state.outer_pos.search_end)
  2283.   goto finish;
  2284.       }
  2285.       search_state.test_match_resume_pt = rx_test_start;
  2286.       /* do interrupted for entry point... */
  2287.     case rx_outer_test:
  2288.       /* ...do continued */
  2289.       {
  2290. goto test_match;
  2291.       test_returns_to_search:
  2292. switch (test_state)
  2293.   {
  2294.   case rx_test_continuation:
  2295.     pc = rx_outer_test;
  2296.     goto return_continuation;
  2297.   case rx_test_error:
  2298.     search_state.ret_val = rx_search_error;
  2299.     goto finish;
  2300.   case rx_test_fail:
  2301.     break;
  2302.   case rx_test_ok:
  2303.     goto finish;
  2304.   }
  2305. search_state.outer_pos.pos += search_state.outer_pos.search_direction;
  2306. startpos += search_state.outer_pos.search_direction;
  2307.       }
  2308.       /* do interrupted for entry point... */
  2309.     case rx_outer_restore_pos:
  2310.       {
  2311. int x;
  2312. x = get_burst (&search_state.outer_pos, app_closure, stop);
  2313. switch (x)
  2314.   {
  2315.   case rx_get_burst_continuation:
  2316.     pc = rx_outer_restore_pos;
  2317.     goto return_continuation;
  2318.   case rx_get_burst_error:
  2319.     search_state.ret_val = rx_search_error;
  2320.     goto finish;
  2321.   case rx_get_burst_no_more:
  2322.     if (rxb->can_match_empty)
  2323.       break;
  2324.     goto finish;
  2325.   case rx_get_burst_ok:
  2326.     break;
  2327.   }
  2328.       } /* } while (...see below...) */
  2329.       if ((search_state.outer_pos.search_direction == 1)
  2330.   ? (startpos < search_state.outer_pos.search_end)
  2331.   : (startpos > search_state.outer_pos.search_end))
  2332. goto pseudo_do;
  2333.     finish:
  2334.       uninit_fastmap (rxb, &search_state);
  2335.       if (search_state.start_super)
  2336. rx_unlock_superstate (&rxb->rx, search_state.start_super);
  2337.       
  2338. #ifdef regex_malloc
  2339.       if (search_state.lparen) free (search_state.lparen);
  2340.       if (search_state.rparen) free (search_state.rparen);
  2341.       if (search_state.best_lpspace) free (search_state.best_lpspace);
  2342.       if (search_state.best_rpspace) free (search_state.best_rpspace);
  2343. #endif
  2344.       return search_state.ret_val;
  2345.     }
  2346.  test_match:
  2347.   {
  2348.     enum rx_test_match_entry test_pc;
  2349.     int inx;
  2350.     test_pc = search_state.test_match_resume_pt;
  2351.     if (test_pc == rx_test_start)
  2352.       {
  2353. #ifdef RX_DEBUG
  2354. search_state.backtrack_depth = 0;
  2355. #endif
  2356. search_state.last_l = search_state.last_r = 0;
  2357. search_state.lparen[0] = startpos;
  2358. search_state.super = search_state.start_super;
  2359. search_state.c = search_state.nfa_choice;
  2360. search_state.test_pos.pos = search_state.outer_pos.pos - 1;    
  2361. search_state.test_pos.string = search_state.outer_pos.string;
  2362. search_state.test_pos.end = search_state.outer_pos.end;
  2363. search_state.test_pos.offset = search_state.outer_pos.offset;
  2364. search_state.test_pos.size = search_state.outer_pos.size;
  2365. search_state.test_pos.search_direction = 1;
  2366. search_state.counter_stack = 0;
  2367. search_state.backtrack_stack = 0;
  2368. search_state.backtrack_frame_bytes =
  2369.   (sizeof (struct rx_backtrack_frame)
  2370.    + (rxb->match_regs_on_stack
  2371.       ? sizeof (regoff_t) * (search_state.num_regs + 1) * 2
  2372.       : 0));
  2373. search_state.chunk_bytes = search_state.backtrack_frame_bytes * 64;
  2374. search_state.free_chunks = 0;
  2375. search_state.test_ret = rx_test_line_finished;
  2376. search_state.could_have_continued = 0;
  2377.       }  
  2378.     /* This is while (1)...except that the body of the loop is interrupted 
  2379.      * by some alternative entry points.
  2380.      */
  2381.   pseudo_while_1:
  2382.     switch (test_pc)
  2383.       {
  2384.       case rx_test_cache_hit_loop:
  2385. goto resume_continuation_1;
  2386.       case rx_test_backreference_check:
  2387. goto resume_continuation_2;
  2388.       case rx_test_backtrack_return:
  2389. goto resume_continuation_3;
  2390.       case rx_test_start:
  2391. #ifdef RX_DEBUG
  2392. /* There is a search tree with every node as set of deterministic
  2393.  * transitions in the super nfa.  For every branch of a 
  2394.  * backtrack point is an edge in the tree.
  2395.  * This counts up a pre-order of nodes in that tree.
  2396.  * It's saved on the search stack and printed when debugging. 
  2397.  */
  2398. search_state.line_no = 0;
  2399. search_state.lines_found = 0;
  2400. #endif
  2401.       top_of_cycle:
  2402. /* A superstate is basicly a transition table, indexed by 
  2403.  * characters from the string being tested, and containing 
  2404.  * RX_INX (`instruction frame') structures.
  2405.  */
  2406. search_state.ifr = &search_state.super->transitions [search_state.c];
  2407.       recurse_test_match:
  2408. /* This is the point to which control is sent when the
  2409.  * test matcher `recurses'.  Before jumping here, some variables
  2410.  * need to be saved on the stack and the next instruction frame
  2411.  * has to be computed.
  2412.  */
  2413.       restart:
  2414. /* Some instructions don't advance the matcher, but just
  2415.  * carry out some side effects and fetch a new instruction.
  2416.  * To dispatch that new instruction, `goto restart'.
  2417.  */
  2418. {
  2419.   struct rx_inx * next_tr_table;
  2420.   struct rx_inx * this_tr_table;
  2421.   /* The fastest route through the loop is when the instruction 
  2422.    * is RX_NEXT_CHAR.  This case is detected when SEARCH_STATE.IFR->DATA
  2423.    * is non-zero.  In that case, it points to the next
  2424.    * superstate. 
  2425.    *
  2426.    * This allows us to not bother fetching the bytecode.
  2427.    */
  2428.   next_tr_table = (struct rx_inx *)search_state.ifr->data;
  2429.   this_tr_table = search_state.super->transitions;
  2430.   while (next_tr_table)
  2431.     {
  2432. #ifdef RX_DEBUG_0
  2433.       if (rx_debug_trace)
  2434. {
  2435.   struct rx_superset * setp;
  2436.   
  2437.   fprintf (stderr, "%d %d>> re_next_char @ %d (%d)",
  2438.    search_state.line_no,
  2439.    search_state.backtrack_depth,
  2440.    (search_state.test_pos.pos - search_state.test_pos.string
  2441.     + search_state.test_pos.offset), search_state.c);
  2442.   
  2443.   search_state.super =
  2444.     ((struct rx_superstate *)
  2445.      ((char *)this_tr_table
  2446.       - ((unsigned long)
  2447.  ((struct rx_superstate *)0)->transitions)));
  2448.   
  2449.   setp = search_state.super->contents;
  2450.   fprintf (stderr, "   superstet (rx=%d, &=%x: ",
  2451.    rxb->rx.rx_id, setp);
  2452.   while (setp)
  2453.     {
  2454.       fprintf (stderr, "%d ", setp->id);
  2455.       setp = setp->cdr;
  2456.     }
  2457.   fprintf (stderr, "n");
  2458. }
  2459. #endif
  2460.       this_tr_table = next_tr_table;
  2461.       ++search_state.test_pos.pos;
  2462.       if (search_state.test_pos.pos == search_state.test_pos.end)
  2463. {
  2464.   int burst_state;
  2465. try_burst_1:
  2466.   burst_state = get_burst (&search_state.test_pos,
  2467.    app_closure, stop);
  2468.   switch (burst_state)
  2469.     {
  2470.     case rx_get_burst_continuation:
  2471.       search_state.saved_this_tr_table = this_tr_table;
  2472.       search_state.saved_next_tr_table = next_tr_table;
  2473.       test_pc = rx_test_cache_hit_loop;
  2474.       goto test_return_continuation;
  2475.       
  2476.     resume_continuation_1:
  2477.       /* Continuation one jumps here to do its work: */
  2478.       search_state.saved_this_tr_table = this_tr_table;
  2479.       search_state.saved_next_tr_table = next_tr_table;
  2480.       goto try_burst_1;
  2481.       
  2482.     case rx_get_burst_ok:
  2483.       /* get_burst succeeded...keep going */
  2484.       break;
  2485.       
  2486.     case rx_get_burst_no_more:
  2487.       search_state.test_ret = rx_test_line_finished;
  2488.       search_state.could_have_continued = 1;
  2489.       goto test_do_return;
  2490.       
  2491.     case rx_get_burst_error:
  2492.       /* An error... */
  2493.       search_state.test_ret = rx_test_internal_error;
  2494.       goto test_do_return;
  2495.     }
  2496. }
  2497.       search_state.c = *search_state.test_pos.pos;
  2498.       search_state.ifr = this_tr_table + search_state.c;
  2499.       next_tr_table = (struct rx_inx *)search_state.ifr->data;
  2500.     } /* Fast loop through cached transition tables */
  2501.   
  2502.   /* Here when we ran out of cached next-char transitions. 
  2503.    * So, it will be necessary to do a more expensive
  2504.    * dispatch on the current instruction.  The superstate
  2505.    * pointer is allowed to become invalid during next-char
  2506.    * transitions -- now we must bring it up to date.
  2507.    */
  2508.   search_state.super =
  2509.     ((struct rx_superstate *)
  2510.      ((char *)this_tr_table
  2511.       - ((unsigned long)
  2512.  ((struct rx_superstate *)0)->transitions)));
  2513. }
  2514. /* We've encountered an instruction other than next-char.
  2515.  * Dispatch that instruction:
  2516.  */
  2517. inx = (int)search_state.ifr->inx;
  2518. #ifdef RX_DEBUG_0
  2519. if (rx_debug_trace)
  2520.   {
  2521.     struct rx_superset * setp = search_state.super->contents;
  2522.     
  2523.     fprintf (stderr, "%d %d>> %s @ %d (%d)", search_state.line_no,
  2524.      search_state.backtrack_depth,
  2525.      inx_names[inx],
  2526.      (search_state.test_pos.pos - search_state.test_pos.string
  2527.       + (test_pos.half == 0 ? 0 : size1)), search_state.c);
  2528.     
  2529.     fprintf (stderr, "   superstet (rx=%d, &=%x: ",
  2530.      rxb->rx.rx_id, setp);
  2531.     while (setp)
  2532.       {
  2533. fprintf (stderr, "%d ", setp->id);
  2534. setp = setp->cdr;
  2535.       }
  2536.     fprintf (stderr, "n");
  2537.   }
  2538. #endif
  2539. switch ((enum rx_opcode)inx)
  2540.   {
  2541.   case rx_do_side_effects:
  2542.     
  2543.     /*  RX_DO_SIDE_EFFECTS occurs when we cross epsilon 
  2544.      *  edges associated with parentheses, backreferencing, etc.
  2545.      */
  2546.     {
  2547.       struct rx_distinct_future * df =
  2548. (struct rx_distinct_future *)search_state.ifr->data_2;
  2549.       struct rx_se_list * el = df->effects;
  2550.       /* Side effects come in lists.  This walks down
  2551.        * a list, dispatching.
  2552.        */
  2553.       while (el)
  2554. {
  2555.   long effect;
  2556.   effect = (long)el->car;
  2557.   if (effect < 0)
  2558.     {
  2559. #ifdef RX_DEBUG_0
  2560.       if (rx_debug_trace)
  2561. {
  2562.   struct rx_superset * setp = search_state.super->contents;
  2563.   
  2564.   fprintf (stderr, "....%d %d>> %sn", search_state.line_no,
  2565.    search_state.backtrack_depth,
  2566.    efnames[-effect]);
  2567. }
  2568. #endif
  2569.       switch ((enum re_side_effects) effect)
  2570. {
  2571. case re_se_pushback:
  2572.   search_state.ifr = &df->future_frame;
  2573.   if (!search_state.ifr->data)
  2574.     {
  2575.       struct rx_superstate * sup;
  2576.       sup = search_state.super;
  2577.       rx_lock_superstate (rx, sup);
  2578.       if (!rx_handle_cache_miss (&rxb->rx,
  2579.  search_state.super,
  2580.  search_state.c,
  2581.  (search_state.ifr
  2582.   ->data_2)))
  2583. {
  2584.   rx_unlock_superstate (rx, sup);
  2585.   search_state.test_ret = rx_test_internal_error;
  2586.   goto test_do_return;
  2587. }
  2588.       rx_unlock_superstate (rx, sup);
  2589.     }
  2590.   /* --search_state.test_pos.pos; */
  2591.   search_state.c = 't';
  2592.   search_state.super
  2593.     = ((struct rx_superstate *)
  2594.        ((char *)search_state.ifr->data
  2595. - (long)(((struct rx_superstate *)0)
  2596.  ->transitions)));
  2597.   goto top_of_cycle;
  2598.   break;
  2599. case re_se_push0:
  2600.   {
  2601.     struct rx_counter_frame * old_cf
  2602.       = (search_state.counter_stack
  2603.  ? ((struct rx_counter_frame *)
  2604.     search_state.counter_stack->sp)
  2605.  : 0);
  2606.     struct rx_counter_frame * cf;
  2607.     PUSH (search_state.counter_stack,
  2608.   sizeof (struct rx_counter_frame));
  2609.     cf = ((struct rx_counter_frame *)
  2610.   search_state.counter_stack->sp);
  2611.     cf->tag = re_se_iter;
  2612.     cf->val = 0;
  2613.     cf->inherited_from = 0;
  2614.     cf->cdr = old_cf;
  2615.     break;
  2616.   }
  2617. case re_se_fail:
  2618.   goto test_do_return;
  2619. case re_se_begbuf:
  2620.   if (!AT_STRINGS_BEG ())
  2621.     goto test_do_return;
  2622.   break;
  2623. case re_se_endbuf:
  2624.   if (!AT_STRINGS_END ())
  2625.     goto test_do_return;
  2626.   break;
  2627. case re_se_wordbeg:
  2628.   if (   LETTER_P (&search_state.test_pos, 1)
  2629.       && (   AT_STRINGS_BEG()
  2630.   || !LETTER_P (&search_state.test_pos, 0)))
  2631.     break;
  2632.   else
  2633.     goto test_do_return;
  2634. case re_se_wordend:
  2635.   if (   !AT_STRINGS_BEG ()
  2636.       && LETTER_P (&search_state.test_pos, 0)
  2637.       && (AT_STRINGS_END ()
  2638.   || !LETTER_P (&search_state.test_pos, 1)))
  2639.     break;
  2640.   else
  2641.     goto test_do_return;
  2642. case re_se_wordbound:
  2643.   if (AT_WORD_BOUNDARY (&search_state.test_pos))
  2644.     break;
  2645.   else
  2646.     goto test_do_return;
  2647. case re_se_notwordbound:
  2648.   if (!AT_WORD_BOUNDARY (&search_state.test_pos))
  2649.     break;
  2650.   else
  2651.     goto test_do_return;
  2652. case re_se_hat:
  2653.   if (AT_STRINGS_BEG ())
  2654.     {
  2655.       if (rxb->not_bol)
  2656. goto test_do_return;
  2657.       else
  2658. break;
  2659.     }
  2660.   else
  2661.     {
  2662.       char pos_c = *search_state.test_pos.pos;
  2663.       if (   (SRCH_TRANSLATE (pos_c)
  2664.       == SRCH_TRANSLATE('n'))
  2665.   && rxb->newline_anchor)
  2666. break;
  2667.       else
  2668. goto test_do_return;
  2669.     }
  2670. case re_se_dollar:
  2671.   if (AT_STRINGS_END ())
  2672.     {
  2673.       if (rxb->not_eol)
  2674. goto test_do_return;
  2675.       else
  2676. break;
  2677.     }
  2678.   else
  2679.     {
  2680.       if (   (   SRCH_TRANSLATE (fetch_char
  2681.     (&search_state.test_pos, 1,
  2682.      app_closure, stop))
  2683.       == SRCH_TRANSLATE ('n'))
  2684.   && rxb->newline_anchor)
  2685. break;
  2686.       else
  2687. goto test_do_return;
  2688.     }
  2689.   
  2690. case re_se_try:
  2691.   /* This is the first side effect in every
  2692.    * expression.
  2693.    *
  2694.    *  FOR NO GOOD REASON...get rid of it...
  2695.    */
  2696.   break;
  2697.   
  2698. case re_se_pushpos:
  2699.   {
  2700.     int urhere =
  2701.       ((int)(search_state.test_pos.pos
  2702.      - search_state.test_pos.string)
  2703.        + search_state.test_pos.offset);
  2704.     struct rx_counter_frame * old_cf
  2705.       = (search_state.counter_stack
  2706.  ? ((struct rx_counter_frame *)
  2707.     search_state.counter_stack->sp)
  2708.  : 0);
  2709.     struct rx_counter_frame * cf;
  2710.     PUSH(search_state.counter_stack,
  2711.  sizeof (struct rx_counter_frame));
  2712.     cf = ((struct rx_counter_frame *)
  2713.   search_state.counter_stack->sp);
  2714.     cf->tag = re_se_pushpos;
  2715.     cf->val = urhere;
  2716.     cf->inherited_from = 0;
  2717.     cf->cdr = old_cf;
  2718.     break;
  2719.   }
  2720.   
  2721. case re_se_chkpos:
  2722.   {
  2723.     int urhere =
  2724.       ((int)(search_state.test_pos.pos
  2725.      - search_state.test_pos.string)
  2726.        + search_state.test_pos.offset);
  2727.     struct rx_counter_frame * cf
  2728.       = ((struct rx_counter_frame *)
  2729.  search_state.counter_stack->sp);
  2730.     if (cf->val == urhere)
  2731.       goto test_do_return;
  2732.     cf->val = urhere;
  2733.     break;
  2734.   }
  2735.   break;
  2736.   
  2737. case re_se_poppos:
  2738.   POP(search_state.counter_stack,
  2739.       sizeof (struct rx_counter_frame));
  2740.   break;
  2741.   
  2742.   
  2743. case re_se_at_dot:
  2744. case re_se_syntax:
  2745. case re_se_not_syntax:
  2746. #ifdef emacs
  2747.   this release lacks emacs support;
  2748.   (coming soon);
  2749. #endif
  2750.   break;
  2751. case re_se_win:
  2752. case re_se_lparen:
  2753. case re_se_rparen:
  2754. case re_se_backref:
  2755. case re_se_iter:
  2756. case re_se_end_iter:
  2757. case re_se_tv:
  2758. case re_floogle_flap:
  2759.   search_state.ret_val = 0;
  2760.   goto test_do_return;
  2761. }
  2762.     }
  2763.   else
  2764.     {
  2765. #ifdef RX_DEBUG_0
  2766.       if (rx_debug_trace)
  2767. fprintf (stderr, "....%d %d>> %s %d %dn", search_state.line_no,
  2768.  search_state.backtrack_depth,
  2769.  efnames2[rxb->se_params [effect].se],
  2770.  rxb->se_params [effect].op1,
  2771.  rxb->se_params [effect].op2);
  2772. #endif
  2773.       switch (rxb->se_params [effect].se)
  2774. {
  2775. case re_se_win:
  2776.   /* This side effect indicates that we've 
  2777.    * found a match, though not necessarily the 
  2778.    * best match.  This is a fancy assignment to 
  2779.    * register 0 unless the caller didn't 
  2780.    * care about registers.  In which case,
  2781.    * this stops the match.
  2782.    */
  2783.   {
  2784.     int urhere =
  2785.       ((int)(search_state.test_pos.pos
  2786.      - search_state.test_pos.string)
  2787.        + search_state.test_pos.offset);
  2788.     
  2789.     if (   (search_state.best_last_r < 0)
  2790. || (urhere + 1 > search_state.best_rparen[0]))
  2791.       {
  2792. /* Record the best known and keep
  2793.  * looking.
  2794.  */
  2795. int x;
  2796. for (x = 0; x <= search_state.last_l; ++x)
  2797.   search_state.best_lparen[x] = search_state.lparen[x];
  2798. search_state.best_last_l = search_state.last_l;
  2799. for (x = 0; x <= search_state.last_r; ++x)
  2800.   search_state.best_rparen[x] = search_state.rparen[x];
  2801. search_state.best_rparen[0] = urhere + 1;
  2802. search_state.best_last_r = search_state.last_r;
  2803.       }
  2804.     /* If we're not reporting the match-length 
  2805.      * or other register info, we need look no
  2806.      * further.
  2807.      */
  2808.     if (search_state.first_found)
  2809.       {
  2810. search_state.test_ret = rx_test_found_first;
  2811. goto test_do_return;
  2812.       }
  2813.   }
  2814.   break;
  2815. case re_se_lparen:
  2816.   {
  2817.     int urhere =
  2818.       ((int)(search_state.test_pos.pos
  2819.      - search_state.test_pos.string)
  2820.        + search_state.test_pos.offset);
  2821.     
  2822.     int reg = rxb->se_params [effect].op1;
  2823. #if 0
  2824.     if (reg > search_state.last_l)
  2825. #endif
  2826.       {
  2827. search_state.lparen[reg] = urhere + 1;
  2828. /* In addition to making this assignment,
  2829.  * we now know that lower numbered regs
  2830.  * that haven't already been assigned,
  2831.  * won't be.  We make sure they're
  2832.  * filled with -1, so they can be
  2833.  * recognized as unassigned.
  2834.  */
  2835. if (search_state.last_l < reg)
  2836.   while (++search_state.last_l < reg)
  2837.     search_state.lparen[search_state.last_l] = -1;
  2838.       }
  2839.     break;
  2840.   }
  2841.   
  2842. case re_se_rparen:
  2843.   {
  2844.     int urhere =
  2845.       ((int)(search_state.test_pos.pos
  2846.      - search_state.test_pos.string)
  2847.        + search_state.test_pos.offset);
  2848.     int reg = rxb->se_params [effect].op1;
  2849.     search_state.rparen[reg] = urhere + 1;
  2850.     if (search_state.last_r < reg)
  2851.       {
  2852. while (++search_state.last_r < reg)
  2853.   search_state.rparen[search_state.last_r]
  2854.     = -1;
  2855.       }
  2856.     break;
  2857.   }
  2858.   
  2859. case re_se_backref:
  2860.   {
  2861.     int reg = rxb->se_params [effect].op1;
  2862.     if (   reg > search_state.last_r
  2863. || search_state.rparen[reg] < 0)
  2864.       goto test_do_return;
  2865.     
  2866.     {
  2867.       int backref_status;
  2868.     check_backreference:
  2869.       backref_status
  2870. = back_check (&search_state.test_pos,
  2871.       search_state.lparen[reg],
  2872.       search_state.rparen[reg],
  2873.       search_state.translate,
  2874.       app_closure,
  2875.       stop);
  2876.       switch (backref_status)
  2877. {
  2878. case rx_back_check_continuation:
  2879.   search_state.saved_reg = reg;
  2880.   test_pc = rx_test_backreference_check;
  2881.   goto test_return_continuation;
  2882. resume_continuation_2:
  2883.   reg = search_state.saved_reg;
  2884.   goto check_backreference;
  2885. case rx_back_check_fail:
  2886.   /* Fail */
  2887.   goto test_do_return;
  2888. case rx_back_check_pass:
  2889.   /* pass --
  2890.    * test_pos now advanced to last
  2891.    * char matched by backref
  2892.    */
  2893.   break;
  2894. }
  2895.     }
  2896.     break;
  2897.   }
  2898. case re_se_iter:
  2899.   {
  2900.     struct rx_counter_frame * csp
  2901.       = ((struct rx_counter_frame *)
  2902.  search_state.counter_stack->sp);
  2903.     if (csp->val == rxb->se_params[effect].op2)
  2904.       goto test_do_return;
  2905.     else
  2906.       ++csp->val;
  2907.     break;
  2908.   }
  2909. case re_se_end_iter:
  2910.   {
  2911.     struct rx_counter_frame * csp
  2912.       = ((struct rx_counter_frame *)
  2913.  search_state.counter_stack->sp);
  2914.     if (csp->val < rxb->se_params[effect].op1)
  2915.       goto test_do_return;
  2916.     else
  2917.       {
  2918. struct rx_counter_frame * source = csp;
  2919. while (source->inherited_from)
  2920.   source = source->inherited_from;
  2921. if (!source || !source->cdr)
  2922.   {
  2923.     POP(search_state.counter_stack,
  2924. sizeof(struct rx_counter_frame));
  2925.   }
  2926. else
  2927.   {
  2928.     source = source->cdr;
  2929.     csp->val = source->val;
  2930.     csp->tag = source->tag;
  2931.     csp->cdr = 0;
  2932.     csp->inherited_from = source;
  2933.   }
  2934.       }
  2935.     break;
  2936.   }
  2937. case re_se_tv:
  2938.   /* is a noop */
  2939.   break;
  2940. case re_se_try:
  2941. case re_se_pushback:
  2942. case re_se_push0:
  2943. case re_se_pushpos:
  2944. case re_se_chkpos:
  2945. case re_se_poppos:
  2946. case re_se_at_dot:
  2947. case re_se_syntax:
  2948. case re_se_not_syntax:
  2949. case re_se_begbuf:
  2950. case re_se_hat:
  2951. case re_se_wordbeg:
  2952. case re_se_wordbound:
  2953. case re_se_notwordbound:
  2954. case re_se_wordend:
  2955. case re_se_endbuf:
  2956. case re_se_dollar:
  2957. case re_se_fail:
  2958. case re_floogle_flap:
  2959.   search_state.ret_val = 0;
  2960.   goto test_do_return;
  2961. }
  2962.     }
  2963.   el = el->cdr;
  2964. }
  2965.       /* Now the side effects are done,
  2966.        * so get the next instruction.
  2967.        * and move on.
  2968.        */
  2969.       search_state.ifr = &df->future_frame;
  2970.       goto restart;
  2971.     }
  2972.     
  2973.   case rx_backtrack_point:
  2974.     {
  2975.       /* A backtrack point indicates that we've reached a
  2976.        * non-determinism in the superstate NFA.  This is a
  2977.        * loop that exhaustively searches the possibilities.
  2978.        *
  2979.        * A backtracking strategy is used.  We keep track of what
  2980.        * registers are valid so we can erase side effects.
  2981.        *
  2982.        * First, make sure there is some stack space to hold 
  2983.        * our state.
  2984.        */
  2985.       
  2986.       struct rx_backtrack_frame * bf;
  2987.       
  2988.       PUSH(search_state.backtrack_stack,
  2989.    search_state.backtrack_frame_bytes);
  2990. #ifdef RX_DEBUG_0
  2991.       ++search_state.backtrack_depth;
  2992. #endif
  2993.       
  2994.       bf = ((struct rx_backtrack_frame *)
  2995.     search_state.backtrack_stack->sp);
  2996.       {
  2997. bf->stk_super = search_state.super;
  2998. /* We prevent the current superstate from being
  2999.  * deleted from the superstate cache.
  3000.  */
  3001. rx_lock_superstate (&rxb->rx, search_state.super);
  3002. #ifdef RX_DEBUG_0
  3003. bf->stk_search_state.line_no = search_state.line_no;
  3004. #endif
  3005. bf->stk_c = search_state.c;
  3006. bf->stk_test_pos = search_state.test_pos;
  3007. bf->stk_last_l = search_state.last_l;
  3008. bf->stk_last_r = search_state.last_r;
  3009. bf->df = ((struct rx_super_edge *)
  3010.   search_state.ifr->data_2)->options;
  3011. bf->first_df = bf->df;
  3012. bf->counter_stack_sp = (search_state.counter_stack
  3013. ? search_state.counter_stack->sp
  3014. : 0);
  3015. bf->stk_test_ret = search_state.test_ret;
  3016. if (rxb->match_regs_on_stack)
  3017.   {
  3018.     int x;
  3019.     regoff_t * stk =
  3020.       (regoff_t *)((char *)bf + sizeof (*bf));
  3021.     for (x = 0; x <= search_state.last_l; ++x)
  3022.       stk[x] = search_state.lparen[x];
  3023.     stk += x;
  3024.     for (x = 0; x <= search_state.last_r; ++x)
  3025.       stk[x] = search_state.rparen[x];
  3026.   }
  3027.       }
  3028.       
  3029.       /* Here is a while loop whose body is mainly a function
  3030.        * call and some code to handle a return from that
  3031.        * function.
  3032.        *
  3033.        * From here on for the rest of `case backtrack_point' it
  3034.        * is unsafe to assume that the search_state copies of 
  3035.        * variables saved on the backtracking stack are valid
  3036.        * -- so read their values from the backtracking stack.
  3037.        *
  3038.        * This lets us use one generation fewer stack saves in
  3039.        * the call-graph of a search.
  3040.        */
  3041.       
  3042.     while_non_det_options:
  3043. #ifdef RX_DEBUG_0
  3044.       ++search_state.lines_found;
  3045.       if (rx_debug_trace)
  3046. fprintf (stderr, "@@@ %d calls %d @@@n",
  3047.  search_state.line_no, search_state.lines_found);
  3048.       
  3049.       search_state.line_no = search_state.lines_found;
  3050. #endif
  3051.       
  3052.       if (bf->df->next_same_super_edge[0] == bf->first_df)
  3053. {
  3054.   /* This is a tail-call optimization -- we don't recurse
  3055.    * for the last of the possible futures.
  3056.    */
  3057.   search_state.ifr = (bf->df->effects
  3058.       ? &bf->df->side_effects_frame
  3059.       : &bf->df->future_frame);
  3060.   
  3061.   rx_unlock_superstate (&rxb->rx, search_state.super);
  3062.   POP(search_state.backtrack_stack,
  3063.       search_state.backtrack_frame_bytes);
  3064. #ifdef RX_DEBUG
  3065.   --search_state.backtrack_depth;
  3066. #endif
  3067.   goto restart;
  3068. }
  3069.       else
  3070. {
  3071.   if (search_state.counter_stack)
  3072.     {
  3073.       struct rx_counter_frame * old_cf
  3074. = ((struct rx_counter_frame *)search_state.counter_stack->sp);
  3075.       struct rx_counter_frame * cf;
  3076.       PUSH(search_state.counter_stack, sizeof (struct rx_counter_frame));
  3077.       cf = ((struct rx_counter_frame *)search_state.counter_stack->sp);
  3078.       cf->tag = old_cf->tag;
  3079.       cf->val = old_cf->val;
  3080.       cf->inherited_from = old_cf;
  3081.       cf->cdr = 0;
  3082.     }
  3083.   /* `Call' this test-match block */
  3084.   search_state.ifr = (bf->df->effects
  3085.       ? &bf->df->side_effects_frame
  3086.       : &bf->df->future_frame);
  3087.   goto recurse_test_match;
  3088. }
  3089.       
  3090.       /* Returns in this block are accomplished by
  3091.        * goto test_do_return.  There are two cases.
  3092.        * If there is some search-stack left,
  3093.        * then it is a return from a `recursive' call.
  3094.        * If there is no search-stack left, then
  3095.        * we should return to the fastmap/search loop.
  3096.        */
  3097.       
  3098.     test_do_return:
  3099.       
  3100.       if (!search_state.backtrack_stack)
  3101. {
  3102. #ifdef RX_DEBUG_0
  3103.   if (rx_debug_trace)
  3104.     fprintf (stderr, "!!! %d bails returning %d !!!n",
  3105.      search_state.line_no, search_state.test_ret);
  3106. #endif
  3107.   
  3108.   /* No more search-stack -- this test is done. */
  3109.   if (search_state.test_ret)
  3110.     goto return_from_test_match;
  3111.   else
  3112.     goto error_in_testing_match;
  3113. }
  3114.       
  3115.       /* Returning from a recursive call to 
  3116.        * the test match block:
  3117.        */
  3118.       
  3119.       bf = ((struct rx_backtrack_frame *)
  3120.     search_state.backtrack_stack->sp);
  3121. #ifdef RX_DEBUG_0
  3122.       if (rx_debug_trace)
  3123. fprintf (stderr, "+++ %d returns %d (to %d)+++n",
  3124.  search_state.line_no,
  3125.  search_state.test_ret,
  3126.  bf->stk_search_state.line_no);
  3127. #endif
  3128.       
  3129.       while (search_state.counter_stack
  3130.      && (!bf->counter_stack_sp
  3131.  || (bf->counter_stack_sp
  3132.      != search_state.counter_stack->sp)))
  3133. {
  3134.   POP(search_state.counter_stack,
  3135.       sizeof (struct rx_counter_frame));
  3136. }
  3137.       
  3138.       if (search_state.test_ret == rx_test_error)
  3139. {
  3140.   POP (search_state.backtrack_stack,
  3141.        search_state.backtrack_frame_bytes);
  3142.   goto test_do_return;
  3143. }
  3144.       
  3145.       /* If a non-longest match was found and that is good 
  3146.        * enough, return immediately.
  3147.        */
  3148.       if (   (search_state.test_ret == rx_test_found_first)
  3149.   && search_state.first_found)
  3150. {
  3151.   rx_unlock_superstate (&rxb->rx, bf->stk_super);
  3152.   POP (search_state.backtrack_stack,
  3153.        search_state.backtrack_frame_bytes);
  3154.   goto test_do_return;
  3155. }
  3156.       
  3157.       search_state.test_ret = bf->stk_test_ret;
  3158.       search_state.last_l = bf->stk_last_l;
  3159.       search_state.last_r = bf->stk_last_r;
  3160.       bf->df = bf->df->next_same_super_edge[0];
  3161.       search_state.super = bf->stk_super;
  3162.       search_state.c = bf->stk_c;
  3163. #ifdef RX_DEBUG_0
  3164.       search_state.line_no = bf->stk_search_state.line_no;
  3165. #endif
  3166.       
  3167.       if (rxb->match_regs_on_stack)
  3168. {
  3169.   int x;
  3170.   regoff_t * stk =
  3171.     (regoff_t *)((char *)bf + sizeof (*bf));
  3172.   for (x = 0; x <= search_state.last_l; ++x)
  3173.     search_state.lparen[x] = stk[x];
  3174.   stk += x;
  3175.   for (x = 0; x <= search_state.last_r; ++x)
  3176.     search_state.rparen[x] = stk[x];
  3177. }
  3178.       
  3179.       {
  3180. int x;
  3181.       try_burst_2:
  3182. x = get_burst (&bf->stk_test_pos, app_closure, stop);
  3183. switch (x)
  3184.   {
  3185.   case rx_get_burst_continuation:
  3186.     search_state.saved_bf = bf;
  3187.     test_pc = rx_test_backtrack_return;
  3188.     goto test_return_continuation;
  3189.   resume_continuation_3:
  3190.     bf = search_state.saved_bf;
  3191.     goto try_burst_2;
  3192.   case rx_get_burst_no_more:
  3193.     /* Since we've been here before, it is some kind of
  3194.      * error that we can't return.
  3195.      */
  3196.   case rx_get_burst_error:
  3197.     search_state.test_ret = rx_test_internal_error;
  3198.     goto test_do_return;
  3199.   case rx_get_burst_ok:
  3200.     break;
  3201.   }
  3202.       }
  3203.       search_state.test_pos = bf->stk_test_pos;
  3204.       goto while_non_det_options;
  3205.     }
  3206.     
  3207.     
  3208.   case rx_cache_miss:
  3209.     /* Because the superstate NFA is lazily constructed,
  3210.      * and in fact may erode from underneath us, we sometimes
  3211.      * have to construct the next instruction from the hard way.
  3212.      * This invokes one step in the lazy-conversion.
  3213.      */
  3214.     search_state.ifr = rx_handle_cache_miss (&rxb->rx,
  3215.      search_state.super,
  3216.      search_state.c,
  3217.      search_state.ifr->data_2);
  3218.     if (!search_state.ifr)
  3219.       {
  3220. search_state.test_ret = rx_test_internal_error;
  3221. goto test_do_return;
  3222.       }
  3223.     goto restart;
  3224.     
  3225.   case rx_backtrack:
  3226.     /* RX_BACKTRACK means that we've reached the empty
  3227.      * superstate, indicating that match can't succeed
  3228.      * from this point.
  3229.      */
  3230.     goto test_do_return;
  3231.     
  3232.   case rx_next_char:
  3233.   case rx_error_inx:
  3234.   case rx_num_instructions:
  3235.     search_state.ret_val = 0;
  3236.     goto test_do_return;
  3237.   }
  3238. goto pseudo_while_1;
  3239.       }
  3240.     
  3241.     /* Healthy exits from the test-match loop do a 
  3242.      * `goto return_from_test_match'   On the other hand, 
  3243.      * we might end up here.
  3244.      */
  3245.   error_in_testing_match:
  3246.     test_state = rx_test_error;
  3247.     goto test_returns_to_search;
  3248.     
  3249.     /***** fastmap/search loop body
  3250.      *       considering the results testing for a match
  3251.      */
  3252.     
  3253.   return_from_test_match:
  3254.     
  3255.     if (search_state.best_last_l >= 0)
  3256.       {
  3257. if (regs && (regs->start != search_state.best_lparen))
  3258.   {
  3259.     bcopy (search_state.best_lparen, regs->start,
  3260.    regs->num_regs * sizeof (int));
  3261.     bcopy (search_state.best_rparen, regs->end,
  3262.    regs->num_regs * sizeof (int));
  3263.   }
  3264. if (regs && !rxb->no_sub)
  3265.   {
  3266.     int q;
  3267.     int bound = (regs->num_regs > search_state.num_regs
  3268.  ? regs->num_regs
  3269.  : search_state.num_regs);
  3270.     regoff_t * s = regs->start;
  3271.     regoff_t * e = regs->end;
  3272.     for (q = search_state.best_last_l + 1;  q < bound; ++q)
  3273.       s[q] = e[q] = -1;
  3274.   }
  3275. search_state.ret_val = search_state.best_lparen[0];
  3276. test_state = rx_test_ok;
  3277. goto test_returns_to_search;
  3278.       }
  3279.     else
  3280.       {
  3281. test_state = rx_test_fail;
  3282. goto test_returns_to_search;
  3283.       }
  3284.     
  3285.   test_return_continuation:
  3286.     search_state.test_match_resume_pt = test_pc;
  3287.     test_state = rx_test_continuation;
  3288.     goto test_returns_to_search;
  3289.   }
  3290. }
  3291. #endif /* RX_WANT_RX_DEFS */
  3292. #else /* RX_WANT_SE_DEFS */
  3293.   /* Integers are used to represent side effects.
  3294.    *
  3295.    * Simple side effects are given negative integer names by these enums.
  3296.    * 
  3297.    * Non-negative names are reserved for complex effects.
  3298.    *
  3299.    * Complex effects are those that take arguments.  For example, 
  3300.    * a register assignment associated with a group is complex because
  3301.    * it requires an argument to tell which group is being matched.
  3302.    * 
  3303.    * The integer name of a complex effect is an index into rxb->se_params.
  3304.    */
  3305.  
  3306.   RX_DEF_SE(1, re_se_try, = -1) /* Epsilon from start state */
  3307.   RX_DEF_SE(0, re_se_pushback, = re_se_try - 1)
  3308.   RX_DEF_SE(0, re_se_push0, = re_se_pushback -1)
  3309.   RX_DEF_SE(0, re_se_pushpos, = re_se_push0 - 1)
  3310.   RX_DEF_SE(0, re_se_chkpos, = re_se_pushpos -1)
  3311.   RX_DEF_SE(0, re_se_poppos, = re_se_chkpos - 1)
  3312.   RX_DEF_SE(1, re_se_at_dot, = re_se_poppos - 1) /* Emacs only */
  3313.   RX_DEF_SE(0, re_se_syntax, = re_se_at_dot - 1) /* Emacs only */
  3314.   RX_DEF_SE(0, re_se_not_syntax, = re_se_syntax - 1) /* Emacs only */
  3315.   RX_DEF_SE(1, re_se_begbuf, = re_se_not_syntax - 1) /* match beginning of buffer */
  3316.   RX_DEF_SE(1, re_se_hat, = re_se_begbuf - 1) /* match beginning of line */
  3317.   RX_DEF_SE(1, re_se_wordbeg, = re_se_hat - 1) 
  3318.   RX_DEF_SE(1, re_se_wordbound, = re_se_wordbeg - 1)
  3319.   RX_DEF_SE(1, re_se_notwordbound, = re_se_wordbound - 1)
  3320.   RX_DEF_SE(1, re_se_wordend, = re_se_notwordbound - 1)
  3321.   RX_DEF_SE(1, re_se_endbuf, = re_se_wordend - 1)
  3322.   /* This fails except at the end of a line. 
  3323.    * It deserves to go here since it is typicly one of the last steps 
  3324.    * in a match.
  3325.    */
  3326.   RX_DEF_SE(1, re_se_dollar, = re_se_endbuf - 1)
  3327.   /* Simple effects: */
  3328.   RX_DEF_SE(1, re_se_fail, = re_se_dollar - 1)
  3329.   /* Complex effects.  These are used in the 'se' field of 
  3330.    * a struct re_se_params.  Indexes into the se array
  3331.    * are stored as instructions on nfa edges.
  3332.    */
  3333.   RX_DEF_CPLX_SE(1, re_se_win, = 0)
  3334.   RX_DEF_CPLX_SE(1, re_se_lparen, = re_se_win + 1)
  3335.   RX_DEF_CPLX_SE(1, re_se_rparen, = re_se_lparen + 1)
  3336.   RX_DEF_CPLX_SE(0, re_se_backref, = re_se_rparen + 1)
  3337.   RX_DEF_CPLX_SE(0, re_se_iter, = re_se_backref + 1) 
  3338.   RX_DEF_CPLX_SE(0, re_se_end_iter, = re_se_iter + 1)
  3339.   RX_DEF_CPLX_SE(0, re_se_tv, = re_se_end_iter + 1)
  3340. #endif
  3341. #endif