/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Relational, boolean, and bit operators */ #include "ghost.h" #include "oper.h" #include "gsutil.h" #include "idict.h" #include "store.h" #include "gsstate.h" /* * Many of the procedures in this file are public only so they can be * called from the FunctionType 4 interpreter (zfunc4.c). */ /* ------ Standard operators ------ */ /* Define the type test for eq and its relatives. */ #define EQ_CHECK_READ(opp, dflt)\ switch ( r_type(opp) ) {\ case t_string:\ check_read(*(opp));\ break;\ default:\ dflt;\ } /* Forward references */ static int obj_le(os_ptr, os_ptr); /* eq */ int zeq(i_ctx_t *i_ctx_p) { os_ptr op = osp; EQ_CHECK_READ(op - 1, check_op(2)); EQ_CHECK_READ(op, DO_NOTHING); make_bool(op - 1, (obj_eq(imemory, op - 1, op) ? 1 : 0)); pop(1); return 0; } /* ne */ int zne(i_ctx_t *i_ctx_p) { /* We'll just be lazy and use eq. */ int code = zeq(i_ctx_p); if (!code) osp->value.boolval ^= 1; return code; } /* ge */ /* ge */ int zge(i_ctx_t *i_ctx_p) { os_ptr op = osp; 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(i_ctx_t *i_ctx_p) { os_ptr op = osp; 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(i_ctx_t *i_ctx_p) { os_ptr op = osp; 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(i_ctx_t *i_ctx_p) { os_ptr op = osp; int code = obj_le(op, op - 1); if (code < 0) return code; make_bool(op - 1, code ^ 1); pop(1); return 0; } /* .max */ /* .max */ static int zmax(i_ctx_t *i_ctx_p) { os_ptr op = osp; 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 */ static int zmin(i_ctx_t *i_ctx_p) { os_ptr op = osp; 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(i_ctx_t *i_ctx_p) { os_ptr op = osp; switch (r_type(op)) { case t_boolean: check_type(op[-1], t_boolean); op[-1].value.boolval &= op->value.boolval; break; case t_integer: check_type(op[-1], t_integer); op[-1].value.intval &= op->value.intval; break; default: return_op_typecheck(op); } pop(1); return 0; } /* not */ /* not */ int znot(i_ctx_t *i_ctx_p) { os_ptr op = osp; switch (r_type(op)) { case t_boolean: op->value.boolval = !op->value.boolval; break; case t_integer: op->value.intval = ~op->value.intval; break; default: return_op_typecheck(op); } return 0; } /* or */ /* or */ int zor(i_ctx_t *i_ctx_p) { os_ptr op = osp; switch (r_type(op)) { case t_boolean: check_type(op[-1], t_boolean); op[-1].value.boolval |= op->value.boolval; break; case t_integer: check_type(op[-1], t_integer); op[-1].value.intval |= op->value.intval; break; default: return_op_typecheck(op); } pop(1); return 0; } /* xor */ /* xor */ int zxor(i_ctx_t *i_ctx_p) { os_ptr op = osp; switch (r_type(op)) { case t_boolean: check_type(op[-1], t_boolean); op[-1].value.boolval ^= op->value.boolval; break; case t_integer: check_type(op[-1], t_integer); op[-1].value.intval ^= op->value.intval; break; default: return_op_typecheck(op); } pop(1); return 0; } /* bitshift */ int zbitshift(i_ctx_t *i_ctx_p) { os_ptr op = osp; int shift; short max_shift = (sizeof(ps_int) * 8) - 1; short max_shift32 = (sizeof(ps_int32) * 8) - 1; check_type(*op, t_integer); check_type(op[-1], t_integer); if ((op->value.intval < -max_shift) || (op->value.intval > max_shift)) op[-1].value.intval = 0; else if (sizeof(ps_int) != 4 && gs_currentcpsimode(imemory) && (op->value.intval < -max_shift32 || op->value.intval > max_shift32)) op[-1].value.intval = 0; else if ((shift = op->value.intval) < 0) { if (sizeof(ps_int) != 4 && gs_currentcpsimode(imemory)) { ps_int32 val = (ps_int32)(op[-1].value.intval); op[-1].value.intval = (ps_int)((uint)(val)) >> -shift; } else { op[-1].value.intval = ((ps_int)(op[-1].value.intval)) >> -shift; } } else { if (sizeof(ps_int) != 4 && gs_currentcpsimode(imemory)) { ps_int32 val = (ps_int32)(op[-1].value.intval); op[-1].value.intval = (ps_int)(val << shift); } else op[-1].value.intval <<= shift; } pop(1); return 0; } /* ------ Extensions ------ */ /* .identeq */ static int zidenteq(i_ctx_t *i_ctx_p) { os_ptr op = osp; EQ_CHECK_READ(op - 1, check_op(2)); EQ_CHECK_READ(op, DO_NOTHING); make_bool(op - 1, (obj_ident_eq(imemory, op - 1, op) ? 1 : 0)); pop(1); return 0; } /* .identne */ static int zidentne(i_ctx_t *i_ctx_p) { /* We'll just be lazy and use .identeq. */ int code = zidenteq(i_ctx_p); if (!code) osp->value.boolval ^= 1; return code; } /* ------ Initialization procedure ------ */ const op_def zrelbit_op_defs[] = { {"2and", zand}, {"2bitshift", zbitshift}, {"2eq", zeq}, {"2ge", zge}, {"2gt", zgt}, {"2le", zle}, {"2lt", zlt}, {"2.max", zmax}, {"2.min", zmin}, {"2ne", zne}, {"1not", znot}, {"2or", zor}, {"2xor", zxor}, /* Extensions */ {"2.identeq", zidenteq}, {"2.identne", zidentne}, 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. */ static 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 (op1->value.intval <= op->value.intval); case t_real: return ((double)op1->value.intval <= op->value.realval); default: return_op_typecheck(op); } case t_real: switch (r_type(op)) { case t_real: return (op1->value.realval <= op->value.realval); case t_integer: return (op1->value.realval <= (double)op->value.intval); default: return_op_typecheck(op); } 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); default: return_op_typecheck(op1); } }