2002-02-15 10:33:48 +03:00
|
|
|
/* $NetBSD: db_expr.c,v 1.13 2002/02/15 07:33:50 simonb Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
/*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Mach Operating System
|
|
|
|
* Copyright (c) 1991,1990 Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
2002-02-15 10:33:48 +03:00
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
2002-02-15 10:33:48 +03:00
|
|
|
*
|
1999-04-13 00:38:17 +04:00
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
1993-03-21 12:45:37 +03:00
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
2002-02-15 10:33:48 +03:00
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Carnegie Mellon requests users of this software to return to
|
2002-02-15 10:33:48 +03:00
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
2002-02-15 10:33:48 +03:00
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*
|
|
|
|
* Author: David B. Golub, Carnegie Mellon University
|
|
|
|
* Date: 7/90
|
|
|
|
*/
|
1993-12-18 07:46:25 +03:00
|
|
|
|
2001-11-13 01:54:03 +03:00
|
|
|
#include <sys/cdefs.h>
|
2002-02-15 10:33:48 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: db_expr.c,v 1.13 2002/02/15 07:33:50 simonb Exp $");
|
2001-11-13 01:54:03 +03:00
|
|
|
|
1993-12-18 07:46:25 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <machine/db_machdep.h>
|
1993-12-18 07:46:25 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <ddb/db_access.h>
|
|
|
|
#include <ddb/db_command.h>
|
1996-02-05 04:56:47 +03:00
|
|
|
#include <ddb/db_extern.h>
|
2002-02-15 10:33:48 +03:00
|
|
|
#include <ddb/db_lex.h>
|
|
|
|
#include <ddb/db_output.h>
|
|
|
|
#include <ddb/db_sym.h>
|
1996-02-05 04:56:47 +03:00
|
|
|
#include <ddb/db_variables.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
static boolean_t db_term(db_expr_t *);
|
|
|
|
static boolean_t db_unary(db_expr_t *);
|
|
|
|
static boolean_t db_mult_expr(db_expr_t *);
|
|
|
|
static boolean_t db_add_expr(db_expr_t *);
|
|
|
|
static boolean_t db_shift_expr(db_expr_t *);
|
|
|
|
|
|
|
|
static boolean_t
|
|
|
|
db_term(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int t;
|
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tIDENT) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_value_of_name(db_tok_string, valuep)) {
|
|
|
|
db_expr_t v = 0;
|
|
|
|
int i, c, byte;
|
|
|
|
|
|
|
|
/* See if we can make a number out of all of it */
|
|
|
|
for (i = 0; (c = db_tok_string[i]) != '\0'; i++) {
|
|
|
|
byte = 0;
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
byte = c - '0';
|
|
|
|
else if (db_radix == 16 && c >= 'a' && c <= 'f')
|
|
|
|
byte = c - 'a' + 10;
|
|
|
|
else if (db_radix == 16 && c >= 'A' && c <= 'F')
|
|
|
|
byte = c - 'A' + 10;
|
|
|
|
else
|
|
|
|
db_error("Symbol not found\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
v = v * db_radix + byte;
|
|
|
|
}
|
|
|
|
*valuep = (db_expr_t)v;
|
2000-07-09 01:35:32 +04:00
|
|
|
}
|
2002-02-15 10:33:48 +03:00
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tNUMBER) {
|
2002-02-15 10:33:48 +03:00
|
|
|
*valuep = (db_expr_t)db_tok_number;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tDOT) {
|
2002-02-15 10:33:48 +03:00
|
|
|
*valuep = (db_expr_t)db_dot;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tDOTDOT) {
|
2002-02-15 10:33:48 +03:00
|
|
|
*valuep = (db_expr_t)db_prev;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tPLUS) {
|
2002-02-15 10:33:48 +03:00
|
|
|
*valuep = (db_expr_t) db_next;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tDITTO) {
|
2002-02-15 10:33:48 +03:00
|
|
|
*valuep = (db_expr_t)db_last_addr;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tDOLLAR) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_get_variable(valuep))
|
|
|
|
return (FALSE);
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tLPAREN) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_expression(valuep)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
t = db_read_token();
|
|
|
|
if (t != tRPAREN) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
static boolean_t
|
|
|
|
db_unary(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
int t;
|
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tMINUS) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_unary(valuep)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
*valuep = -*valuep;
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (t == tSTAR) {
|
2002-02-15 10:33:48 +03:00
|
|
|
/* indirection */
|
|
|
|
if (!db_unary(valuep)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
*valuep = db_get_value((db_addr_t)*valuep, sizeof(db_expr_t),
|
|
|
|
FALSE);
|
|
|
|
return (TRUE);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
return (db_term(valuep));
|
|
|
|
}
|
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
static boolean_t
|
|
|
|
db_mult_expr(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
db_expr_t lhs, rhs;
|
|
|
|
int t;
|
|
|
|
|
|
|
|
if (!db_unary(&lhs))
|
2002-02-15 10:33:48 +03:00
|
|
|
return (FALSE);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
while (t == tSTAR || t == tSLASH || t == tPCT || t == tHASH) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_term(&rhs)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2002-02-15 10:33:48 +03:00
|
|
|
if (t == tSTAR)
|
|
|
|
lhs *= rhs;
|
|
|
|
else {
|
|
|
|
if (rhs == 0) {
|
|
|
|
db_error("Divide by 0\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
if (t == tSLASH)
|
|
|
|
lhs /= rhs;
|
|
|
|
else if (t == tPCT)
|
|
|
|
lhs %= rhs;
|
|
|
|
else
|
|
|
|
lhs = ((lhs+rhs-1)/rhs)*rhs;
|
|
|
|
}
|
|
|
|
t = db_read_token();
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
*valuep = lhs;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
static boolean_t
|
|
|
|
db_add_expr(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
db_expr_t lhs, rhs;
|
|
|
|
int t;
|
|
|
|
|
|
|
|
if (!db_mult_expr(&lhs))
|
2002-02-15 10:33:48 +03:00
|
|
|
return (FALSE);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
while (t == tPLUS || t == tMINUS) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_mult_expr(&rhs)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
if (t == tPLUS)
|
|
|
|
lhs += rhs;
|
|
|
|
else
|
|
|
|
lhs -= rhs;
|
|
|
|
t = db_read_token();
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
*valuep = lhs;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
2002-02-15 10:33:48 +03:00
|
|
|
static boolean_t
|
|
|
|
db_shift_expr(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
db_expr_t lhs, rhs;
|
|
|
|
int t;
|
|
|
|
|
|
|
|
if (!db_add_expr(&lhs))
|
2002-02-15 10:33:48 +03:00
|
|
|
return (FALSE);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
while (t == tSHIFT_L || t == tSHIFT_R) {
|
2002-02-15 10:33:48 +03:00
|
|
|
if (!db_add_expr(&rhs)) {
|
|
|
|
db_error("Syntax error\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
if (rhs < 0) {
|
|
|
|
db_error("Negative shift amount\n");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
if (t == tSHIFT_L)
|
|
|
|
lhs <<= rhs;
|
|
|
|
else {
|
|
|
|
/* Shift right is unsigned */
|
|
|
|
lhs = (unsigned long) lhs >> rhs;
|
|
|
|
}
|
|
|
|
t = db_read_token();
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
*valuep = lhs;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-02-15 10:33:48 +03:00
|
|
|
db_expression(db_expr_t *valuep)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2002-02-15 10:33:48 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
return (db_shift_expr(valuep));
|
|
|
|
}
|