2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
pr_exec.c
|
|
|
|
|
|
|
|
(description)
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
"$Id$";
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2002-11-13 19:26:44 +00:00
|
|
|
#include <signal.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/cvar.h"
|
2002-09-14 07:51:53 +00:00
|
|
|
#include "QF/dstring.h"
|
2001-09-11 05:18:15 +00:00
|
|
|
#include "QF/mathlib.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/progs.h"
|
|
|
|
#include "QF/sys.h"
|
2001-06-03 17:36:49 +00:00
|
|
|
#include "QF/zone.h"
|
|
|
|
|
|
|
|
#include "compat.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-13 20:29:33 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
PR_RunError
|
|
|
|
|
|
|
|
Aborts the currently executing function
|
|
|
|
*/
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-07-15 07:04:17 +00:00
|
|
|
PR_RunError (progs_t * pr, const char *error, ...)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-10-23 20:42:02 +00:00
|
|
|
dstring_t *string = dstring_new ();
|
|
|
|
va_list argptr;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
va_start (argptr, error);
|
2002-10-23 20:42:02 +00:00
|
|
|
dvsprintf (string, error, argptr);
|
2001-02-19 21:15:25 +00:00
|
|
|
va_end (argptr);
|
|
|
|
|
2001-10-08 03:46:44 +00:00
|
|
|
PR_DumpState (pr);
|
|
|
|
|
2002-10-23 20:42:02 +00:00
|
|
|
Sys_Printf ("%s\n", string->str);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-10-08 03:46:44 +00:00
|
|
|
// dump the stack so PR_Error can shutdown functions
|
|
|
|
pr->pr_depth = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-10-23 20:42:02 +00:00
|
|
|
PR_Error (pr, "Program error: %s", string->str);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE inline void
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_PushFrame (progs_t *pr)
|
|
|
|
{
|
|
|
|
prstack_t *frame;
|
|
|
|
|
|
|
|
if (pr->pr_depth == MAX_STACK_DEPTH)
|
|
|
|
PR_RunError (pr, "stack overflow");
|
|
|
|
|
|
|
|
frame = pr->pr_stack + pr->pr_depth++;
|
|
|
|
|
|
|
|
frame->s = pr->pr_xstatement;
|
|
|
|
frame->f = pr->pr_xfunction;
|
|
|
|
frame->tstr = pr->pr_xtstr;
|
|
|
|
|
|
|
|
pr->pr_xtstr = 0;
|
|
|
|
pr->pr_xfunction = 0;
|
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE inline void
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_PopFrame (progs_t *pr)
|
|
|
|
{
|
|
|
|
prstack_t *frame;
|
|
|
|
|
|
|
|
if (pr->pr_depth <= 0)
|
|
|
|
PR_Error (pr, "prog stack underflow");
|
|
|
|
|
|
|
|
if (pr->pr_xtstr)
|
|
|
|
PR_FreeTempStrings (pr);
|
|
|
|
|
|
|
|
// up stack
|
|
|
|
frame = pr->pr_stack + --pr->pr_depth;
|
|
|
|
|
|
|
|
pr->pr_xfunction = frame->f;
|
|
|
|
pr->pr_xstatement = frame->s;
|
|
|
|
pr->pr_xtstr = frame->tstr;
|
|
|
|
}
|
|
|
|
|
2004-11-07 03:00:00 +00:00
|
|
|
/** Setup the stackframe prior to calling a progs function. Saves all local
|
|
|
|
data the called function will trample on and copies the parameters used
|
|
|
|
by the function into the function's local data space.
|
|
|
|
\param pr pointer to progs_t VM struct
|
|
|
|
\param f pointer to the descriptor for the called function
|
|
|
|
\note Passing a descriptor for a builtin function will result in
|
|
|
|
undefined behavior.
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2004-11-07 03:00:00 +00:00
|
|
|
static void
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_EnterFunction (progs_t *pr, dfunction_t *f)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-09-10 12:56:23 +00:00
|
|
|
int i, j, c, o;
|
2001-09-23 00:36:21 +00:00
|
|
|
int k;
|
2005-06-14 13:40:34 +00:00
|
|
|
int count = 0;
|
|
|
|
int size[2] = {0, 0};
|
|
|
|
long paramofs = 0;
|
|
|
|
long offs;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_PushFrame (pr);
|
|
|
|
|
2005-06-14 13:40:34 +00:00
|
|
|
if (f->numparms > 0) {
|
|
|
|
for (i = 0; i < 2 && i < f->numparms; i++) {
|
|
|
|
paramofs += f->parm_size[i];
|
|
|
|
size[i] = f->parm_size[i];
|
|
|
|
}
|
|
|
|
count = i;
|
|
|
|
} else if (f->numparms < 0) {
|
|
|
|
for (i = 0; i < 2 && i < -f->numparms - 1; i++) {
|
|
|
|
paramofs += f->parm_size[i];
|
|
|
|
size[i] = f->parm_size[i];
|
|
|
|
}
|
|
|
|
for (; i < 2; i++) {
|
|
|
|
paramofs += pr->pr_param_size;
|
|
|
|
size[i] = pr->pr_param_size;
|
|
|
|
}
|
|
|
|
count = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count && i < pr->pr_argc; i++) {
|
|
|
|
offs = (pr->pr_params[i] - pr->pr_globals) - f->parm_start;
|
|
|
|
if (offs >= 0 && offs < paramofs) {
|
|
|
|
memcpy (pr->pr_real_params[i], pr->pr_params[i],
|
|
|
|
size[i] * sizeof (pr_type_t));
|
|
|
|
pr->pr_params[i] = pr->pr_real_params[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-18 16:42:14 +00:00
|
|
|
//Sys_Printf("%s:\n", PR_GetString(pr,f->s_name));
|
2004-01-05 07:10:32 +00:00
|
|
|
pr->pr_xfunction = f;
|
|
|
|
pr->pr_xstatement = f->first_statement - 1; // offset the st++
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-05 23:57:51 +00:00
|
|
|
// save off any locals that the new function steps on
|
2001-02-19 21:15:25 +00:00
|
|
|
c = f->locals;
|
|
|
|
if (pr->localstack_used + c > LOCALSTACK_SIZE)
|
2002-05-21 21:14:32 +00:00
|
|
|
PR_RunError (pr, "PR_EnterFunction: locals stack overflow");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-06-05 23:57:51 +00:00
|
|
|
memcpy (&pr->localstack[pr->localstack_used],
|
|
|
|
&pr->pr_globals[f->parm_start],
|
|
|
|
sizeof (pr_type_t) * c);
|
2001-02-19 21:15:25 +00:00
|
|
|
pr->localstack_used += c;
|
|
|
|
|
2001-09-23 00:36:21 +00:00
|
|
|
if (pr_deadbeef_locals->int_val)
|
|
|
|
for (k = f->parm_start; k < f->parm_start + c; k++)
|
|
|
|
pr->pr_globals[k].integer_var = 0xdeadbeef;
|
2001-08-13 20:29:33 +00:00
|
|
|
|
2001-09-10 12:56:23 +00:00
|
|
|
// copy parameters
|
2001-02-19 21:15:25 +00:00
|
|
|
o = f->parm_start;
|
2002-05-22 20:43:29 +00:00
|
|
|
if (f->numparms >= 0) {
|
|
|
|
for (i = 0; i < f->numparms; i++) {
|
|
|
|
for (j = 0; j < f->parm_size[i]; j++) {
|
2003-04-22 18:20:15 +00:00
|
|
|
memcpy (&pr->pr_globals[o], &P_INT (pr, i) + j,
|
2002-05-22 20:43:29 +00:00
|
|
|
sizeof (pr_type_t));
|
|
|
|
o++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pr_type_t *argc = &pr->pr_globals[o++];
|
|
|
|
pr_type_t *argv = &pr->pr_globals[o++];
|
|
|
|
for (i = 0; i < -f->numparms - 1; i++) {
|
|
|
|
for (j = 0; j < f->parm_size[i]; j++) {
|
2003-04-22 18:20:15 +00:00
|
|
|
memcpy (&pr->pr_globals[o], &P_INT (pr, i) + j,
|
2002-05-22 20:43:29 +00:00
|
|
|
sizeof (pr_type_t));
|
|
|
|
o++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc->integer_var = pr->pr_argc - i;
|
|
|
|
argv->integer_var = o;
|
2003-04-22 20:11:16 +00:00
|
|
|
if (i < MAX_PARMS) {
|
|
|
|
memcpy (&pr->pr_globals[o], &P_INT (pr, i),
|
|
|
|
(MAX_PARMS - i) * pr->pr_param_size * sizeof (pr_type_t));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_LeaveFunction (progs_t *pr)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-09-10 12:56:23 +00:00
|
|
|
int c;
|
2004-01-05 07:10:32 +00:00
|
|
|
dfunction_t *f = pr->pr_xfunction;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-01-05 07:10:32 +00:00
|
|
|
PR_PopFrame (pr);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-10 12:56:23 +00:00
|
|
|
// restore locals from the stack
|
2004-01-05 07:10:32 +00:00
|
|
|
c = f->locals;
|
2001-02-19 21:15:25 +00:00
|
|
|
pr->localstack_used -= c;
|
|
|
|
if (pr->localstack_used < 0)
|
2002-05-21 21:14:32 +00:00
|
|
|
PR_RunError (pr, "PR_LeaveFunction: locals stack underflow");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2004-01-05 07:10:32 +00:00
|
|
|
memcpy (&pr->pr_globals[f->parm_start],
|
|
|
|
&pr->localstack[pr->localstack_used], sizeof (pr_type_t) * c);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2002-06-07 19:41:13 +00:00
|
|
|
#define OPA (*op_a)
|
|
|
|
#define OPB (*op_b)
|
|
|
|
#define OPC (*op_c)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-11-19 17:51:31 +00:00
|
|
|
/*
|
|
|
|
This gets around the problem of needing to test for -0.0 but denormals
|
|
|
|
causing exceptions (or wrong results for what we need) on the alpha.
|
|
|
|
*/
|
2003-04-17 00:01:48 +00:00
|
|
|
#define FNZ(x) ((x).uinteger_var && (x).uinteger_var != 0x80000000u)
|
2001-11-19 17:51:31 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-11-13 19:26:44 +00:00
|
|
|
static int
|
|
|
|
signal_hook (int sig, void *data)
|
|
|
|
{
|
|
|
|
progs_t *pr = (progs_t *) data;
|
|
|
|
|
|
|
|
if (sig == SIGFPE && pr_faultchecks->int_val) {
|
|
|
|
dstatement_t *st;
|
|
|
|
pr_type_t *op_a, *op_b, *op_c;
|
|
|
|
|
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
op_a = pr->pr_globals + st->a;
|
|
|
|
op_b = pr->pr_globals + st->b;
|
|
|
|
op_c = pr->pr_globals + st->c;
|
|
|
|
|
|
|
|
switch (st->op) {
|
|
|
|
case OP_DIV_F:
|
|
|
|
if ((OPA.integer_var & 0x80000000)
|
|
|
|
^ (OPB.integer_var & 0x80000000))
|
|
|
|
OPC.integer_var = 0xff7fffff;
|
|
|
|
else
|
|
|
|
OPC.integer_var = 0x7f7fffff;
|
|
|
|
return 1;
|
|
|
|
case OP_DIV_I:
|
|
|
|
if (OPA.integer_var & 0x80000000)
|
|
|
|
OPC.integer_var = -0x80000000;
|
|
|
|
else
|
|
|
|
OPC.integer_var = 0x7fffffff;
|
|
|
|
return 1;
|
2004-02-20 00:25:08 +00:00
|
|
|
case OP_MOD_I:
|
|
|
|
case OP_MOD_U:
|
|
|
|
case OP_MOD_F:
|
|
|
|
OPC.integer_var = 0x00000000;
|
|
|
|
return 1;
|
2002-11-13 19:26:44 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PR_DumpState (pr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE int
|
2004-11-07 03:00:00 +00:00
|
|
|
PR_CallFunction (progs_t *pr, func_t fnum)
|
|
|
|
{
|
|
|
|
dfunction_t *f;
|
|
|
|
|
|
|
|
if (!fnum)
|
|
|
|
PR_RunError (pr, "NULL function");
|
|
|
|
f = pr->pr_functions + fnum;
|
|
|
|
if (f->first_statement < 0) {
|
|
|
|
// negative statements are built in functions
|
|
|
|
((bfunction_t *) f)->func (pr);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
PR_EnterFunction (pr, f);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-10 12:56:23 +00:00
|
|
|
/*
|
|
|
|
PR_ExecuteProgram
|
|
|
|
|
|
|
|
The interpretation main loop
|
|
|
|
*/
|
2007-03-10 12:00:59 +00:00
|
|
|
VISIBLE void
|
2001-02-27 08:21:40 +00:00
|
|
|
PR_ExecuteProgram (progs_t * pr, func_t fnum)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-09-10 12:56:23 +00:00
|
|
|
int exitdepth, profile, startprofile;
|
2003-04-17 00:01:48 +00:00
|
|
|
unsigned int pointer;
|
2001-09-10 12:56:23 +00:00
|
|
|
dstatement_t *st;
|
|
|
|
edict_t *ed;
|
|
|
|
pr_type_t *ptr;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-09-10 12:56:23 +00:00
|
|
|
// make a stack frame
|
2001-02-19 21:15:25 +00:00
|
|
|
exitdepth = pr->pr_depth;
|
|
|
|
startprofile = profile = 0;
|
|
|
|
|
2002-08-20 23:04:57 +00:00
|
|
|
Sys_PushSignalHook (signal_hook, pr);
|
|
|
|
|
2004-11-07 03:00:00 +00:00
|
|
|
if (!PR_CallFunction (pr, fnum)) {
|
|
|
|
// called a builtin instead of progs code
|
|
|
|
Sys_PopSignalHook ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
while (1) {
|
2002-06-07 19:41:13 +00:00
|
|
|
pr_type_t *op_a, *op_b, *op_c;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
st++;
|
2002-10-22 15:07:54 +00:00
|
|
|
++pr->pr_xstatement;
|
|
|
|
if (pr->pr_xstatement != st - pr->pr_statements)
|
|
|
|
PR_RunError (pr, "internal error");
|
2001-12-14 08:15:04 +00:00
|
|
|
if (++profile > 1000000 && !pr->no_exec_limit) {
|
2001-02-19 21:15:25 +00:00
|
|
|
PR_RunError (pr, "runaway loop error");
|
|
|
|
}
|
|
|
|
|
2002-06-07 19:41:13 +00:00
|
|
|
op_a = pr->pr_globals + st->a;
|
|
|
|
op_b = pr->pr_globals + st->b;
|
|
|
|
op_c = pr->pr_globals + st->c;
|
|
|
|
|
2001-03-02 00:32:10 +00:00
|
|
|
if (pr->pr_trace)
|
2004-01-31 04:26:01 +00:00
|
|
|
PR_PrintStatement (pr, st, 1);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
switch (st->op) {
|
|
|
|
case OP_ADD_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var + OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_ADD_V:
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorAdd (OPA.vector_var, OPB.vector_var, OPC.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_ADD_Q:
|
|
|
|
QuatAdd (OPA.quat_var, OPB.quat_var, OPC.quat_var);
|
|
|
|
break;
|
2001-06-03 17:36:49 +00:00
|
|
|
case OP_ADD_S:
|
2004-11-02 04:59:00 +00:00
|
|
|
OPC.string_var = PR_CatStrings (pr,
|
|
|
|
PR_GetString (pr,
|
|
|
|
OPA.string_var),
|
|
|
|
PR_GetString (pr,
|
|
|
|
OPB.string_var));
|
2001-06-03 17:36:49 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_SUB_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var - OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_SUB_V:
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorSubtract (OPA.vector_var, OPB.vector_var, OPC.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_SUB_Q:
|
|
|
|
QuatSubtract (OPA.quat_var, OPB.quat_var, OPC.quat_var);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_MUL_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var * OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_MUL_V:
|
2001-11-02 22:41:11 +00:00
|
|
|
OPC.float_var = DotProduct (OPA.vector_var, OPB.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_MUL_FV:
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorScale (OPB.vector_var, OPA.float_var, OPC.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_MUL_VF:
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorScale (OPA.vector_var, OPB.float_var, OPC.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_MUL_Q:
|
|
|
|
QuatMult (OPA.quat_var, OPB.quat_var, OPC.quat_var);
|
|
|
|
break;
|
|
|
|
case OP_MUL_FQ:
|
|
|
|
QuatScale (OPB.quat_var, OPA.float_var, OPC.quat_var);
|
|
|
|
break;
|
|
|
|
case OP_MUL_QF:
|
|
|
|
QuatScale (OPA.quat_var, OPB.float_var, OPC.quat_var);
|
|
|
|
break;
|
2004-04-08 04:57:17 +00:00
|
|
|
case OP_CONJ_Q:
|
|
|
|
QuatConj (OPA.quat_var, OPC.quat_var);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_DIV_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var / OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_BITAND:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = (int) OPA.float_var & (int) OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_BITOR:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = (int) OPA.float_var | (int) OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-08-09 16:34:46 +00:00
|
|
|
case OP_BITXOR_F:
|
|
|
|
OPC.float_var = (int) OPA.float_var ^ (int) OPB.float_var;
|
|
|
|
break;
|
|
|
|
case OP_BITNOT_F:
|
|
|
|
OPC.float_var = ~ (int) OPA.float_var;
|
|
|
|
break;
|
2001-08-10 16:17:00 +00:00
|
|
|
case OP_SHL_F:
|
|
|
|
OPC.float_var = (int) OPA.float_var << (int) OPB.float_var;
|
|
|
|
break;
|
|
|
|
case OP_SHR_F:
|
|
|
|
OPC.float_var = (int) OPA.float_var >> (int) OPB.float_var;
|
|
|
|
break;
|
|
|
|
case OP_SHL_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_SHL_U:
|
2001-08-10 16:17:00 +00:00
|
|
|
OPC.integer_var = OPA.integer_var << OPB.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_SHR_I:
|
|
|
|
OPC.integer_var = OPA.integer_var >> OPB.integer_var;
|
|
|
|
break;
|
2003-08-01 21:20:04 +00:00
|
|
|
case OP_SHR_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var >> OPB.uinteger_var;
|
|
|
|
break;
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_GE_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var >= OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_LE_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var <= OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_GT_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var > OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_LT_F:
|
2001-06-07 21:59:24 +00:00
|
|
|
OPC.float_var = OPA.float_var < OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-07-22 19:58:17 +00:00
|
|
|
case OP_AND: // OPA and OPB have to be float for -0.0
|
2001-11-19 17:51:31 +00:00
|
|
|
OPC.integer_var = FNZ (OPA) && FNZ (OPB);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-12-14 08:15:04 +00:00
|
|
|
case OP_OR: // OPA and OPB have to be float for -0.0
|
2001-11-19 17:51:31 +00:00
|
|
|
OPC.integer_var = FNZ (OPA) || FNZ (OPB);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NOT_F:
|
2001-11-19 17:51:31 +00:00
|
|
|
OPC.integer_var = !FNZ (OPA);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NOT_V:
|
2001-09-11 05:18:15 +00:00
|
|
|
OPC.integer_var = VectorIsZero (OPA.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_NOT_Q:
|
|
|
|
OPC.integer_var = QuatIsZero (OPA.quat_var);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_NOT_S:
|
2001-09-10 12:56:23 +00:00
|
|
|
OPC.integer_var = !OPA.string_var ||
|
|
|
|
!*PR_GetString (pr, OPA.string_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_NOT_FN:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = !OPA.func_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NOT_ENT:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = !OPA.entity_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_EQ_F:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.float_var == OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_EQ_V:
|
2001-11-06 20:36:20 +00:00
|
|
|
OPC.integer_var = VectorCompare (OPA.vector_var,
|
|
|
|
OPB.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_EQ_Q:
|
|
|
|
OPC.integer_var = QuatCompare (OPA.quat_var, OPB.quat_var);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_EQ_E:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var == OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_EQ_FN:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.func_var == OPB.func_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NE_F:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.float_var != OPB.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NE_V:
|
2001-11-06 20:36:20 +00:00
|
|
|
OPC.integer_var = !VectorCompare (OPA.vector_var,
|
|
|
|
OPB.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_NE_Q:
|
|
|
|
OPC.integer_var = !QuatCompare (OPA.quat_var, OPB.quat_var);
|
|
|
|
break;
|
2001-06-04 03:36:35 +00:00
|
|
|
case OP_LE_S:
|
|
|
|
case OP_GE_S:
|
|
|
|
case OP_LT_S:
|
|
|
|
case OP_GT_S:
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_NE_S:
|
2001-06-04 03:36:35 +00:00
|
|
|
case OP_EQ_S:
|
|
|
|
{
|
2001-06-07 21:59:24 +00:00
|
|
|
int cmp = strcmp (PR_GetString (pr, OPA.string_var),
|
|
|
|
PR_GetString (pr, OPB.string_var));
|
2001-06-04 03:36:35 +00:00
|
|
|
switch (st->op) {
|
|
|
|
case OP_LE_S: cmp = (cmp <= 0); break;
|
|
|
|
case OP_GE_S: cmp = (cmp >= 0); break;
|
|
|
|
case OP_LT_S: cmp = (cmp < 0); break;
|
|
|
|
case OP_GT_S: cmp = (cmp > 0); break;
|
|
|
|
case OP_NE_S: break;
|
|
|
|
case OP_EQ_S: cmp = !cmp; break;
|
2002-06-09 16:31:08 +00:00
|
|
|
default: break;
|
2001-06-04 03:36:35 +00:00
|
|
|
}
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = cmp;
|
2001-06-04 03:36:35 +00:00
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NE_E:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var != OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_NE_FN:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.func_var != OPB.func_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
|
2001-02-27 08:21:40 +00:00
|
|
|
// ==================
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_STORE_F:
|
|
|
|
case OP_STORE_ENT:
|
|
|
|
case OP_STORE_FLD: // integers
|
|
|
|
case OP_STORE_S:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_STORE_FN: // pointers
|
2001-11-02 03:04:01 +00:00
|
|
|
case OP_STORE_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_STORE_U:
|
2002-01-23 22:33:22 +00:00
|
|
|
case OP_STORE_P:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPB.integer_var = OPA.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_STORE_V:
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorCopy (OPA.vector_var, OPB.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_STORE_Q:
|
|
|
|
QuatCopy (OPA.quat_var, OPB.quat_var);
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
case OP_STOREP_F:
|
|
|
|
case OP_STOREP_ENT:
|
|
|
|
case OP_STOREP_FLD: // integers
|
|
|
|
case OP_STOREP_S:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_STOREP_FN: // pointers
|
2001-11-02 03:04:01 +00:00
|
|
|
case OP_STOREP_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_STOREP_U:
|
2001-12-12 20:35:58 +00:00
|
|
|
case OP_STOREP_P:
|
2001-11-02 22:41:11 +00:00
|
|
|
//FIXME put bounds checking back
|
|
|
|
ptr = pr->pr_globals + OPB.integer_var;
|
2001-07-22 20:20:46 +00:00
|
|
|
ptr->integer_var = OPA.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_STOREP_V:
|
2001-11-02 22:41:11 +00:00
|
|
|
//FIXME put bounds checking back
|
|
|
|
ptr = pr->pr_globals + OPB.integer_var;
|
|
|
|
VectorCopy (OPA.vector_var, ptr->vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_STOREP_Q:
|
|
|
|
//FIXME put bounds checking back
|
|
|
|
ptr = pr->pr_globals + OPB.integer_var;
|
|
|
|
QuatCopy (OPA.quat_var, ptr->quat_var);
|
|
|
|
break;
|
2001-11-02 22:41:11 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_ADDRESS:
|
2002-11-08 02:43:04 +00:00
|
|
|
if (pr_boundscheck->int_val) {
|
|
|
|
if (OPA.entity_var < 0
|
|
|
|
|| OPA.entity_var >= pr->pr_edictareasize)
|
|
|
|
PR_RunError (pr, "Progs attempted to address an out "
|
|
|
|
"of bounds edict");
|
|
|
|
if (OPA.entity_var == 0 && pr->null_bad)
|
|
|
|
PR_RunError (pr, "assignment to world entity");
|
2003-04-17 00:01:48 +00:00
|
|
|
if (OPB.uinteger_var >= pr->progs->entityfields)
|
2002-11-08 02:43:04 +00:00
|
|
|
PR_RunError (pr, "Progs attempted to address an "
|
|
|
|
"invalid field in an edict");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-06-07 21:59:24 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, OPA.entity_var);
|
2001-11-02 22:41:11 +00:00
|
|
|
OPC.integer_var = &ed->v[OPB.integer_var] - pr->pr_globals;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_ADDRESS_F:
|
|
|
|
case OP_ADDRESS_V:
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_ADDRESS_Q:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_ADDRESS_S:
|
|
|
|
case OP_ADDRESS_ENT:
|
|
|
|
case OP_ADDRESS_FLD:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_ADDRESS_FN:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_ADDRESS_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_ADDRESS_U:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_ADDRESS_P:
|
|
|
|
OPC.integer_var = st->a;
|
|
|
|
break;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_LOAD_F:
|
|
|
|
case OP_LOAD_FLD:
|
|
|
|
case OP_LOAD_ENT:
|
|
|
|
case OP_LOAD_S:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_LOAD_FN:
|
2001-11-02 03:04:01 +00:00
|
|
|
case OP_LOAD_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_LOAD_U:
|
2001-12-08 20:17:20 +00:00
|
|
|
case OP_LOAD_P:
|
2002-11-08 02:43:04 +00:00
|
|
|
if (pr_boundscheck->int_val) {
|
|
|
|
if (OPA.entity_var < 0
|
|
|
|
|| OPA.entity_var >= pr->pr_edictareasize)
|
|
|
|
PR_RunError (pr, "Progs attempted to read an out of "
|
|
|
|
"bounds edict number");
|
2003-04-17 00:01:48 +00:00
|
|
|
if (OPB.uinteger_var >= pr->progs->entityfields)
|
2002-11-08 02:43:04 +00:00
|
|
|
PR_RunError (pr, "Progs attempted to read an invalid "
|
|
|
|
"field in an edict");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-06-07 21:59:24 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, OPA.entity_var);
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = ed->v[OPB.integer_var].integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_LOAD_V:
|
2002-11-08 02:43:04 +00:00
|
|
|
if (pr_boundscheck->int_val) {
|
|
|
|
if (OPA.entity_var < 0
|
|
|
|
|| OPA.entity_var >= pr->pr_edictareasize)
|
2004-04-08 00:56:30 +00:00
|
|
|
PR_RunError (pr, "Progs attempted to read an out of "
|
|
|
|
"bounds edict number");
|
2003-04-17 00:01:48 +00:00
|
|
|
if (OPB.uinteger_var + 2 >= pr->progs->entityfields)
|
2004-04-08 00:56:30 +00:00
|
|
|
PR_RunError (pr, "Progs attempted to read an invalid "
|
|
|
|
"field in an edict");
|
|
|
|
}
|
|
|
|
ed = PROG_TO_EDICT (pr, OPA.entity_var);
|
|
|
|
memcpy (&OPC, &ed->v[OPB.integer_var], 3 * sizeof (OPC));
|
|
|
|
break;
|
|
|
|
case OP_LOAD_Q:
|
|
|
|
if (pr_boundscheck->int_val) {
|
|
|
|
if (OPA.entity_var < 0
|
|
|
|
|| OPA.entity_var >= pr->pr_edictareasize)
|
|
|
|
PR_RunError (pr, "Progs attempted to read an out of "
|
|
|
|
"bounds edict number");
|
|
|
|
if (OPB.uinteger_var + 3 >= pr->progs->entityfields)
|
|
|
|
PR_RunError (pr, "Progs attempted to read an invalid "
|
|
|
|
"field in an edict");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-06-07 21:59:24 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, OPA.entity_var);
|
2001-07-22 20:20:46 +00:00
|
|
|
memcpy (&OPC, &ed->v[OPB.integer_var], 3 * sizeof (OPC));
|
2001-02-27 08:21:40 +00:00
|
|
|
break;
|
2001-11-02 22:41:11 +00:00
|
|
|
|
|
|
|
case OP_LOADB_F:
|
|
|
|
case OP_LOADB_S:
|
|
|
|
case OP_LOADB_ENT:
|
|
|
|
case OP_LOADB_FLD:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_LOADB_FN:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_LOADB_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_LOADB_U:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_LOADB_P:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + OPB.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
OPC.integer_var = ptr->integer_var;
|
|
|
|
break;
|
|
|
|
case OP_LOADB_V:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + OPB.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
VectorCopy (ptr->vector_var, OPC.vector_var);
|
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_LOADB_Q:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + OPB.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
QuatCopy (ptr->quat_var, OPC.quat_var);
|
|
|
|
break;
|
2001-11-02 22:41:11 +00:00
|
|
|
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_LOADBI_F:
|
|
|
|
case OP_LOADBI_S:
|
|
|
|
case OP_LOADBI_ENT:
|
|
|
|
case OP_LOADBI_FLD:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_LOADBI_FN:
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_LOADBI_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_LOADBI_U:
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_LOADBI_P:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + (short) st->b;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
OPC.integer_var = ptr->integer_var;
|
|
|
|
break;
|
|
|
|
case OP_LOADBI_V:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + (short) st->b;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
VectorCopy (ptr->vector_var, OPC.vector_var);
|
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_LOADBI_Q:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPA.integer_var + (short) st->b;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
QuatCopy (ptr->quat_var, OPC.quat_var);
|
|
|
|
break;
|
2001-12-07 20:07:38 +00:00
|
|
|
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_LEA:
|
|
|
|
pointer = OPA.integer_var + OPB.integer_var;
|
|
|
|
OPC.integer_var = pointer;
|
|
|
|
break;
|
|
|
|
|
2001-12-08 08:19:48 +00:00
|
|
|
case OP_LEAI:
|
|
|
|
pointer = OPA.integer_var + (short) st->b;
|
|
|
|
OPC.integer_var = pointer;
|
|
|
|
break;
|
|
|
|
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_STOREB_F:
|
|
|
|
case OP_STOREB_S:
|
|
|
|
case OP_STOREB_ENT:
|
|
|
|
case OP_STOREB_FLD:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_STOREB_FN:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_STOREB_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_STOREB_U:
|
2001-11-02 22:41:11 +00:00
|
|
|
case OP_STOREB_P:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + OPC.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
ptr->integer_var = OPA.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_STOREB_V:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + OPC.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
VectorCopy (OPA.vector_var, ptr->vector_var);
|
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_STOREB_Q:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + OPC.integer_var;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
QuatCopy (OPA.quat_var, ptr->quat_var);
|
|
|
|
break;
|
2001-11-02 22:41:11 +00:00
|
|
|
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_STOREBI_F:
|
|
|
|
case OP_STOREBI_S:
|
|
|
|
case OP_STOREBI_ENT:
|
|
|
|
case OP_STOREBI_FLD:
|
2004-02-11 06:52:19 +00:00
|
|
|
case OP_STOREBI_FN:
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_STOREBI_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_STOREBI_U:
|
2001-12-07 20:07:38 +00:00
|
|
|
case OP_STOREBI_P:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + (short) st->c;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
ptr->integer_var = OPA.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_STOREBI_V:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + (short) st->c;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
VectorCopy (OPA.vector_var, ptr->vector_var);
|
|
|
|
break;
|
2004-04-08 00:56:30 +00:00
|
|
|
case OP_STOREBI_Q:
|
|
|
|
//FIXME put bounds checking in
|
|
|
|
pointer = OPB.integer_var + (short) st->c;
|
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
QuatCopy (OPA.quat_var, ptr->quat_var);
|
|
|
|
break;
|
2001-12-07 20:07:38 +00:00
|
|
|
|
2001-02-27 08:21:40 +00:00
|
|
|
// ==================
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_IFNOT:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (!OPA.integer_var) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_IF:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (OPA.integer_var) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
case OP_IFBE:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (OPA.integer_var <= 0) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
|
|
|
case OP_IFB:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (OPA.integer_var < 0) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
|
|
|
case OP_IFAE:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (OPA.integer_var >= 0) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
|
|
|
case OP_IFA:
|
2002-10-22 15:07:54 +00:00
|
|
|
if (OPA.integer_var > 0) {
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->b - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
|
|
|
}
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_GOTO:
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement += (short)st->a - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
case OP_JUMP:
|
|
|
|
if (pr_boundscheck->int_val
|
|
|
|
&& (OPA.uinteger_var >= pr->progs->numstatements)) {
|
2002-05-18 00:49:16 +00:00
|
|
|
PR_RunError (pr, "Invalid jump destination");
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
}
|
2002-10-22 15:07:54 +00:00
|
|
|
pr->pr_xstatement = OPA.uinteger_var;
|
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
2001-11-13 08:58:54 +00:00
|
|
|
case OP_JUMPB:
|
|
|
|
//FIXME put bounds checking in
|
2003-08-22 19:48:36 +00:00
|
|
|
pointer = st->a + OPB.integer_var;
|
2001-11-13 08:58:54 +00:00
|
|
|
ptr = pr->pr_globals + pointer;
|
|
|
|
pointer = ptr->integer_var;
|
|
|
|
if (pr_boundscheck->int_val
|
|
|
|
&& (pointer >= pr->progs->numstatements)) {
|
2002-05-18 00:49:16 +00:00
|
|
|
PR_RunError (pr, "Invalid jump destination");
|
2001-11-13 08:58:54 +00:00
|
|
|
}
|
2003-08-24 07:23:12 +00:00
|
|
|
pr->pr_xstatement = pointer - 1; // offset the st++
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
2001-11-13 08:58:54 +00:00
|
|
|
break;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
|
2005-06-12 09:54:01 +00:00
|
|
|
case OP_RCALL2:
|
|
|
|
case OP_RCALL3:
|
|
|
|
case OP_RCALL4:
|
|
|
|
case OP_RCALL5:
|
|
|
|
case OP_RCALL6:
|
|
|
|
case OP_RCALL7:
|
|
|
|
case OP_RCALL8:
|
|
|
|
pr->pr_params[1] = &OPC;
|
|
|
|
goto op_rcall;
|
|
|
|
case OP_RCALL1:
|
|
|
|
pr->pr_params[1] = pr->pr_real_params[1];
|
|
|
|
op_rcall:
|
|
|
|
pr->pr_params[0] = &OPB;
|
|
|
|
pr->pr_argc = st->op - OP_RCALL1 + 1;
|
|
|
|
goto op_call;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_CALL0:
|
|
|
|
case OP_CALL1:
|
|
|
|
case OP_CALL2:
|
|
|
|
case OP_CALL3:
|
|
|
|
case OP_CALL4:
|
|
|
|
case OP_CALL5:
|
|
|
|
case OP_CALL6:
|
|
|
|
case OP_CALL7:
|
|
|
|
case OP_CALL8:
|
2005-06-12 09:54:01 +00:00
|
|
|
PR_RESET_PARAMS (pr);
|
|
|
|
pr->pr_argc = st->op - OP_CALL0;
|
|
|
|
op_call:
|
2001-02-19 21:15:25 +00:00
|
|
|
pr->pr_xfunction->profile += profile - startprofile;
|
|
|
|
startprofile = profile;
|
2004-11-07 03:00:00 +00:00
|
|
|
PR_CallFunction (pr, OPA.func_var);
|
2002-10-22 15:07:54 +00:00
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_DONE:
|
|
|
|
case OP_RETURN:
|
2003-08-13 17:27:34 +00:00
|
|
|
if (!st->a)
|
|
|
|
memset (&R_INT (pr), 0,
|
|
|
|
pr->pr_param_size * sizeof (OPA));
|
|
|
|
else if (&R_INT (pr) != &OPA.integer_var)
|
2003-08-13 17:07:05 +00:00
|
|
|
memcpy (&R_INT (pr), &OPA,
|
|
|
|
pr->pr_param_size * sizeof (OPA));
|
2003-09-15 21:13:13 +00:00
|
|
|
pr->pr_xfunction->profile += profile - startprofile;
|
|
|
|
startprofile = profile;
|
2002-10-22 15:07:54 +00:00
|
|
|
PR_LeaveFunction (pr);
|
|
|
|
st = pr->pr_statements + pr->pr_xstatement;
|
2002-08-20 23:04:57 +00:00
|
|
|
if (pr->pr_depth == exitdepth) {
|
2004-11-07 03:00:00 +00:00
|
|
|
if (pr->pr_trace && pr->pr_depth <= pr->pr_trace_depth)
|
|
|
|
pr->pr_trace = false;
|
2002-08-20 23:04:57 +00:00
|
|
|
Sys_PopSignalHook ();
|
2001-02-27 08:21:40 +00:00
|
|
|
return; // all done
|
2002-08-20 23:04:57 +00:00
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_STATE:
|
2001-03-01 08:34:30 +00:00
|
|
|
ed = PROG_TO_EDICT (pr, *pr->globals.self);
|
2001-09-10 12:56:23 +00:00
|
|
|
ed->v[pr->fields.nextthink].float_var = *pr->globals.time +
|
|
|
|
0.1;
|
2001-06-07 21:59:24 +00:00
|
|
|
ed->v[pr->fields.frame].float_var = OPA.float_var;
|
|
|
|
ed->v[pr->fields.think].func_var = OPB.func_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2004-02-11 01:43:33 +00:00
|
|
|
case OP_STATE_F:
|
|
|
|
ed = PROG_TO_EDICT (pr, *pr->globals.self);
|
|
|
|
ed->v[pr->fields.nextthink].float_var = *pr->globals.time +
|
|
|
|
OPC.float_var;
|
|
|
|
ed->v[pr->fields.frame].float_var = OPA.float_var;
|
|
|
|
ed->v[pr->fields.think].func_var = OPB.func_var;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_ADD_I:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var + OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_SUB_I:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var - OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_MUL_I:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var * OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-07-23 01:31:22 +00:00
|
|
|
/*
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_DIV_VF:
|
|
|
|
{
|
2001-06-07 21:59:24 +00:00
|
|
|
float temp = 1.0f / OPB.float_var;
|
2001-11-02 22:41:11 +00:00
|
|
|
VectorScale (OPA.vector_var, temp, OPC.vector_var);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-07-23 01:31:22 +00:00
|
|
|
*/
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_DIV_I:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var / OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-08-10 16:17:00 +00:00
|
|
|
case OP_MOD_I:
|
|
|
|
OPC.integer_var = OPA.integer_var % OPB.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_MOD_F:
|
|
|
|
OPC.float_var = (int) OPA.float_var % (int) OPB.float_var;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_CONV_IF:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.float_var = OPA.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_CONV_FI:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.float_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_BITAND_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_BITAND_U:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var & OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_BITOR_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_BITOR_U:
|
2001-07-22 20:20:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var | OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2001-08-09 16:34:46 +00:00
|
|
|
case OP_BITXOR_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_BITXOR_U:
|
2001-08-09 16:34:46 +00:00
|
|
|
OPC.integer_var = OPA.integer_var ^ OPB.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_BITNOT_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_BITNOT_U:
|
2001-08-09 16:34:46 +00:00
|
|
|
OPC.integer_var = ~OPA.integer_var;
|
|
|
|
break;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_ADD_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var + OPB.uinteger_var;
|
|
|
|
break;
|
|
|
|
case OP_SUB_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var - OPB.uinteger_var;
|
|
|
|
break;
|
|
|
|
case OP_MUL_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var * OPB.uinteger_var;
|
|
|
|
break;
|
|
|
|
case OP_DIV_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var / OPB.uinteger_var;
|
|
|
|
break;
|
|
|
|
case OP_MOD_U:
|
|
|
|
OPC.uinteger_var = OPA.uinteger_var % OPB.uinteger_var;
|
|
|
|
break;
|
|
|
|
case OP_CONV_IU:
|
|
|
|
OPC.uinteger_var = OPA.integer_var;
|
|
|
|
break;
|
|
|
|
case OP_CONV_UI:
|
|
|
|
OPC.integer_var = OPA.uinteger_var;
|
|
|
|
break;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_GE_I:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_GE_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var >= OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2003-08-24 05:53:15 +00:00
|
|
|
case OP_GE_U:
|
|
|
|
OPC.integer_var = OPA.uinteger_var >= OPB.uinteger_var;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_LE_I:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_LE_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var <= OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2003-08-24 05:53:15 +00:00
|
|
|
case OP_LE_U:
|
|
|
|
OPC.integer_var = OPA.uinteger_var <= OPB.uinteger_var;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_GT_I:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_GT_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var > OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
2003-08-24 05:53:15 +00:00
|
|
|
case OP_GT_U:
|
|
|
|
OPC.integer_var = OPA.uinteger_var > OPB.uinteger_var;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_LT_I:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_LT_P:
|
2005-05-01 08:30:30 +00:00
|
|
|
OPC.integer_var = OPA.integer_var < OPB.integer_var;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
break;
|
2003-08-24 05:53:15 +00:00
|
|
|
case OP_LT_U:
|
|
|
|
OPC.integer_var = OPA.uinteger_var < OPB.uinteger_var;
|
|
|
|
break;
|
pr_comp.h:
o add ev_uniteger to the types enum
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
progs.h:
o add uinteger accessors
pr_exec.c:
o implement ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
pr_opcode.c:
o add opcodes for ifbe, ifb, ifae, ifa, jump, lt.ui, gt.ui, le.ui, ge.ui
expr.h:
o prototype inc_users
qfcc.h:
o add externs for op_ifbe, op_ifb, op_ifae and op_ifa
emit.c:
o don't bother emiting an assignment to a temp def that's only used once
(ie, it's never read, only written to)
o support the new if* instructions
expr.c:
o support the new if* insructions
o dectect expression loops in append_expr
o support unsigned integers
o re-work temp def usage counting
pr_def.c
o debugging for temp def usage counts
pr_opcode.c:
o support the new if* instructions
qc-parse.y:
o provide defines for IFBE IFB IFAE IFA
switch.c:
o do binary searches for strings, floats and ints if there are more than
8 cases in a switch. Strings need more testing.
2001-11-09 00:58:16 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_AND_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_AND_U:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var && OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_OR_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_OR_U:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var || OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NOT_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_NOT_U:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_NOT_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = !OPA.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_EQ_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_EQ_U:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_EQ_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var == OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case OP_NE_I:
|
2003-07-26 21:07:51 +00:00
|
|
|
case OP_NE_U:
|
2002-01-30 21:20:12 +00:00
|
|
|
case OP_NE_P:
|
2001-07-23 01:31:22 +00:00
|
|
|
OPC.integer_var = OPA.integer_var != OPB.integer_var;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
|
2002-10-16 06:44:41 +00:00
|
|
|
case OP_MOVE:
|
2002-10-21 16:38:45 +00:00
|
|
|
memmove (&OPC, &OPA, st->b * 4);
|
2002-10-16 06:44:41 +00:00
|
|
|
break;
|
|
|
|
case OP_MOVEP:
|
|
|
|
memmove (pr->pr_globals + OPC.integer_var,
|
2002-10-21 16:38:45 +00:00
|
|
|
pr->pr_globals + OPA.integer_var,
|
|
|
|
OPB.uinteger_var * 4);
|
2002-10-16 06:44:41 +00:00
|
|
|
break;
|
|
|
|
|
2001-07-23 01:31:22 +00:00
|
|
|
// LordHavoc: to be enabled when Progs version 7 (or whatever it will be numbered) is finalized
|
|
|
|
/*
|
2001-02-19 21:15:25 +00:00
|
|
|
case OP_BOUNDCHECK:
|
2001-07-22 20:20:46 +00:00
|
|
|
if (OPA.integer_var < 0 || OPA.integer_var >= st->b) {
|
2001-09-10 12:56:23 +00:00
|
|
|
PR_RunError (pr, "Progs boundcheck failed at line number "
|
2002-05-18 00:49:16 +00:00
|
|
|
"%d, value is < 0 or >= %d", st->b, st->c);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
*/
|
|
|
|
default:
|
2001-06-07 22:15:37 +00:00
|
|
|
PR_RunError (pr, "Bad opcode %i", st->op);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|