extern cvar_t prvm_garbagecollection_enable;
+int i;
// NEED to reset startst after calling this! startst may or may not be clobbered!
#define ADVANCE_PROFILE_BEFORE_JUMP() \
prog->xfunction->profile += (st - startst); \
&&handle_OP_OR,
&&handle_OP_BITAND,
- &&handle_OP_BITOR
+ &&handle_OP_BITOR,
+
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+
+ &&handle_OP_STORE_I,
+
+ NULL,
+ NULL,
+
+ &&handle_OP_ADD_I,
+ &&handle_OP_ADD_FI,
+ &&handle_OP_ADD_IF,
+
+ &&handle_OP_SUB_I,
+ &&handle_OP_SUB_FI,
+ &&handle_OP_SUB_IF,
+ &&handle_OP_CONV_IF,
+ &&handle_OP_CONV_FI,
+
+ NULL,
+ NULL,
+
+ &&handle_OP_LOAD_I,
+ &&handle_OP_STOREP_I,
+
+ NULL,
+ NULL,
+
+ &&handle_OP_BITAND_I,
+ &&handle_OP_BITOR_I,
+
+ &&handle_OP_MUL_I,
+ &&handle_OP_DIV_I,
+ &&handle_OP_EQ_I,
+ &&handle_OP_NE_I,
+
+ NULL,
+ NULL,
+
+ &&handle_OP_NOT_I,
+
+ &&handle_OP_DIV_VF,
+
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+
+ &&handle_OP_STORE_P,
+
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+
+ &&handle_OP_LE_I,
+ &&handle_OP_GE_I,
+ &&handle_OP_LT_I,
+ &&handle_OP_GT_I,
+
+ &&handle_OP_LE_IF,
+ &&handle_OP_GE_IF,
+ &&handle_OP_LT_IF,
+ &&handle_OP_GT_IF,
+
+ &&handle_OP_LE_FI,
+ &&handle_OP_GE_FI,
+ &&handle_OP_LT_FI,
+ &&handle_OP_GT_FI,
+
+ &&handle_OP_EQ_IF,
+ &&handle_OP_EQ_FI,
+
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+
+ &&handle_OP_MUL_IF,
+ &&handle_OP_MUL_FI,
+ &&handle_OP_MUL_VI,
+
+ NULL,
+
+ &&handle_OP_DIV_IF,
+ &&handle_OP_DIV_FI,
+ &&handle_OP_BITAND_IF,
+ &&handle_OP_BITOR_IF,
+ &&handle_OP_BITAND_FI,
+ &&handle_OP_BITOR_FI,
+ &&handle_OP_AND_I,
+ &&handle_OP_OR_I,
+ &&handle_OP_AND_IF,
+ &&handle_OP_OR_IF,
+ &&handle_OP_AND_FI,
+ &&handle_OP_OR_FI,
+ &&handle_OP_NE_IF,
+ &&handle_OP_NE_FI,
+
+ &&handle_OP_GSTOREP_I,
+ &&handle_OP_GSTOREP_F,
+ &&handle_OP_GSTOREP_ENT,
+ &&handle_OP_GSTOREP_FLD,
+ &&handle_OP_GSTOREP_S,
+ &&handle_OP_GSTOREP_FNC,
+ &&handle_OP_GSTOREP_V,
+ &&handle_OP_GADDRESS,
+ &&handle_OP_GLOAD_I,
+ &&handle_OP_GLOAD_F,
+ &&handle_OP_GLOAD_FLD,
+ &&handle_OP_GLOAD_ENT,
+ &&handle_OP_GLOAD_S,
+ &&handle_OP_GLOAD_FNC,
+ &&handle_OP_BOUNDCHECK,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ &&handle_OP_GLOAD_V
};
#define DISPATCH_OPCODE() \
goto *dispatchtable[(++st)->op]
}
DISPATCH_OPCODE();
-// LadyHavoc: to be enabled when Progs version 7 (or whatever it will be numbered) is finalized
-/*
HANDLE_OPCODE(OP_ADD_I):
OPC->_int = OPA->_int + OPB->_int;
DISPATCH_OPCODE();
OPC->_float = OPA->_float != (prvm_vec_t)OPB->_int;
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_STORE_I):
+ HANDLE_OPCODE(OP_STORE_P):
OPB->_int = OPA->_int;
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_STOREP_I):
goto cleanup;
}
#endif
- ptr = (prvm_eval_t *)(prog->edictsfields + OPB->_int);
+ ptr = (prvm_eval_t *)(prog->edictsfields.ip + OPB->_int);
ptr->_int = OPA->_int;
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_LOAD_I):
prog->error_cmd("%s Progs attempted to read an out of bounds edict number", prog->name);
goto cleanup;
}
- if (OPB->_int < 0 || OPB->_int >= progs->entityfields)
+ if (OPB->_int < 0 || OPB->_int >= progs->entityfields.ip)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to read an invalid field in an edict", prog->name);
}
#endif
ed = PRVM_PROG_TO_EDICT(OPA->edict);
- OPC->_int = ((prvm_eval_t *)((int *)ed->v + OPB->_int))->_int;
+ OPC->_int = ((prvm_eval_t *)((int *)ed->fields.ip + OPB->_int))->_int;
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_GSTOREP_I):
HANDLE_OPCODE(OP_GSTOREP_FLD): // integers
HANDLE_OPCODE(OP_GSTOREP_S):
HANDLE_OPCODE(OP_GSTOREP_FNC): // pointers
-#if PRBOUNDSCHECK
- if (OPB->_int < 0 || OPB->_int >= pr_globaldefs)
+ if (OPB->_int < 0 || OPB->_int >= prog->numglobaldefs)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to write to an invalid indexed global", prog->name);
goto cleanup;
}
-#endif
- pr_iglobals[OPB->_int] = OPA->_int;
+ prog->globals.ip[OPB->_int] = OPA->_int;
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_GSTOREP_V):
-#if PRBOUNDSCHECK
- if (OPB->_int < 0 || OPB->_int + 2 >= pr_globaldefs)
+ if (OPB->_int < 0 || OPB->_int + 2 >= prog->numglobaldefs)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to write to an invalid indexed global", prog->name);
goto cleanup;
}
-#endif
- pr_iglobals[OPB->_int ] = OPA->ivector[0];
- pr_iglobals[OPB->_int+1] = OPA->ivector[1];
- pr_iglobals[OPB->_int+2] = OPA->ivector[2];
+ prog->globals.ip[OPB->_int ] = OPA->ivector[0];
+ prog->globals.ip[OPB->_int+1] = OPA->ivector[1];
+ prog->globals.ip[OPB->_int+2] = OPA->ivector[2];
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_GADDRESS):
i = OPA->_int + (prvm_int_t) OPB->_float;
-#if PRBOUNDSCHECK
- if (i < 0 || i >= pr_globaldefs)
+ if (i < 0 || i >= prog->numglobaldefs)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to address an out of bounds global", prog->name);
goto cleanup;
}
-#endif
- OPC->_int = pr_iglobals[i];
+ OPC->_int = prog->globals.ip[i];
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_GLOAD_I):
HANDLE_OPCODE(OP_GLOAD_ENT):
HANDLE_OPCODE(OP_GLOAD_S):
HANDLE_OPCODE(OP_GLOAD_FNC):
-#if PRBOUNDSCHECK
- if (OPA->_int < 0 || OPA->_int >= pr_globaldefs)
+ // FIXME?: Is this correct? vvvvvvvvvvvvv
+ if (OPA->_int < 0 || OPA->_int >= prog->numglobaldefs)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to read an invalid indexed global", prog->name);
goto cleanup;
}
-#endif
- OPC->_int = pr_iglobals[OPA->_int];
+ OPC->_int = prog->globals.ip[OPA->_int];
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_GLOAD_V):
-#if PRBOUNDSCHECK
- if (OPA->_int < 0 || OPA->_int + 2 >= pr_globaldefs)
+ // FIXME?: Is this correct? vvvvvvvvvvvvv
+ if (OPA->_int < 0 || OPA->_int + 2 >= prog->numglobaldefs)
{
PRE_ERROR();
prog->error_cmd("%s Progs attempted to read an invalid indexed global", prog->name);
goto cleanup;
}
-#endif
- OPC->ivector[0] = pr_iglobals[OPA->_int ];
- OPC->ivector[1] = pr_iglobals[OPA->_int+1];
- OPC->ivector[2] = pr_iglobals[OPA->_int+2];
+ OPC->ivector[0] = prog->globals.ip[OPA->_int ];
+ OPC->ivector[1] = prog->globals.ip[OPA->_int+1];
+ OPC->ivector[2] = prog->globals.ip[OPA->_int+2];
DISPATCH_OPCODE();
HANDLE_OPCODE(OP_BOUNDCHECK):
- if (OPA->_int < 0 || OPA->_int >= st->b)
+ if (OPA->_int < 0 || OPA->_int >= OPB->_int)
{
PRE_ERROR();
- prog->error_cmd("%s Progs boundcheck failed at line number %d, value is < 0 or >= %d", prog->name, st->b, st->c);
+ prog->error_cmd("%s Progs boundcheck failed at line number %d, value is < 0 or >= %d", prog->name, OPB->_int, OPC->_int);
goto cleanup;
}
DISPATCH_OPCODE();
-*/
-
#if !USE_COMPUTED_GOTOS
default:
PRE_ERROR();