freebsd-dev/usr.bin/m4/expr.c

641 lines
12 KiB
C
Raw Normal View History

/* $OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $ */
/* $NetBSD: expr.c,v 1.7 1995/09/28 05:37:31 tls Exp $ */
1994-05-27 12:33:43 +00:00
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Ozan Yigit at York University.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 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
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* 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
* SUCH DAMAGE.
*/
#ifndef lint
#if 0
static char sccsid[] = "@(#)expr.c 8.2 (Berkeley) 4/29/95";
#else
#if 0
static char rcsid[] = "$OpenBSD: expr.c,v 1.14 2002/04/26 16:15:16 espie Exp $";
#endif
#endif
#endif /* not lint */
1994-05-27 12:33:43 +00:00
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <ctype.h>
#include <err.h>
#include <stddef.h>
1994-05-27 12:33:43 +00:00
#include <stdio.h>
#include "mdef.h"
#include "extern.h"
1994-05-27 12:33:43 +00:00
/*
* expression evaluator: performs a standard recursive
* descent parse to evaluate any expression permissible
* within the following grammar:
*
* expr : query EOS
* query : lor
* | lor "?" query ":" query
* lor : land { "||" land }
* land : bor { "&&" bor }
* bor : xor { "|" xor }
* xor : band { "^" eqrel }
* band : eqrel { "&" eqrel }
* eqrel : nerel { ("==" | "!=") nerel }
* nerel : shift { ("<" | ">" | "<=" | ">=") shift }
* shift : primary { ("<<" | ">>") primary }
* primary : term { ("+" | "-") term }
* term : exponent { ("*" | "/" | "%") exponent }
* exponent: unary { "**" unary }
1994-05-27 12:33:43 +00:00
* unary : factor
* | ("+" | "-" | "~" | "!") unary
1994-05-27 12:33:43 +00:00
* factor : constant
* | "(" query ")"
* constant: num
* | "'" CHAR "'"
* num : DIGIT
* | DIGIT num
*
*
* This expression evaluator is lifted from a public-domain
* C Pre-Processor included with the DECUS C Compiler distribution.
* It is hacked somewhat to be suitable for m4.
*
* Originally by: Mike Lutz
* Bob Harper
*/
#define EQL 0
#define NEQ 1
#define LSS 2
#define LEQ 3
#define GTR 4
#define GEQ 5
#define OCTAL 8
#define DECIMAL 10
#define HEX 16
1994-05-27 12:33:43 +00:00
static const char *nxtch; /* Parser scan pointer */
static const char *where;
1994-05-27 12:33:43 +00:00
static int query(int mayeval);
static int lor(int mayeval);
static int land(int mayeval);
static int bor(int mayeval);
static int xor(int mayeval);
static int band(int mayeval);
static int eqrel(int mayeval);
static int nerel(int mayeval);
static int shift(int mayeval);
static int primary(int mayeval);
static int term(int mayeval);
static int exponent(int mayeval);
static int unary(int mayeval);
static int factor(int mayeval);
static int constant(int mayeval);
static int num(int mayeval);
2002-03-22 01:33:25 +00:00
static int skipws(void);
static void experr(const char *);
1994-05-27 12:33:43 +00:00
/*
* For longjmp
*/
#include <setjmp.h>
static jmp_buf expjump;
/*
* macros:
* ungetch - Put back the last character examined.
* getch - return the next character from expr string.
*/
#define ungetch() nxtch--
#define getch() *nxtch++
int
expr(const char *expbuf)
1994-05-27 12:33:43 +00:00
{
int rval;
1994-05-27 12:33:43 +00:00
nxtch = expbuf;
where = expbuf;
1994-05-27 12:33:43 +00:00
if (setjmp(expjump) != 0)
return FALSE;
rval = query(1);
1994-05-27 12:33:43 +00:00
if (skipws() == EOS)
return rval;
printf("m4: ill-formed expression.\n");
return FALSE;
}
/*
* query : lor | lor '?' query ':' query
*/
static int
query(int mayeval)
1994-05-27 12:33:43 +00:00
{
int result, true_val, false_val;
1994-05-27 12:33:43 +00:00
result = lor(mayeval);
1994-05-27 12:33:43 +00:00
if (skipws() != '?') {
ungetch();
return result;
1994-05-27 12:33:43 +00:00
}
true_val = query(result);
1994-05-27 12:33:43 +00:00
if (skipws() != ':')
experr("bad query: missing \":\"");
1994-05-27 12:33:43 +00:00
false_val = query(!result);
return result ? true_val : false_val;
1994-05-27 12:33:43 +00:00
}
/*
* lor : land { '||' land }
*/
static int
lor(int mayeval)
1994-05-27 12:33:43 +00:00
{
int c, vl, vr;
1994-05-27 12:33:43 +00:00
vl = land(mayeval);
while ((c = skipws()) == '|') {
if (getch() != '|') {
ungetch();
break;
}
if (vl != 0)
mayeval = 0;
vr = land(mayeval);
1994-05-27 12:33:43 +00:00
vl = vl || vr;
}
ungetch();
return vl;
}
/*
* land : not { '&&' not }
1994-05-27 12:33:43 +00:00
*/
static int
land(int mayeval)
1994-05-27 12:33:43 +00:00
{
int c, vl, vr;
1994-05-27 12:33:43 +00:00
vl = bor(mayeval);
while ((c = skipws()) == '&') {
if (getch() != '&') {
ungetch();
break;
}
if (vl == 0)
mayeval = 0;
vr = bor(mayeval);
1994-05-27 12:33:43 +00:00
vl = vl && vr;
}
ungetch();
return vl;
}
/*
* bor : xor { "|" xor }
1994-05-27 12:33:43 +00:00
*/
static int
bor(int mayeval)
1994-05-27 12:33:43 +00:00
{
int vl, vr, c, cr;
1994-05-27 12:33:43 +00:00
vl = xor(mayeval);
while ((c = skipws()) == '|') {
cr = getch();
1994-05-27 12:33:43 +00:00
ungetch();
if (cr == '|')
break;
vr = xor(mayeval);
vl |= vr;
1994-05-27 12:33:43 +00:00
}
ungetch();
return (vl);
}
1994-05-27 12:33:43 +00:00
/*
* xor : band { "^" band }
*/
static int
xor(int mayeval)
{
int vl, vr, c;
vl = band(mayeval);
while ((c = skipws()) == '^') {
vr = band(mayeval);
vl ^= vr;
}
1994-05-27 12:33:43 +00:00
ungetch();
return (vl);
1994-05-27 12:33:43 +00:00
}
/*
* band : eqrel { "&" eqrel }
1994-05-27 12:33:43 +00:00
*/
static int
band(int mayeval)
1994-05-27 12:33:43 +00:00
{
int c, cr, vl, vr;
1994-05-27 12:33:43 +00:00
vl = eqrel(mayeval);
while ((c = skipws()) == '&') {
cr = getch();
ungetch();
if (cr == '&')
break;
vr = eqrel(mayeval);
vl &= vr;
}
ungetch();
return vl;
}
1994-05-27 12:33:43 +00:00
/*
* eqrel : nerel { ("==" | "!=" ) nerel }
*/
static int
eqrel(int mayeval)
{
int vl, vr, c, cr;
vl = nerel(mayeval);
while ((c = skipws()) == '!' || c == '=') {
if ((cr = getch()) != '=') {
ungetch();
break;
}
vr = nerel(mayeval);
switch (c) {
case '=':
1994-05-27 12:33:43 +00:00
vl = (vl == vr);
break;
case '!':
1994-05-27 12:33:43 +00:00
vl = (vl != vr);
break;
}
}
ungetch();
return vl;
}
/*
* nerel : shift { ("<=" | ">=" | "<" | ">") shift }
*/
static int
nerel(int mayeval)
{
int vl, vr, c, cr;
vl = shift(mayeval);
while ((c = skipws()) == '<' || c == '>') {
if ((cr = getch()) != '=') {
ungetch();
cr = '\0';
}
vr = shift(mayeval);
switch (c) {
case '<':
vl = (cr == '\0') ? (vl < vr) : (vl <= vr);
1994-05-27 12:33:43 +00:00
break;
case '>':
vl = (cr == '\0') ? (vl > vr) : (vl >= vr);
1994-05-27 12:33:43 +00:00
break;
}
}
ungetch();
1994-05-27 12:33:43 +00:00
return vl;
}
/*
* shift : primary { ("<<" | ">>") primary }
1994-05-27 12:33:43 +00:00
*/
static int
shift(int mayeval)
1994-05-27 12:33:43 +00:00
{
int vl, vr, c;
1994-05-27 12:33:43 +00:00
vl = primary(mayeval);
while (((c = skipws()) == '<' || c == '>') && getch() == c) {
vr = primary(mayeval);
1994-05-27 12:33:43 +00:00
if (c == '<')
vl <<= vr;
else
vl >>= vr;
}
if (c == '<' || c == '>')
ungetch();
ungetch();
return vl;
}
/*
* primary : term { ("+" | "-") term }
1994-05-27 12:33:43 +00:00
*/
static int
primary(int mayeval)
1994-05-27 12:33:43 +00:00
{
int c, vl, vr;
1994-05-27 12:33:43 +00:00
vl = term(mayeval);
1994-05-27 12:33:43 +00:00
while ((c = skipws()) == '+' || c == '-') {
vr = term(mayeval);
1994-05-27 12:33:43 +00:00
if (c == '+')
vl += vr;
else
vl -= vr;
}
ungetch();
return vl;
}
/*
* term : exponent { ("*" | "/" | "%") exponent }
1994-05-27 12:33:43 +00:00
*/
static int
term(int mayeval)
1994-05-27 12:33:43 +00:00
{
int c, vl, vr;
1994-05-27 12:33:43 +00:00
vl = exponent(mayeval);
1994-05-27 12:33:43 +00:00
while ((c = skipws()) == '*' || c == '/' || c == '%') {
vr = exponent(mayeval);
1994-05-27 12:33:43 +00:00
switch (c) {
case '*':
vl *= vr;
break;
case '/':
if (!mayeval)
/* short-circuit */;
else if (vr == 0)
errx(1, "division by zero in eval.");
else
vl /= vr;
1994-05-27 12:33:43 +00:00
break;
case '%':
if (!mayeval)
/* short-circuit */;
else if (vr == 0)
errx(1, "modulo zero in eval.");
else
vl %= vr;
1994-05-27 12:33:43 +00:00
break;
}
}
ungetch();
return vl;
}
/*
* exponent : unary { "**" exponent }
*/
static int
exponent(int mayeval)
{
int c, vl, vr, n;
vl = unary(mayeval);
while ((c = skipws()) == '*') {
if (getch() != '*') {
ungetch();
break;
}
vr = unary(mayeval);
n = 1;
while (vr-- > 0)
n *= vl;
return n;
}
ungetch();
return vl;
}
1994-05-27 12:33:43 +00:00
/*
* unary : factor | ("+" | "-" | "~" | "!") unary
1994-05-27 12:33:43 +00:00
*/
static int
unary(int mayeval)
1994-05-27 12:33:43 +00:00
{
int val, c;
1994-05-27 12:33:43 +00:00
if ((c = skipws()) == '+' || c == '-' || c == '~' || c == '!') {
val = unary(mayeval);
1994-05-27 12:33:43 +00:00
switch (c) {
case '+':
return val;
1994-05-27 12:33:43 +00:00
case '-':
return -val;
case '~':
return ~val;
case '!':
return !val;
1994-05-27 12:33:43 +00:00
}
}
ungetch();
return factor(mayeval);
1994-05-27 12:33:43 +00:00
}
/*
* factor : constant | '(' query ')'
*/
static int
factor(int mayeval)
1994-05-27 12:33:43 +00:00
{
int val;
1994-05-27 12:33:43 +00:00
if (skipws() == '(') {
val = query(mayeval);
1994-05-27 12:33:43 +00:00
if (skipws() != ')')
experr("bad factor: missing \")\"");
1994-05-27 12:33:43 +00:00
return val;
}
ungetch();
return constant(mayeval);
1994-05-27 12:33:43 +00:00
}
/*
* constant: num | 'char'
* Note: constant() handles multi-byte constants
*/
static int
constant(int mayeval)
1994-05-27 12:33:43 +00:00
{
int i;
int value;
int c;
1994-05-27 12:33:43 +00:00
int v[sizeof(int)];
if (skipws() != '\'') {
ungetch();
return num(mayeval);
1994-05-27 12:33:43 +00:00
}
for (i = 0; i < (ssize_t)sizeof(int); i++) {
1994-05-27 12:33:43 +00:00
if ((c = getch()) == '\'') {
ungetch();
break;
}
if (c == '\\') {
switch (c = getch()) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
ungetch();
c = num(mayeval);
1994-05-27 12:33:43 +00:00
break;
case 'n':
c = 012;
break;
case 'r':
c = 015;
break;
case 't':
c = 011;
break;
case 'b':
c = 010;
break;
case 'f':
c = 014;
break;
}
}
v[i] = c;
}
if (i == 0 || getch() != '\'')
experr("illegal character constant");
for (value = 0; --i >= 0;) {
value <<= 8;
value += v[i];
}
return value;
}
/*
* num : digit | num digit
*/
static int
num(int mayeval __unused)
1994-05-27 12:33:43 +00:00
{
int rval, c, base;
1994-05-27 12:33:43 +00:00
int ndig;
rval = 0;
ndig = 0;
c = skipws();
if (c == '0') {
c = skipws();
if (c == 'x' || c == 'X') {
base = HEX;
c = skipws();
} else {
base = OCTAL;
ndig++;
}
} else
base = DECIMAL;
for(;;) {
switch(c) {
case '8': case '9':
2002-07-15 02:15:12 +00:00
if (base == OCTAL)
goto bad_digit;
/*FALLTHRU*/
2002-07-15 02:15:12 +00:00
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
rval *= base;
rval += c - '0';
break;
case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
c = tolower(c);
case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
if (base == HEX) {
rval *= base;
rval += c - 'a' + 10;
break;
}
/*FALLTHRU*/
default:
goto bad_digit;
}
1994-05-27 12:33:43 +00:00
c = getch();
ndig++;
}
bad_digit:
1994-05-27 12:33:43 +00:00
ungetch();
2002-07-15 02:15:12 +00:00
1994-05-27 12:33:43 +00:00
if (ndig == 0)
experr("bad constant");
2002-07-15 02:15:12 +00:00
1994-05-27 12:33:43 +00:00
return rval;
}
/*
* Skip over any white space and return terminating char.
*/
static int
skipws(void)
1994-05-27 12:33:43 +00:00
{
int c;
1994-05-27 12:33:43 +00:00
while ((c = getch()) <= ' ' && c > EOS)
;
return c;
}
/*
2002-07-15 02:15:12 +00:00
* resets environment to eval(), prints an error
1994-05-27 12:33:43 +00:00
* and forces eval to return FALSE.
*/
static void
experr(const char *msg)
1994-05-27 12:33:43 +00:00
{
printf("m4: %s in expr %s.\n", msg, where);
1994-05-27 12:33:43 +00:00
longjmp(expjump, -1);
}