/* Copyright (C) 1989, 1990, 1991, 1993 Aladdin Enterprises. All rights reserved. This file is part of Ghostscript. Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to the Ghostscript General Public License for full details. Everyone is granted permission to copy, modify and redistribute Ghostscript, but only under the conditions described in the Ghostscript General Public License. A copy of this license is supposed to have been given to you along with Ghostscript so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. */ /* zrelbit.c */ /* Relational, boolean, and bit operators for Ghostscript */ #include "ghost.h" #include "errors.h" #include "oper.h" #include "dict.h" #include "store.h" /* Forward references */ int obj_le(P2(os_ptr, os_ptr)); /* eq */ int zeq(register os_ptr op) { register os_ptr op1 = op - 1; #define eq_check_read(opp, dflt)\ switch ( r_type(opp) )\ { case t_string: case t_array: case t_mixedarray: case t_shortarray:\ check_read(*opp); break;\ case t_dictionary: check_dict_read(*opp); break;\ default: dflt; break;\ } eq_check_read(op1, check_op(2)); eq_check_read(op, 0); make_bool(op1, (obj_eq(op1, op) ? 1 : 0)); pop(1); return 0; } /* ne */ int zne(register os_ptr op) { /* We'll just be lazy and use eq. */ int code = zeq(op); if ( !code ) op[-1].value.index ^= 1; return code; } /* ge */ /* ge */ int zge(register os_ptr op) { int code = obj_le(op, op - 1); if ( code < 0 ) return code; make_bool(op - 1, code); pop(1); return 0; } /* gt */ /* gt */ int zgt(register os_ptr op) { int code = obj_le(op - 1, op); if ( code < 0 ) return code; make_bool(op - 1, code ^ 1); pop(1); return 0; } /* le */ /* le */ int zle(register os_ptr op) { int code = obj_le(op - 1, op); if ( code < 0 ) return code; make_bool(op - 1, code); pop(1); return 0; } /* lt */ /* lt */ int zlt(register os_ptr op) { int code = obj_le(op, op - 1); if ( code < 0 ) return code; make_bool(op - 1, code ^ 1); pop(1); return 0; } /* max */ /* max */ int zmax(register os_ptr op) { int code = obj_le(op - 1, op); if ( code < 0 ) return code; if ( code ) { ref_assign(op - 1, op); } pop(1); return 0; } /* min */ /* min */ int zmin(register os_ptr op) { int code = obj_le(op - 1, op); if ( code < 0 ) return code; if ( !code ) { ref_assign(op - 1, op); } pop(1); return 0; } /* and */ /* and */ int zand(register os_ptr op) { check_type(op[-1], r_type(op)); switch ( r_type(op) ) { case t_boolean: op[-1].value.index &= op->value.index; break; case t_integer: op[-1].value.intval &= op->value.intval; break; default: return_error(e_typecheck); } pop(1); return 0; } /* not */ /* not */ int znot(register os_ptr op) { switch ( r_type(op) ) { case t_boolean: op->value.index = !op->value.index; break; case t_integer: op->value.intval = ~op->value.intval; break; default: return_error(e_typecheck); } return 0; } /* or */ /* or */ int zor(register os_ptr op) { check_type(op[-1], r_type(op)); switch ( r_type(op) ) { case t_boolean: op[-1].value.index |= op->value.index; break; case t_integer: op[-1].value.intval |= op->value.intval; break; default: return_error(e_typecheck); } pop(1); return 0; } /* xor */ /* xor */ int zxor(register os_ptr op) { check_type(op[-1], r_type(op)); switch ( r_type(op) ) { case t_boolean: op[-1].value.index ^= op->value.index; break; case t_integer: op[-1].value.intval ^= op->value.intval; break; default: return_error(e_typecheck); } pop(1); return 0; } /* bitshift */ int zbitshift(register os_ptr op) { int shift; check_type(op[-1], t_integer); check_type(*op, t_integer); if ( op->value.intval < -31 || op->value.intval > 31 ) op[-1].value.intval = 0; else if ( (shift = op->value.intval) < 0 ) op[-1].value.intval = ((ulong)(op[-1].value.intval)) >> -shift; else op[-1].value.intval <<= shift; pop(1); return 0; } /* ------ Initialization procedure ------ */ op_def zrelbit_op_defs[] = { {"2and", zand}, {"2bitshift", zbitshift}, {"2eq", zeq}, {"2ge", zge}, {"2gt", zgt}, {"2le", zle}, {"2lt", zlt}, {"2max", zmax}, {"2min", zmin}, {"2ne", zne}, {"1not", znot}, {"2or", zor}, {"2xor", zxor}, op_def_end(0) }; /* ------ Internal routines ------ */ /* Compare two operands (both numeric, or both strings). */ /* Return 1 if op[-1] <= op[0], 0 if op[-1] > op[0], */ /* or a (negative) error code. */ #define bcval(v1, rel, v2) (op1->value.v1 rel op->value.v2 ? 1 : 0) int obj_le(register os_ptr op1, register os_ptr op) { switch ( r_type(op1) ) { case t_integer: switch ( r_type(op) ) { case t_integer: return bcval(intval, <=, intval); case t_real: return bcval(intval, <=, realval); default: return_error(e_typecheck); } case t_real: switch ( r_type(op) ) { case t_real: return bcval(realval, <=, realval); case t_integer: return bcval(realval, <=, intval); default: return_error(e_typecheck); } case t_string: check_read(*op1); check_read_type(*op, t_string); return (bytes_compare(op1->value.bytes, r_size(op1), op->value.bytes, r_size(op)) <= 0 ? 1 : 0); default: return_error(e_typecheck); } }