OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [posix/] [regex2.h] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/*-
/*-
 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
 * Copyright (c) 1992, 1993, 1994
 * Copyright (c) 1992, 1993, 1994
 *      The Regents of the University of California.  All rights reserved.
 *      The Regents of the University of California.  All rights reserved.
 *
 *
 * This code is derived from software contributed to Berkeley by
 * This code is derived from software contributed to Berkeley by
 * Henry Spencer.
 * Henry Spencer.
 *
 *
 * Redistribution and use in source and binary forms, with or without
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * modification, are permitted provided that the following conditions
 * are met:
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    must display the following acknowledgement:
 *      This product includes software developed by the University of
 *      This product includes software developed by the University of
 *      California, Berkeley and its contributors.
 *      California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *    without specific prior written permission.
 *
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * SUCH DAMAGE.
 *
 *
 *      @(#)regex2.h    8.4 (Berkeley) 3/20/94
 *      @(#)regex2.h    8.4 (Berkeley) 3/20/94
 * $FreeBSD: src/lib/libc/regex/regex2.h,v 1.6 2002/03/22 23:41:56 obrien Exp $
 * $FreeBSD: src/lib/libc/regex/regex2.h,v 1.6 2002/03/22 23:41:56 obrien Exp $
 */
 */
 
 
/*
/*
 * First, the stuff that ends up in the outside-world include file
 * First, the stuff that ends up in the outside-world include file
 = typedef off_t regoff_t;
 = typedef off_t regoff_t;
 = typedef struct {
 = typedef struct {
 =      int re_magic;
 =      int re_magic;
 =      size_t re_nsub;         // number of parenthesized subexpressions
 =      size_t re_nsub;         // number of parenthesized subexpressions
 =      const char *re_endp;    // end pointer for REG_PEND
 =      const char *re_endp;    // end pointer for REG_PEND
 =      struct re_guts *re_g;   // none of your business :-)
 =      struct re_guts *re_g;   // none of your business :-)
 = } regex_t;
 = } regex_t;
 = typedef struct {
 = typedef struct {
 =      regoff_t rm_so;         // start of match
 =      regoff_t rm_so;         // start of match
 =      regoff_t rm_eo;         // end of match
 =      regoff_t rm_eo;         // end of match
 = } regmatch_t;
 = } regmatch_t;
 */
 */
/*
/*
 * internals of regex_t
 * internals of regex_t
 */
 */
#define MAGIC1  ((('r'^0200)<<8) | 'e')
#define MAGIC1  ((('r'^0200)<<8) | 'e')
 
 
/*
/*
 * The internal representation is a *strip*, a sequence of
 * The internal representation is a *strip*, a sequence of
 * operators ending with an endmarker.  (Some terminology etc. is a
 * operators ending with an endmarker.  (Some terminology etc. is a
 * historical relic of earlier versions which used multiple strips.)
 * historical relic of earlier versions which used multiple strips.)
 * Certain oddities in the representation are there to permit running
 * Certain oddities in the representation are there to permit running
 * the machinery backwards; in particular, any deviation from sequential
 * the machinery backwards; in particular, any deviation from sequential
 * flow must be marked at both its source and its destination.  Some
 * flow must be marked at both its source and its destination.  Some
 * fine points:
 * fine points:
 *
 *
 * - OPLUS_ and O_PLUS are *inside* the loop they create.
 * - OPLUS_ and O_PLUS are *inside* the loop they create.
 * - OQUEST_ and O_QUEST are *outside* the bypass they create.
 * - OQUEST_ and O_QUEST are *outside* the bypass they create.
 * - OCH_ and O_CH are *outside* the multi-way branch they create, while
 * - OCH_ and O_CH are *outside* the multi-way branch they create, while
 *   OOR1 and OOR2 are respectively the end and the beginning of one of
 *   OOR1 and OOR2 are respectively the end and the beginning of one of
 *   the branches.  Note that there is an implicit OOR2 following OCH_
 *   the branches.  Note that there is an implicit OOR2 following OCH_
 *   and an implicit OOR1 preceding O_CH.
 *   and an implicit OOR1 preceding O_CH.
 *
 *
 * In state representations, an operator's bit is on to signify a state
 * In state representations, an operator's bit is on to signify a state
 * immediately *preceding* "execution" of that operator.
 * immediately *preceding* "execution" of that operator.
 */
 */
typedef unsigned long sop;      /* strip operator */
typedef unsigned long sop;      /* strip operator */
typedef long sopno;
typedef long sopno;
#define OPRMASK 0xf8000000L
#define OPRMASK 0xf8000000L
#define OPDMASK 0x07ffffffL
#define OPDMASK 0x07ffffffL
#define OPSHIFT ((unsigned)27)
#define OPSHIFT ((unsigned)27)
#define OP(n)   ((n)&OPRMASK)
#define OP(n)   ((n)&OPRMASK)
#define OPND(n) ((n)&OPDMASK)
#define OPND(n) ((n)&OPDMASK)
#define SOP(op, opnd)   ((op)|(opnd))
#define SOP(op, opnd)   ((op)|(opnd))
/* operators                       meaning      operand                 */
/* operators                       meaning      operand                 */
/*                                              (back, fwd are offsets) */
/*                                              (back, fwd are offsets) */
#define OEND    (1L<<OPSHIFT)   /* endmarker    -                       */
#define OEND    (1L<<OPSHIFT)   /* endmarker    -                       */
#define OCHAR   (2L<<OPSHIFT)   /* character    unsigned char           */
#define OCHAR   (2L<<OPSHIFT)   /* character    unsigned char           */
#define OBOL    (3L<<OPSHIFT)   /* left anchor  -                       */
#define OBOL    (3L<<OPSHIFT)   /* left anchor  -                       */
#define OEOL    (4L<<OPSHIFT)   /* right anchor -                       */
#define OEOL    (4L<<OPSHIFT)   /* right anchor -                       */
#define OANY    (5L<<OPSHIFT)   /* .            -                       */
#define OANY    (5L<<OPSHIFT)   /* .            -                       */
#define OANYOF  (6L<<OPSHIFT)   /* [...]        set number              */
#define OANYOF  (6L<<OPSHIFT)   /* [...]        set number              */
#define OBACK_  (7L<<OPSHIFT)   /* begin \d     paren number            */
#define OBACK_  (7L<<OPSHIFT)   /* begin \d     paren number            */
#define O_BACK  (8L<<OPSHIFT)   /* end \d       paren number            */
#define O_BACK  (8L<<OPSHIFT)   /* end \d       paren number            */
#define OPLUS_  (9L<<OPSHIFT)   /* + prefix     fwd to suffix           */
#define OPLUS_  (9L<<OPSHIFT)   /* + prefix     fwd to suffix           */
#define O_PLUS  (10L<<OPSHIFT)  /* + suffix     back to prefix          */
#define O_PLUS  (10L<<OPSHIFT)  /* + suffix     back to prefix          */
#define OQUEST_ (11L<<OPSHIFT)  /* ? prefix     fwd to suffix           */
#define OQUEST_ (11L<<OPSHIFT)  /* ? prefix     fwd to suffix           */
#define O_QUEST (12L<<OPSHIFT)  /* ? suffix     back to prefix          */
#define O_QUEST (12L<<OPSHIFT)  /* ? suffix     back to prefix          */
#define OLPAREN (13L<<OPSHIFT)  /* (            fwd to )                */
#define OLPAREN (13L<<OPSHIFT)  /* (            fwd to )                */
#define ORPAREN (14L<<OPSHIFT)  /* )            back to (               */
#define ORPAREN (14L<<OPSHIFT)  /* )            back to (               */
#define OCH_    (15L<<OPSHIFT)  /* begin choice fwd to OOR2             */
#define OCH_    (15L<<OPSHIFT)  /* begin choice fwd to OOR2             */
#define OOR1    (16L<<OPSHIFT)  /* | pt. 1      back to OOR1 or OCH_    */
#define OOR1    (16L<<OPSHIFT)  /* | pt. 1      back to OOR1 or OCH_    */
#define OOR2    (17L<<OPSHIFT)  /* | pt. 2      fwd to OOR2 or O_CH     */
#define OOR2    (17L<<OPSHIFT)  /* | pt. 2      fwd to OOR2 or O_CH     */
#define O_CH    (18L<<OPSHIFT)  /* end choice   back to OOR1            */
#define O_CH    (18L<<OPSHIFT)  /* end choice   back to OOR1            */
#define OBOW    (19L<<OPSHIFT)  /* begin word   -                       */
#define OBOW    (19L<<OPSHIFT)  /* begin word   -                       */
#define OEOW    (20L<<OPSHIFT)  /* end word     -                       */
#define OEOW    (20L<<OPSHIFT)  /* end word     -                       */
 
 
/*
/*
 * Structure for [] character-set representation.  Character sets are
 * Structure for [] character-set representation.  Character sets are
 * done as bit vectors, grouped 8 to a byte vector for compactness.
 * done as bit vectors, grouped 8 to a byte vector for compactness.
 * The individual set therefore has both a pointer to the byte vector
 * The individual set therefore has both a pointer to the byte vector
 * and a mask to pick out the relevant bit of each byte.  A hash code
 * and a mask to pick out the relevant bit of each byte.  A hash code
 * simplifies testing whether two sets could be identical.
 * simplifies testing whether two sets could be identical.
 *
 *
 * This will get trickier for multicharacter collating elements.  As
 * This will get trickier for multicharacter collating elements.  As
 * preliminary hooks for dealing with such things, we also carry along
 * preliminary hooks for dealing with such things, we also carry along
 * a string of multi-character elements, and decide the size of the
 * a string of multi-character elements, and decide the size of the
 * vectors at run time.
 * vectors at run time.
 */
 */
typedef struct {
typedef struct {
        uch *ptr;               /* -> uch [csetsize] */
        uch *ptr;               /* -> uch [csetsize] */
        uch mask;               /* bit within array */
        uch mask;               /* bit within array */
        short hash;             /* hash code */
        short hash;             /* hash code */
        size_t smultis;
        size_t smultis;
        char *multis;           /* -> char[smulti]  ab\0cd\0ef\0\0 */
        char *multis;           /* -> char[smulti]  ab\0cd\0ef\0\0 */
} cset;
} cset;
/* note that CHadd and CHsub are unsafe, and CHIN doesn't yield 0/1 */
/* note that CHadd and CHsub are unsafe, and CHIN doesn't yield 0/1 */
#define CHadd(cs, c)    ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (uch)(c))
#define CHadd(cs, c)    ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (uch)(c))
#define CHsub(cs, c)    ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (uch)(c))
#define CHsub(cs, c)    ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (uch)(c))
#define CHIN(cs, c)     ((cs)->ptr[(uch)(c)] & (cs)->mask)
#define CHIN(cs, c)     ((cs)->ptr[(uch)(c)] & (cs)->mask)
#define MCadd(p, cs, cp)        mcadd(p, cs, cp)        /* regcomp() internal fns */
#define MCadd(p, cs, cp)        mcadd(p, cs, cp)        /* regcomp() internal fns */
#define MCsub(p, cs, cp)        mcsub(p, cs, cp)
#define MCsub(p, cs, cp)        mcsub(p, cs, cp)
#define MCin(p, cs, cp) mcin(p, cs, cp)
#define MCin(p, cs, cp) mcin(p, cs, cp)
 
 
/* stuff for character categories */
/* stuff for character categories */
typedef unsigned char cat_t;
typedef unsigned char cat_t;
 
 
/*
/*
 * main compiled-expression structure
 * main compiled-expression structure
 */
 */
struct re_guts {
struct re_guts {
        int magic;
        int magic;
#               define  MAGIC2  ((('R'^0200)<<8)|'E')
#               define  MAGIC2  ((('R'^0200)<<8)|'E')
        sop *strip;             /* malloced area for strip */
        sop *strip;             /* malloced area for strip */
        int csetsize;           /* number of bits in a cset vector */
        int csetsize;           /* number of bits in a cset vector */
        int ncsets;             /* number of csets in use */
        int ncsets;             /* number of csets in use */
        cset *sets;             /* -> cset [ncsets] */
        cset *sets;             /* -> cset [ncsets] */
        uch *setbits;           /* -> uch[csetsize][ncsets/CHAR_BIT] */
        uch *setbits;           /* -> uch[csetsize][ncsets/CHAR_BIT] */
        int cflags;             /* copy of regcomp() cflags argument */
        int cflags;             /* copy of regcomp() cflags argument */
        sopno nstates;          /* = number of sops */
        sopno nstates;          /* = number of sops */
        sopno firststate;       /* the initial OEND (normally 0) */
        sopno firststate;       /* the initial OEND (normally 0) */
        sopno laststate;        /* the final OEND */
        sopno laststate;        /* the final OEND */
        int iflags;             /* internal flags */
        int iflags;             /* internal flags */
#               define  USEBOL  01      /* used ^ */
#               define  USEBOL  01      /* used ^ */
#               define  USEEOL  02      /* used $ */
#               define  USEEOL  02      /* used $ */
#               define  BAD     04      /* something wrong */
#               define  BAD     04      /* something wrong */
        int nbol;               /* number of ^ used */
        int nbol;               /* number of ^ used */
        int neol;               /* number of $ used */
        int neol;               /* number of $ used */
        int ncategories;        /* how many character categories */
        int ncategories;        /* how many character categories */
        cat_t *categories;      /* ->catspace[-CHAR_MIN] */
        cat_t *categories;      /* ->catspace[-CHAR_MIN] */
        char *must;             /* match must contain this string */
        char *must;             /* match must contain this string */
        int moffset;            /* latest point at which must may be located */
        int moffset;            /* latest point at which must may be located */
        int *charjump;          /* Boyer-Moore char jump table */
        int *charjump;          /* Boyer-Moore char jump table */
        int *matchjump;         /* Boyer-Moore match jump table */
        int *matchjump;         /* Boyer-Moore match jump table */
        int mlen;               /* length of must */
        int mlen;               /* length of must */
        size_t nsub;            /* copy of re_nsub */
        size_t nsub;            /* copy of re_nsub */
        int backrefs;           /* does it use back references? */
        int backrefs;           /* does it use back references? */
        sopno nplus;            /* how deep does it nest +s? */
        sopno nplus;            /* how deep does it nest +s? */
        /* catspace must be last */
        /* catspace must be last */
        cat_t catspace[1];      /* actually [NC] */
        cat_t catspace[1];      /* actually [NC] */
};
};
 
 
/* misc utilities */
/* misc utilities */
#define OUT     (CHAR_MAX+1)    /* a non-character value */
#define OUT     (CHAR_MAX+1)    /* a non-character value */
#define ISWORD(c)       (isalnum((uch)(c)) || (c) == '_')
#define ISWORD(c)       (isalnum((uch)(c)) || (c) == '_')
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.