Compare commits

...

2 Commits

Author SHA1 Message Date
Tibor Bizjak cf145e880b moved stack to 04-glob-stack.h
moved token definitons to 04-token.h
2023-07-10 17:48:07 +02:00
Tibor Bizjak 66433dd34d removed unecessary type argument in calc function macros 2023-07-09 22:21:49 +02:00
3 changed files with 146 additions and 123 deletions

View File

@ -1,10 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <assert.h>
#define MAX_STACK 100
#include "04-glob-stack.h"
#include "04-tokens.h"
/* --------- ERROR MESSAGES */
#define printerr(format, ...) printf("error: " format "\n", ##__VA_ARGS__)
@ -12,53 +14,19 @@
#define DOMAIN_ERR "operand not in domain [%d, %d]"
#define NEG_ERR "negative operand %g"
#define FULL_STACK_ERR "stack full, can't push %g"
#define EMPTY_STACK_ERR "stack empty"
#define SHORT_STACK_ERR "not enough elements on stack"
#define UNKNOWN_TOKEN_ERR "unknown token %s"
#define VAR_NOT_SET_ERR "variable %c has no value"
/* --------- PROMPT FORMATS */
#define PROMPT_F ">> "
#define POP_PRINT_F "pop -> %.8g\n"
#define PEEK_PRINT_F "peek -> %.8g\n"
#define PROMPT_F ">>> "
#define POP_PRINT_F "%.8g\n"
#define PEEK_PRINT_F "-> %.8g\n"
#define INITIAL_PROMPT_F \
"A simple calculator using polish notation.\n" \
"A simple polish notation calculator.\n" \
"Type 'help' for a list of available commands\n" \
PROMPT_F
/* ------ GLOBAL VALUE STACK */
#define MAXVAL 100 /* maximum depth of val stack */
int sp = 0;
double val[MAXVAL];
/* length: current length of stack */
#define length() sp
/* push: push f onto value stack */
#define push(x) \
((sp < MAXVAL) ? val[sp++] = x : printerr(FULL_STACK_ERR, (double) (x)))
/* pop: pop and return top value from stack */
double pop(void)
{
return sp ? val[--sp] : (printerr(EMPTY_STACK_ERR), 0);
}
/* peek: return top value from stack, leave stack unchanged */
#define peek() (sp ? val[sp-1] : (printerr(EMPTY_STACK_ERR), 0))
/* clear: clear stack */
#define clear() (sp = 0)
/* dup: duplicate top element */
#define dup() do { double tmp = peek(); push(tmp); } while (0)
/* swap: swap top two elements */
#define swap() \
do { if (sp < 2) printerr(SHORT_STACK_ERR); else { \
double tmp = peek(); \
val[sp-1] = val[sp-2], val[sp-2] = tmp; \
} \
} while (0)
/* -------- STACK PRINTING FUNCTIONS */
double lst_print;
/* print_peek: print top element, leave stack unchanged */
@ -103,90 +71,6 @@ void print_vars(void)
printf("%c = %.8g\n", i+'a', var_vals[i]);
}
/* --------- CALCULATOR FUNCTION TYPES */
/* the following macros allow us to call native c constructs
* in a declarative style */
/* value */
#define VALUE(ID) push(ID)
/* command */
#define COMMAND(CMD) CMD()
/* commutative operator */
#define COMM_OP(OP) push(pop() OP pop())
/* non-commutative operator */
#define NONC_OP(OP, T, ...) \
do { T op = pop(); __VA_ARGS__ push(((T) pop()) OP op); } while (0)
/* unary function */
#define UNARY_FUN(F) push(F(pop()))
/* unary function with tests */
#define UNARY_T_FUN(F, T, ...) \
do { double op = pop(); __VA_ARGS__ push(F(op)); } while (0)
/* commutative function */
#define COMM_FUN(F) push(F(pop(), pop()))
/* non-commutative function */
#define NONC_FUN(F, T, ...) \
do { T op = pop(); __VA_ARGS__ push(F(pop(), op)); } while (0)
/* nonzero operand */
#define NONZ_SND_OP if (!op) printerr(ZERODIV_ERR); else
/* operator in range */
#define IN_RANGE(A, B) if (op < A || op > B) printerr(DOMAIN_ERR, A, B); else
/* non-negative operand */
#define NON_NEG if (op < 0) printerr(NEG_ERR, op); else
/* --------- CALCULATOR FUNCTIONS */
/* renaming macro */
#define CALL(TOKEN, F, APPLY, ...) APPLY(F, ##__VA_ARGS__)
#define COMMANDS \
X(_, "last printed value", CALL, lst_print, VALUE) \
X(ENTER, "pop top of stack and print it", CALL, print_pop, COMMAND) \
X(print, "print top of stack", CALL, print_peek, COMMAND) \
X(dup, "duplicate top of stack", COMMAND) \
X(swap, "swap top two elements of stack", COMMAND) \
X(clear, "clear stack", COMMAND) \
X(help, "print all available commands", COMMAND) \
X(vars, "print defined variables and their values", CALL, print_vars, COMMAND)
#define OPERATORS \
X(+, "add operands", COMM_OP) \
X(*, "multiply operands", COMM_OP) \
X(-, "substact operands", NONC_OP, double) \
X(/, "divide operands", NONC_OP, double, NONZ_SND_OP) \
X(%, "modulo operands", NONC_OP, int, NONZ_SND_OP) \
X(>, "greater than", NONC_OP, double) \
X(<, "less than", NONC_OP, double) \
X(<=, "less than or equal", NONC_OP, double) \
X(>=, "greater than or equal", NONC_OP, double) \
X(==, "test equality", COMM_OP)
#define MATH_H_BINDINGS \
X(sin, "sine", UNARY_FUN) \
X(cos, "cosine", UNARY_FUN) \
X(tan, "tangent", UNARY_FUN) \
X(acos, "arc cosine", UNARY_T_FUN, double, IN_RANGE(-1, 1)) \
X(asin, "arc sine", UNARY_T_FUN, double, IN_RANGE(-1, 1)) \
X(atan, "arc tangent", UNARY_FUN) \
X(exp, "exponentional function", UNARY_FUN) \
X(log, "natural logarithm", UNARY_T_FUN, double, NON_NEG) \
X(log10, "logarithm of base 10", UNARY_T_FUN, double, NON_NEG) \
X(log2, "logarithm of base 2", UNARY_T_FUN, double, NON_NEG) \
X(pow, "power function", NONC_FUN, double) \
X(sqrt, "square root", UNARY_T_FUN, double, NON_NEG) \
X(ceil, "round up value", UNARY_FUN) \
X(floor, "round down value", UNARY_FUN) \
X(round, "round to nearest", UNARY_FUN) \
X(abs, "absolute value", CALL, fabs, UNARY_FUN) \
X(max, "maximum value", CALL, fmax, COMM_FUN) \
X(min, "minimum value", CALL, fmin, COMM_FUN) \
X(pi, "value of pi", CALL, M_PI, VALUE)
#define TOKENS \
COMMANDS \
OPERATORS \
MATH_H_BINDINGS
/* variable manipulation tokens */
#define VAR_TOKENS \
X('=', "pop value top from stack and set %s to value", set_var) \

View File

@ -0,0 +1,47 @@
#ifndef STACK_H
#define STACK_H
#define printerr(format, ...) printf("error: " format, ##__VA_ARGS__)
#define EMPTY_STACK_ERR "stack empty"
#define SHORT_STACK_ERR "not enough elements on stack"
#ifndef MAX_STACK
#define MAX_STACK 100
#endif // MAX_STACK
static int sp = 0;
static double val[MAX_STACK];
/* length: current length of stack */
#define length() sp
/* push: push f onto value stack */
#define push(x) \
((sp < MAX_STACK) ? val[sp++] = x : printerr(FULL_STACK_ERR, (double) (x)))
/* pop: pop and return top value from stack */
double pop(void)
{
return sp ? val[--sp] : (printerr(EMPTY_STACK_ERR), 0);
}
/* peek: return top value from stack, leave stack unchanged */
#define peek() (sp ? val[sp-1] : (printerr(EMPTY_STACK_ERR), 0))
/* clear: clear stack */
#define clear() (sp = 0)
/* dup: duplicate top element */
#define dup() do { double tmp = peek(); push(tmp); } while (0)
/* swap: swap top two elements */
#define swap() \
do { if (sp < 2) printerr(SHORT_STACK_ERR); else { \
double tmp = peek(); \
val[sp-1] = val[sp-2], val[sp-2] = tmp; \
} \
} while (0)
#undef printerr
#endif // STACK_H

View File

@ -0,0 +1,92 @@
#ifndef TOKENS_H
#define TOKENS_H
#include <math.h>
/* --------- CALCULATOR FUNCTION TYPES */
/* the following macros allow us to call native c constructs
* in a declarative style */
/* value */
#define VALUE(ID) push(ID)
/* command */
#define COMMAND(CMD) CMD()
/* commutative operator */
#define COMM_OP(OP) push(pop() OP pop())
/* non-commutative operator */
#define NONC_OP(OP, ...) \
do { double op = pop(); __VA_ARGS__ push(pop() OP op); } while (0)
/* unary function */
#define UNARY_FUN(F) push(F(pop()))
/* unary function with tests */
#define UNARY_T_FUN(F, T, ...) \
do { double op = pop(); __VA_ARGS__ push(F(op)); } while (0)
/* commutative function */
#define COMM_FUN(F) push(F(pop(), pop()))
/* non-commutative function */
#define NONC_FUN(F, ...) \
do { double op = pop(); __VA_ARGS__ push(F(pop(), op)); } while (0)
/* OPERAND TESTS */
/* nonzero operand */
#define NONZ_SND_OP if (!op) printerr(ZERODIV_ERR); else
/* operator in range */
#define IN_RANGE(A, B) if (op < A || op > B) printerr(DOMAIN_ERR, A, B); else
/* non-negative operand */
#define NON_NEG if (op < 0) printerr(NEG_ERR, op); else
/* --------- CALCULATOR FUNCTIONS */
/* renaming macro */
#define CALL(TOKEN, F, APPLY, ...) APPLY(F, ##__VA_ARGS__)
#define COMMANDS \
X(_, "last printed value", CALL, lst_print, VALUE) \
X(ENTER, "pop top of stack and print it", CALL, print_pop, COMMAND) \
X(print, "print top of stack", CALL, print_peek, COMMAND) \
X(dup, "duplicate top of stack", COMMAND) \
X(swap, "swap top two elements of stack", COMMAND) \
X(clear, "clear stack", COMMAND) \
X(help, "print all available commands", COMMAND) \
X(vars, "print defined variables and their values", CALL, print_vars, COMMAND)
#define MOD(x, y) ((int) (x) % (int) (y))
#define OPERATORS \
X(+, "add operands", COMM_OP) \
X(*, "multiply operands", COMM_OP) \
X(-, "substact operands", NONC_OP) \
X(/, "divide operands", NONC_OP, NONZ_SND_OP) \
X(%, "apply modulo to operands", CALL, MOD, NONC_FUN, NONZ_SND_OP) \
X(>, "greater than", NONC_OP) \
X(<, "less than", NONC_OP) \
X(<=, "less than or equal", NONC_OP) \
X(>=, "greater than or equal", NONC_OP) \
X(==, "test equality", COMM_OP)
#define MATH_H_BINDINGS \
X(sin, "sine", UNARY_FUN) \
X(cos, "cosine", UNARY_FUN) \
X(tan, "tangent", UNARY_FUN) \
X(acos, "arc cosine", UNARY_T_FUN, IN_RANGE(-1, 1)) \
X(asin, "arc sine", UNARY_T_FUN, IN_RANGE(-1, 1)) \
X(atan, "arc tangent", UNARY_FUN) \
X(exp, "exponentional function", UNARY_FUN) \
X(log, "natural logarithm", UNARY_T_FUN, NON_NEG) \
X(log10, "logarithm of base 10", UNARY_T_FUN, NON_NEG) \
X(log2, "logarithm of base 2", UNARY_T_FUN, NON_NEG) \
X(pow, "power function", NONC_FUN) \
X(sqrt, "square root", UNARY_T_FUN, NON_NEG) \
X(ceil, "round up value", UNARY_FUN) \
X(floor, "round down value", UNARY_FUN) \
X(round, "round to nearest", UNARY_FUN) \
X(abs, "absolute value", CALL, fabs, UNARY_FUN) \
X(max, "maximum value", CALL, fmax, COMM_FUN) \
X(min, "minimum value", CALL, fmin, COMM_FUN) \
X(pi, "value of pi", CALL, M_PI, VALUE)
#define TOKENS \
COMMANDS \
OPERATORS \
MATH_H_BINDINGS
#endif // TOKENS_H