aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorPaweł Kołodziejski2009-02-20 23:09:29 +0000
committerPaweł Kołodziejski2009-02-20 23:09:29 +0000
commitfc28525969dc56b08ec1535ac5d2d29a04729ef7 (patch)
tree8e1dfa6d258c28b903ae950d946a7c3ad73cc932 /engines/sci
parentdc792f22651c8d8d9e08e4ffd90b63aeafad288c (diff)
downloadscummvm-rg350-fc28525969dc56b08ec1535ac5d2d29a04729ef7.tar.gz
scummvm-rg350-fc28525969dc56b08ec1535ac5d2d29a04729ef7.tar.bz2
scummvm-rg350-fc28525969dc56b08ec1535ac5d2d29a04729ef7.zip
formating
svn-id: r38640
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/engine/vm.cpp1119
1 files changed, 463 insertions, 656 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp
index 360fdd37f4..7cd3057a33 100644
--- a/engines/sci/engine/vm.cpp
+++ b/engines/sci/engine/vm.cpp
@@ -40,20 +40,20 @@
reg_t NULL_REG = NULL_REG_INITIALIZER;
-/*#define VM_DEBUG_SEND*/
-#undef STRICT_SEND /* Disallows variable sends with more than one parameter */
-#undef STRICT_READ /* Disallows reading from out-of-bounds parameters and locals */
+//#define VM_DEBUG_SEND
+#undef STRICT_SEND // Disallows variable sends with more than one parameter
+#undef STRICT_READ // Disallows reading from out-of-bounds parameters and locals
-int script_abort_flag = 0; /* Set to 1 to abort execution */
-int script_error_flag = 0; /* Set to 1 if an error occured, reset each round by the VM */
-int script_checkloads_flag = 0; /* Print info when scripts get (un)loaded */
-int script_step_counter = 0; /* Counts the number of steps executed */
-int script_gc_interval = GC_INTERVAL; /* Number of steps in between gcs */
+int script_abort_flag = 0; // Set to 1 to abort execution
+int script_error_flag = 0; // Set to 1 if an error occured, reset each round by the VM
+int script_checkloads_flag = 0; // Print info when scripts get (un)loaded
+int script_step_counter = 0; // Counts the number of steps executed
+int script_gc_interval = GC_INTERVAL; // Number of steps in between gcs
-extern int _debug_step_running; /* scriptdebug.c */
-extern int _debug_seeking; /* scriptdebug.c */
-extern int _weak_validations; /* scriptdebug.c */
+extern int _debug_step_running;
+extern int _debug_seeking;
+extern int _weak_validations;
calls_struct_t *send_calls = NULL;
@@ -66,12 +66,11 @@ static int jump_initialized = 0;
static jmp_buf vm_error_address;
#endif
-/*-- validation functionality --*/
+// validation functionality
#ifndef DISABLE_VALIDATIONS
-static inline reg_t *
-validate_property(object_t *obj, int index) {
+static inline reg_t *validate_property(object_t *obj, int index) {
if (!obj) {
if (sci_debug_flags & 4)
sciprintf("[VM] Sending to disposed object");
@@ -81,8 +80,7 @@ validate_property(object_t *obj, int index) {
if (index < 0 || index >= obj->variables_nr) {
if (sci_debug_flags & 4)
- sciprintf("[VM] Invalid property #%d (out of [0..%d]) requested", index,
- obj->variables_nr);
+ sciprintf("[VM] Invalid property #%d (out of [0..%d]) requested", index, obj->variables_nr);
_dummy_register = NULL_REG;
return &_dummy_register;
@@ -91,21 +89,17 @@ validate_property(object_t *obj, int index) {
return obj->variables + index;
}
-static inline stack_ptr_t
-validate_stack_addr(state_t *s, stack_ptr_t sp) {
+static inline stack_ptr_t validate_stack_addr(state_t *s, stack_ptr_t sp) {
if (sp >= s->stack_base && sp < s->stack_top)
return sp;
script_debug_flag = script_error_flag = 1;
if (sci_debug_flags & 4)
- sciprintf("[VM] Stack index %d out of valid range [%d..%d]\n",
- sp - s->stack_base, 0, s->stack_top - s->stack_base - 1);
+ sciprintf("[VM] Stack index %d out of valid range [%d..%d]\n", sp - s->stack_base, 0, s->stack_top - s->stack_base - 1);
return 0;
}
-
-static inline int
-validate_arithmetic(reg_t reg) {
+static inline int validate_arithmetic(reg_t reg) {
if (reg.segment) {
if (!_weak_validations)
script_debug_flag = script_error_flag = 1;
@@ -117,8 +111,7 @@ validate_arithmetic(reg_t reg) {
return reg.offset;
}
-static inline int
-signed_validate_arithmetic(reg_t reg) {
+static inline int signed_validate_arithmetic(reg_t reg) {
if (reg.segment) {
if (!_weak_validations)
script_debug_flag = script_error_flag = 1;
@@ -133,8 +126,7 @@ signed_validate_arithmetic(reg_t reg) {
return reg.offset;
}
-static inline int
-validate_variable(reg_t *r, reg_t *stack_base, int type, int max, int index, int line) {
+static inline int validate_variable(reg_t *r, reg_t *stack_base, int type, int max, int index, int line) {
const char *names[4] = {"global", "local", "temp", "param"};
if (index < 0 || index >= max) {
@@ -149,12 +141,11 @@ validate_variable(reg_t *r, reg_t *stack_base, int type, int max, int index, int
#ifdef STRICT_READ
return 1;
-#else /* !STRICT_READ */
+#else // !STRICT_READ
if (type == VAR_PARAM || type == VAR_TEMP) {
int total_offset = r - stack_base;
if (total_offset < 0 || total_offset >= VM_STACK_SIZE) {
- sciprintf("[VM] Access would be outside even of the stack (%d); access denied\n",
- total_offset);
+ sciprintf("[VM] Access would be outside even of the stack (%d); access denied\n", total_offset);
return 1;
} else {
sciprintf("[VM] Access within stack boundaries; access granted.\n");
@@ -167,16 +158,14 @@ validate_variable(reg_t *r, reg_t *stack_base, int type, int max, int index, int
return 0;
}
-static inline reg_t
-validate_read_var(reg_t *r, reg_t *stack_base, int type, int max, int index, int line, reg_t default_value) {
+static inline reg_t validate_read_var(reg_t *r, reg_t *stack_base, int type, int max, int index, int line, reg_t default_value) {
if (!validate_variable(r, stack_base, type, max, index, line))
return r[index];
else
return default_value;
}
-static inline void
-validate_write_var(reg_t *r, reg_t *stack_base, int type, int max, int index, int line, reg_t value) {
+static inline void validate_write_var(reg_t *r, reg_t *stack_base, int type, int max, int index, int line, reg_t value) {
if (!validate_variable(r, stack_base, type, max, index, line))
r[index] = value;
}
@@ -184,11 +173,11 @@ validate_write_var(reg_t *r, reg_t *stack_base, int type, int max, int index, in
# define ASSERT_ARITHMETIC(v) validate_arithmetic(v)
#else
-/*-- Non-validating alternatives -- */
+// Non-validating alternatives
# define validate_stack_addr(s, sp) sp
# define validate_arithmetic(r) ((r).offset)
-# define signed_validate_arithmetic(r) ((int) ((r).offset)&0x8000 ? (signed) ((r).offset)-65536 : ((r).offset))
+# define signed_validate_arithmetic(r) ((int) ((r).offset) & 0x8000 ? (signed) ((r).offset) - 65536 : ((r).offset))
# define validate_variable(r, sb, t, m, i, l)
# define validate_read_var(r, sb, t, m, i, l) ((r)[i])
# define validate_write_var(r, sb, t, m, i, l, v) ((r)[i] = (v))
@@ -207,18 +196,14 @@ validate_write_var(reg_t *r, reg_t *stack_base, int type, int max, int index, in
#define OBJ_PROPERTY(o, p) (*validate_property(o, p))
-/*==--------------------------==*/
-
-int
-script_error(state_t *s, const char *file, int line, const char *reason) {
+int script_error(state_t *s, const char *file, int line, const char *reason) {
sciprintf("Script error in file %s, line %d: %s\n", file, line, reason);
script_debug_flag = script_error_flag = 1;
return 0;
}
#define CORE_ERROR(area, msg) script_error(s, "[" area "] " __FILE__, __LINE__, msg)
-reg_t
-get_class_address(state_t *s, int classnr, int lock, reg_t caller) {
+reg_t get_class_address(state_t *s, int classnr, int lock, reg_t caller) {
class_t *the_class = s->classtable + classnr;
if (NULL == s) {
@@ -226,11 +211,8 @@ get_class_address(state_t *s, int classnr, int lock, reg_t caller) {
return NULL_REG;
}
- if (classnr < 0
- || s->classtable_size <= classnr
- || the_class->script < 0) {
- sciprintf("[VM] Attempt to dereference class %x, which doesn't exist (max %x)\n",
- classnr, s->classtable_size);
+ if (classnr < 0 || s->classtable_size <= classnr || the_class->script < 0) {
+ sciprintf("[VM] Attempt to dereference class %x, which doesn't exist (max %x)\n", classnr, s->classtable_size);
script_error_flag = script_debug_flag = 1;
return NULL_REG;
} else {
@@ -251,36 +233,34 @@ get_class_address(state_t *s, int classnr, int lock, reg_t caller) {
}
}
-/* Operating on the stack */
-/* 16 bit: */
+// Operating on the stack
+// 16 bit:
#define PUSH(v) PUSH32(make_reg(0, v))
#define POP() (validate_arithmetic(POP32()))
-/* 32 bit: */
+// 32 bit:
#define PUSH32(a) (*(validate_stack_addr(s, (xs->sp)++)) = (a))
#define POP32() (*(validate_stack_addr(s, --(xs->sp))))
-/* Getting instruction parameters */
-#define GET_OP_BYTE() ((guint8) code_buf[(xs->addr.pc.offset)++])
+// Getting instruction parameters
+#define GET_OP_BYTE() ((guint8)code_buf[(xs->addr.pc.offset)++])
#define GET_OP_WORD() (getUInt16(code_buf + ((xs->addr.pc.offset) += 2) - 2))
#define GET_OP_FLEX() ((opcode & 1)? GET_OP_BYTE() : GET_OP_WORD())
#define GET_OP_SIGNED_BYTE() ((gint8)(code_buf[(xs->addr.pc.offset)++]))
#define GET_OP_SIGNED_WORD() ((getInt16(code_buf + ((xs->addr.pc.offset) += 2) - 2)))
#define GET_OP_SIGNED_FLEX() ((opcode & 1)? GET_OP_SIGNED_BYTE() : GET_OP_SIGNED_WORD())
-#define SEG_GET_HEAP( s, reg ) sm_get_heap( &s->seg_manager, reg )
+#define SEG_GET_HEAP(s, reg) sm_get_heap(&s->seg_manager, reg)
#define OBJ_SPECIES(s, reg) SEG_GET_HEAP(s, make_reg(reg.segment, reg.offset + SCRIPT_SPECIES_OFFSET))
-/* Returns an object's species */
+// Returns an object's species
#define OBJ_SUPERCLASS(s, reg) SEG_GET_HEAP(s, make_reg(reg.segment, reg.offset + SCRIPT_SUPERCLASS_OFFSET))
-/* Returns an object's superclass */
+// Returns an object's superclass
-inline exec_stack_t *
-execute_method(state_t *s, word script, word pubfunct, stack_ptr_t sp,
- reg_t calling_obj, word argc, stack_ptr_t argp) {
+inline exec_stack_t *execute_method(state_t *s, word script, word pubfunct, stack_ptr_t sp, reg_t calling_obj, word argc, stack_ptr_t argp) {
int seg;
guint16 temp;
- if (!sm_script_is_loaded(&s->seg_manager, script, SCRIPT_ID)) /* Script not present yet? */
+ if (!sm_script_is_loaded(&s->seg_manager, script, SCRIPT_ID)) // Script not present yet?
script_instantiate(s, script);
else
sm_unmark_script_deleted(&s->seg_manager, script);
@@ -295,7 +275,7 @@ execute_method(state_t *s, word script, word pubfunct, stack_ptr_t sp,
return NULL;
}
- /* Check if a breakpoint is set on this method */
+ // Check if a breakpoint is set on this method
if (s->have_bp & BREAK_EXPORT) {
breakpoint_t *bp;
guint32 bpaddress;
@@ -314,35 +294,30 @@ execute_method(state_t *s, word script, word pubfunct, stack_ptr_t sp,
}
}
- return add_exec_stack_entry(s, make_reg(seg, temp),
- sp, calling_obj, argc, argp, -1, calling_obj,
- s->execution_stack_pos, seg);
+ return add_exec_stack_entry(s, make_reg(seg, temp), sp, calling_obj, argc, argp, -1, calling_obj, s->execution_stack_pos, seg);
}
-static void
-_exec_varselectors(state_t *s) { /* Executes all varselector read/write ops on the TOS */
- /* Now check the TOS to execute all varselector entries */
+static void _exec_varselectors(state_t *s) {
+ // Executes all varselector read/write ops on the TOS
+ // Now check the TOS to execute all varselector entries
if (s->execution_stack_pos >= 0)
while (s->execution_stack[s->execution_stack_pos].type == EXEC_STACK_TYPE_VARSELECTOR) {
- /* varselector access? */
- if (s->execution_stack[s->execution_stack_pos].argc) { /* write? */
+ // varselector access?
+ if (s->execution_stack[s->execution_stack_pos].argc) { // write?
reg_t temp = s->execution_stack[s->execution_stack_pos].variables_argp[1];
*(s->execution_stack[s->execution_stack_pos].addr.varp) = temp;
- } else /* No, read */
+ } else // No, read
s->r_acc = *(s->execution_stack[s->execution_stack_pos].addr.varp);
--(s->execution_stack_pos);
}
}
-exec_stack_t *
-send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
- stack_ptr_t sp, int framesize, stack_ptr_t argp)
-/* send_obj and work_obj are equal for anything but 'super' */
-/* Returns a pointer to the TOS exec_stack element */
-{
+exec_stack_t *send_selector(state_t *s, reg_t send_obj, reg_t work_obj, stack_ptr_t sp, int framesize, stack_ptr_t argp) {
+// send_obj and work_obj are equal for anything but 'super'
+// Returns a pointer to the TOS exec_stack element
#ifdef VM_DEBUG_SEND
int i;
#endif
@@ -350,12 +325,12 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
reg_t funcp;
int selector;
int argc;
- int origin = s->execution_stack_pos; /* Origin: Used for debugging */
+ int origin = s->execution_stack_pos; // Origin: Used for debugging
exec_stack_t *retval = s->execution_stack + s->execution_stack_pos;
int print_send_action = 0;
- /* We return a pointer to the new active exec_stack_t */
+ // We return a pointer to the new active exec_stack_t
- /* The selector calls we catch are stored below: */
+ // The selector calls we catch are stored below:
int send_calls_nr = -1;
if (NULL == s) {
@@ -364,23 +339,20 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
}
while (framesize > 0) {
-
selector = validate_arithmetic(*argp++);
argc = validate_arithmetic(*argp);
- if (argc > 0x800) { /* More arguments than the stack could possibly accomodate for */
+ if (argc > 0x800) { // More arguments than the stack could possibly accomodate for
CORE_ERROR("SEND", "More than 0x800 arguments to function call\n");
return NULL;
}
- /* Check if a breakpoint is set on this method */
+ // Check if a breakpoint is set on this method
if (s->have_bp & BREAK_SELECTOR) {
breakpoint_t *bp;
char method_name [256];
- sprintf(method_name, "%s::%s",
- obj_get_name(s, send_obj),
- s->selector_names [selector]);
+ sprintf(method_name, "%s::%s", obj_get_name(s, send_obj), s->selector_names [selector]);
bp = s->bp_list;
while (bp) {
@@ -389,8 +361,7 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
cmplen = 256;
if (bp->type == BREAK_SELECTOR && !strncmp(bp->data.name, method_name, cmplen)) {
- sciprintf("Break on %s (in ["PREG"])\n", method_name,
- PRINT_REG(send_obj));
+ sciprintf("Break on %s (in ["PREG"])\n", method_name, PRINT_REG(send_obj));
script_debug_flag = print_send_action = 1;
bp_flag = 1;
break;
@@ -400,20 +371,15 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
}
#ifdef VM_DEBUG_SEND
- sciprintf("Send to "PREG", selector %04x (%s):",
- PRINT_REG(send_obj), selector, s->selector_names[selector]);
-#endif /* VM_DEBUG_SEND */
+ sciprintf("Send to "PREG", selector %04x (%s):", PRINT_REG(send_obj), selector, s->selector_names[selector]);
+#endif // VM_DEBUG_SEND
if (++send_calls_nr == (send_calls_allocated - 1))
- send_calls = (calls_struct_t*)sci_realloc(send_calls, sizeof(calls_struct_t)
- * (send_calls_allocated *= 2));
-
+ send_calls = (calls_struct_t *)sci_realloc(send_calls, sizeof(calls_struct_t) * (send_calls_allocated *= 2));
switch (lookup_selector(s, send_obj, selector, &varp, &funcp)) {
-
case SELECTOR_NONE:
- sciprintf("Send to invalid selector 0x%x of object at "PREG"\n",
- 0xffff & selector, PRINT_REG(send_obj));
+ sciprintf("Send to invalid selector 0x%x of object at "PREG"\n", 0xffff & selector, PRINT_REG(send_obj));
script_error_flag = script_debug_flag = 1;
--send_calls_nr;
break;
@@ -426,44 +392,40 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
sciprintf("Write "PREG"\n", PRINT_REG(argp[1]));
else
sciprintf("Read\n");
-#endif /* VM_DEBUG_SEND */
+#endif // VM_DEBUG_SEND
switch (argc) {
- case 0: /* Read selector */
+ case 0: // Read selector
if (print_send_action) {
sciprintf("[read selector]\n");
print_send_action = 0;
}
- /* fallthrough */
+ // fallthrough
case 1:
#ifndef STRICT_SEND
default:
#endif
- { /* Argument is supplied -> Selector should be set */
-
+ { // Argument is supplied -> Selector should be set
if (print_send_action) {
reg_t oldReg = *varp;
reg_t newReg = argp[1];
- sciprintf("[write to selector: change "PREG" to "PREG"]\n",
- PRINT_REG(oldReg), PRINT_REG(newReg));
+ sciprintf("[write to selector: change "PREG" to "PREG"]\n", PRINT_REG(oldReg), PRINT_REG(newReg));
print_send_action = 0;
}
- send_calls[send_calls_nr].address.var = varp; /* register the call */
+ send_calls[send_calls_nr].address.var = varp; // register the call
send_calls[send_calls_nr].argp = argp;
send_calls[send_calls_nr].argc = argc;
send_calls[send_calls_nr].selector = selector;
- send_calls[send_calls_nr].type = EXEC_STACK_TYPE_VARSELECTOR; /* Register as a varselector */
-
- } break;
+ send_calls[send_calls_nr].type = EXEC_STACK_TYPE_VARSELECTOR; // Register as a varselector
+ }
+ break;
#ifdef STRICT_SEND
default:
--send_calls_nr;
- sciprintf("Send error: Variable selector %04x in "PREG" called with %04x params\n",
- selector, PRINT_REG(send_obj), argc);
- script_debug_flag = 1; /* Enter debug mode */
+ sciprintf("Send error: Variable selector %04x in "PREG" called with %04x params\n", selector, PRINT_REG(send_obj), argc);
+ script_debug_flag = 1; // Enter debug mode
_debug_seeking = _debug_step_running = 0;
-
#endif
}
break;
@@ -478,61 +440,46 @@ send_selector(state_t *s, reg_t send_obj, reg_t work_obj,
sciprintf(", ");
}
sciprintf(") at "PREG"\n", PRINT_REG(funcp));
-#endif /* VM_DEBUG_SEND */
+#endif // VM_DEBUG_SEND
if (print_send_action) {
sciprintf("[invoke selector]\n");
print_send_action = 0;
}
- send_calls[send_calls_nr].address.func = funcp; /* register call */
+ send_calls[send_calls_nr].address.func = funcp; // register call
send_calls[send_calls_nr].argp = argp;
send_calls[send_calls_nr].argc = argc;
send_calls[send_calls_nr].selector = selector;
send_calls[send_calls_nr].type = EXEC_STACK_TYPE_CALL;
send_calls[send_calls_nr].sp = sp;
- sp = CALL_SP_CARRY; /* Destroy sp, as it will be carried over */
+ sp = CALL_SP_CARRY; // Destroy sp, as it will be carried over
break;
- } /* switch(lookup_selector()) */
-
+ } // switch(lookup_selector())
framesize -= (2 + argc);
argp += argc + 1;
}
- /* Iterate over all registered calls in the reverse order. This way, the first call is
- ** placed on the TOS; as soon as it returns, it will cause the second call to be executed.
- */
+ // Iterate over all registered calls in the reverse order. This way, the first call is
+ // placed on the TOS; as soon as it returns, it will cause the second call to be executed.
for (; send_calls_nr >= 0; send_calls_nr--)
- if (send_calls[send_calls_nr].type == EXEC_STACK_TYPE_VARSELECTOR) /* Write/read variable? */
- retval = add_exec_stack_varselector(s, work_obj, send_calls[send_calls_nr].argc,
- send_calls[send_calls_nr].argp,
- send_calls[send_calls_nr].selector,
- send_calls[send_calls_nr].address.var, origin);
-
+ if (send_calls[send_calls_nr].type == EXEC_STACK_TYPE_VARSELECTOR) // Write/read variable?
+ retval = add_exec_stack_varselector(s, work_obj, send_calls[send_calls_nr].argc, send_calls[send_calls_nr].argp,
+ send_calls[send_calls_nr].selector, send_calls[send_calls_nr].address.var, origin);
else
- retval =
- add_exec_stack_entry(s, send_calls[send_calls_nr].address.func,
- send_calls[send_calls_nr].sp, work_obj,
- send_calls[send_calls_nr].argc,
- send_calls[send_calls_nr].argp,
- send_calls[send_calls_nr].selector,
- send_obj, origin,
- SCI_XS_CALLEE_LOCALS);
-
+ retval = add_exec_stack_entry(s, send_calls[send_calls_nr].address.func, send_calls[send_calls_nr].sp, work_obj,
+ send_calls[send_calls_nr].argc, send_calls[send_calls_nr].argp,
+ send_calls[send_calls_nr].selector, send_obj, origin, SCI_XS_CALLEE_LOCALS);
_exec_varselectors(s);
retval = s->execution_stack + s->execution_stack_pos;
return retval;
}
-
-exec_stack_t *
-add_exec_stack_varselector(state_t *s, reg_t objp, int argc, stack_ptr_t argp,
- selector_t selector, reg_t *address, int origin) {
- exec_stack_t *xstack = add_exec_stack_entry(s, NULL_REG, address, objp, argc, argp,
- selector, objp, origin, SCI_XS_CALLEE_LOCALS);
- /* Store selector address in sp */
+exec_stack_t *add_exec_stack_varselector(state_t *s, reg_t objp, int argc, stack_ptr_t argp, selector_t selector, reg_t *address, int origin) {
+ exec_stack_t *xstack = add_exec_stack_entry(s, NULL_REG, address, objp, argc, argp, selector, objp, origin, SCI_XS_CALLEE_LOCALS);
+ // Store selector address in sp
xstack->addr.varp = address;
xstack->type = EXEC_STACK_TYPE_VARSELECTOR;
@@ -540,26 +487,19 @@ add_exec_stack_varselector(state_t *s, reg_t objp, int argc, stack_ptr_t argp,
return xstack;
}
-
-exec_stack_t *
-add_exec_stack_entry(state_t *s, reg_t pc, stack_ptr_t sp, reg_t objp, int argc,
- stack_ptr_t argp, selector_t selector, reg_t sendp, int origin,
- seg_id_t locals_segment)
-/* Returns new TOS element for the execution stack*/
-/* locals_segment may be -1 if derived from the called object */
-{
+exec_stack_t *add_exec_stack_entry(state_t *s, reg_t pc, stack_ptr_t sp, reg_t objp, int argc,
+ stack_ptr_t argp, selector_t selector, reg_t sendp, int origin, seg_id_t locals_segment) {
+ // Returns new TOS element for the execution stack
+ // locals_segment may be -1 if derived from the called object
exec_stack_t *xstack = NULL;
if (!s->execution_stack)
- s->execution_stack =
- (exec_stack_t*)sci_malloc(sizeof(exec_stack_t) * (s->execution_stack_size = 16));
+ s->execution_stack = (exec_stack_t *)sci_malloc(sizeof(exec_stack_t) * (s->execution_stack_size = 16));
- if (++(s->execution_stack_pos) == s->execution_stack_size) /* Out of stack space? */
- s->execution_stack = (exec_stack_t*)sci_realloc(s->execution_stack,
- sizeof(exec_stack_t) * (s->execution_stack_size += 8));
+ if (++(s->execution_stack_pos) == s->execution_stack_size) // Out of stack space?
+ s->execution_stack = (exec_stack_t*)sci_realloc(s->execution_stack, sizeof(exec_stack_t) * (s->execution_stack_size += 8));
- /* sciprintf("Exec stack: [%d/%d], origin %d, at %p\n", s->execution_stack_pos,
- s->execution_stack_size, origin, s->execution_stack); */
+ //sciprintf("Exec stack: [%d/%d], origin %d, at %p\n", s->execution_stack_pos, s->execution_stack_size, origin, s->execution_stack);
xstack = s->execution_stack + s->execution_stack_pos;
@@ -574,27 +514,24 @@ add_exec_stack_entry(state_t *s, reg_t pc, stack_ptr_t sp, reg_t objp, int argc,
xstack->fp = xstack->sp = sp;
xstack->argc = argc;
- xstack->variables_argp = argp; /* Parameters */
+ xstack->variables_argp = argp; // Parameters
- *argp = make_reg(0, argc); /* SCI code relies on the zeroeth argument to equal argc */
+ *argp = make_reg(0, argc); // SCI code relies on the zeroeth argument to equal argc
- /* Additional debug information */
+ // Additional debug information
xstack->selector = selector;
xstack->origin = origin;
- xstack->type = EXEC_STACK_TYPE_CALL; /* Normal call */
+ xstack->type = EXEC_STACK_TYPE_CALL; // Normal call
return xstack;
}
-
#ifdef DISABLE_VALIDATONS
# define kernel_matches_signature(a, b, c, d) 1
#endif
-
-void
-vm_handle_fatal_error(state_t *s, int line, const char *file) {
+void vm_handle_fatal_error(state_t *s, int line, const char *file) {
error("Fatal VM error in %s, L%d; aborting...\n", file, line);
#ifdef HAVE_SETJMP_H
if (jump_initialized)
@@ -604,8 +541,7 @@ vm_handle_fatal_error(state_t *s, int line, const char *file) {
exit(1);
}
-static inline script_t *
-script_locate_by_segment(state_t *s, seg_id_t seg) {
+static inline script_t *script_locate_by_segment(state_t *s, seg_id_t seg) {
mem_obj_t *memobj = GET_SEGMENT(s->seg_manager, seg, MEM_OBJ_SCRIPT);
if (memobj)
return &(memobj->data.script);
@@ -613,9 +549,7 @@ script_locate_by_segment(state_t *s, seg_id_t seg) {
return NULL;
}
-
-static reg_t
-pointer_add(state_t *s, reg_t base, int offset) {
+static reg_t pointer_add(state_t *s, reg_t base, int offset) {
mem_obj_t *mobj = GET_SEGMENT_ANY(s->seg_manager, base.segment);
if (!mobj) {
@@ -644,8 +578,7 @@ pointer_add(state_t *s, reg_t base, int offset) {
}
}
-static inline void
-gc_countdown(state_t *s) {
+static inline void gc_countdown(state_t *s) {
if (s->gc_countdown-- <= 0) {
s->gc_countdown = script_gc_interval;
run_gc(s);
@@ -654,32 +587,30 @@ gc_countdown(state_t *s) {
static byte _fake_return_buffer[2] = {op_ret << 1, op_ret << 1};
-void
-run_vm(state_t *s, int restoring) {
- reg_t *variables[4]; /* global, local, temp, param, as immediate pointers */
- reg_t *variables_base[4]; /* Used for referencing VM ops */
- seg_id_t variables_seg[4]; /* Same as above, contains segment IDs */
+void run_vm(state_t *s, int restoring) {
+ reg_t *variables[4]; // global, local, temp, param, as immediate pointers
+ reg_t *variables_base[4]; // Used for referencing VM ops
+ seg_id_t variables_seg[4]; // Same as above, contains segment IDs
#ifndef DISABLE_VALIDATIONS
- int variables_max[4]; /* Max. values for all variables */
- unsigned int code_buf_size = 0 /* (Avoid spurious warning) */;
+ int variables_max[4]; // Max. values for all variables
+ unsigned int code_buf_size = 0 ; // (Avoid spurious warning)
#endif
int temp;
- gint16 aux_acc; /* Auxiliary 16 bit accumulator */
- reg_t r_temp; /* Temporary register */
- stack_ptr_t s_temp; /* Temporary stack pointer */
- gint16 opparams[4]; /* opcode parameters */
-
- int restadjust = s->r_amp_rest; /* &rest adjusts the parameter count
- ** by this value */
- /* Current execution data: */
+ gint16 aux_acc; // Auxiliary 16 bit accumulator
+ reg_t r_temp; // Temporary register
+ stack_ptr_t s_temp; // Temporary stack pointer
+ gint16 opparams[4]; // opcode parameters
+
+ int restadjust = s->r_amp_rest;
+ // &rest adjusts the parameter count by this value
+ // Current execution data:
exec_stack_t *xs = s->execution_stack + s->execution_stack_pos;
- exec_stack_t *xs_new = NULL /* (Avoid spurious warning) */; /* Used during some operations */
+ exec_stack_t *xs_new = NULL;
object_t *obj = obj_get(s, xs->objp);
script_t *local_script = script_locate_by_segment(s, xs->local_segment);
- int old_execution_stack_base = s->execution_stack_base; /* Used to detect the
- ** stack bottom, for "physical"
- ** returns */
- byte *code_buf = NULL /* (Avoid spurious warning) */;
+ int old_execution_stack_base = s->execution_stack_base;
+ // Used to detect the stack bottom, for "physical" returns
+ byte *code_buf = NULL; // (Avoid spurious warning)
if (!local_script) {
script_error(s, __FILE__, __LINE__, "Program Counter gone astray");
@@ -700,7 +631,7 @@ run_vm(state_t *s, int restoring) {
s->execution_stack_base = s->execution_stack_pos;
#ifndef DISABLE_VALIDATIONS
- /* Initialize maximum variable count */
+ // Initialize maximum variable count
if (s->script_000->locals_block)
variables_max[VAR_GLOBAL] = s->script_000->locals_block->nr;
else
@@ -711,23 +642,22 @@ run_vm(state_t *s, int restoring) {
variables_seg[VAR_TEMP] = variables_seg[VAR_PARAM] = s->stack_segment;
variables_base[VAR_TEMP] = variables_base[VAR_PARAM] = s->stack_base;
- /* SCI code reads the zeroeth argument to determine argc */
+ // SCI code reads the zeroeth argument to determine argc
if (s->script_000->locals_block)
- variables_base[VAR_GLOBAL] = variables[VAR_GLOBAL]
- = s->script_000->locals_block->locals;
+ variables_base[VAR_GLOBAL] = variables[VAR_GLOBAL] = s->script_000->locals_block->locals;
else
variables_base[VAR_GLOBAL] = variables[VAR_GLOBAL] = NULL;
- s->execution_stack_pos_changed = 1; /* Force initialization */
+ s->execution_stack_pos_changed = 1; // Force initialization
while (1) {
byte opcode;
int old_pc_offset;
stack_ptr_t old_sp = xs->sp;
byte opnumber;
- int var_type; /* See description below */
+ int var_type; // See description below
int var_number;
old_pc_offset = xs->addr.pc.offset;
@@ -739,7 +669,7 @@ run_vm(state_t *s, int restoring) {
scr = script_locate_by_segment(s, xs->addr.pc.segment);
if (!scr) {
- /* No script? Implicit return via fake instruction buffer */
+ // No script? Implicit return via fake instruction buffer
warning("Running on non-existant script in segment %x", xs->addr.pc.segment);
code_buf = _fake_return_buffer;
#ifndef DISABLE_VALIDATIONS
@@ -755,9 +685,9 @@ run_vm(state_t *s, int restoring) {
#ifndef DISABLE_VALIDATIONS
code_buf_size = scr->buf_size;
#endif
- /* if (!obj) {
+ /*if (!obj) {
SCIkdebug(SCIkWARNING, "Running with non-existant self= "PREG"\n", PRINT_REG(xs->objp));
- }*/
+ }*/
local_script = script_locate_by_segment(s, xs->local_segment);
if (!local_script) {
@@ -771,11 +701,9 @@ run_vm(state_t *s, int restoring) {
variables_seg[VAR_LOCAL] = local_script->locals_segment;
if (local_script->locals_block)
- variables_base[VAR_LOCAL] = variables[VAR_LOCAL]
- = local_script->locals_block->locals;
+ variables_base[VAR_LOCAL] = variables[VAR_LOCAL] = local_script->locals_block->locals;
else
- variables_base[VAR_LOCAL] = variables[VAR_LOCAL]
- = NULL;
+ variables_base[VAR_LOCAL] = variables[VAR_LOCAL] = NULL;
#ifndef DISABLE_VALIDATIONS
if (local_script->locals_block)
variables_max[VAR_LOCAL] = local_script->locals_block->nr;
@@ -791,16 +719,14 @@ run_vm(state_t *s, int restoring) {
}
- script_error_flag = 0; /* Set error condition to false */
+ script_error_flag = 0; // Set error condition to false
if (script_abort_flag)
- return; /* Emergency */
+ return; // Emergency
- /* Debug if this has been requested: */
+ // Debug if this has been requested:
if (script_debug_flag || sci_debug_flags) {
- script_debug(s, &(xs->addr.pc), &(xs->sp), &(xs->fp),
- &(xs->objp), &restadjust,
- variables_seg, variables, variables_base,
+ script_debug(s, &(xs->addr.pc), &(xs->sp), &(xs->fp), &(xs->objp), &restadjust, variables_seg, variables, variables_base,
#ifdef DISABLE_VALIDATIONS
NULL,
#else
@@ -820,11 +746,11 @@ run_vm(state_t *s, int restoring) {
script_error(s, "[VM] "__FILE__, __LINE__, "Program Counter gone astray");
#endif
- opcode = GET_OP_BYTE(); /* Get opcode */
+ opcode = GET_OP_BYTE(); // Get opcode
opnumber = opcode >> 1;
- for (temp = 0; formats[opnumber][temp]; temp++) /* formats comes from script.c */
+ for (temp = 0; formats[opnumber][temp]; temp++)
switch (formats[opnumber][temp]) {
case Script_Byte:
@@ -868,27 +794,25 @@ run_vm(state_t *s, int restoring) {
default:
sciprintf("opcode %02x: Invalid!", opcode);
script_debug_flag = script_error_flag = 1;
-
}
// TODO: Replace the following by an opcode table, and several methods for
// each opcode.
switch (opnumber) {
- case 0x00: /* bnot */
+ case 0x00: // bnot
s->r_acc = ACC_ARITHMETIC_L(0xffff ^ /*acc*/);
break;
- case 0x01: /* add */
+ case 0x01: // add
r_temp = POP32();
if (r_temp.segment || s->r_acc.segment) {
reg_t r_ptr;
int offset;
- /* Pointer arithmetics! */
+ // Pointer arithmetics!
if (s->r_acc.segment) {
if (r_temp.segment) {
- sciprintf("Error: Attempt to add two pointers, stack="PREG" and acc="PREG"",
- PRINT_REG(r_temp), PRINT_REG(s->r_acc));
+ sciprintf("Error: Attempt to add two pointers, stack="PREG" and acc="PREG"", PRINT_REG(r_temp), PRINT_REG(s->r_acc));
script_debug_flag = script_error_flag = 1;
offset = 0;
} else {
@@ -906,16 +830,15 @@ run_vm(state_t *s, int restoring) {
s->r_acc = make_reg(0, r_temp.offset + s->r_acc.offset);
break;
- case 0x02: /* sub */
+ case 0x02: // sub
r_temp = POP32();
if (r_temp.segment || s->r_acc.segment) {
reg_t r_ptr;
int offset;
- /* Pointer arithmetics! */
+ // Pointer arithmetics!
if (s->r_acc.segment) {
if (r_temp.segment) {
- sciprintf("Error: Attempt to subtract two pointers, stack="PREG" and acc="PREG"",
- PRINT_REG(r_temp), PRINT_REG(s->r_acc));
+ sciprintf("Error: Attempt to subtract two pointers, stack="PREG" and acc="PREG"", PRINT_REG(r_temp), PRINT_REG(s->r_acc));
script_debug_flag = script_error_flag = 1;
offset = 0;
} else {
@@ -933,146 +856,145 @@ run_vm(state_t *s, int restoring) {
s->r_acc = make_reg(0, r_temp.offset - s->r_acc.offset);
break;
- case 0x03: /* mul */
+ case 0x03: // mul
s->r_acc = ACC_ARITHMETIC_L(((gint16)POP()) * (gint16)/*acc*/);
break;
- case 0x04: /* div */
+ case 0x04: // div
ACC_AUX_LOAD();
aux_acc = aux_acc != 0 ? ((gint16)POP()) / aux_acc : 0;
ACC_AUX_STORE();
break;
- case 0x05: /* mod */
+ case 0x05: // mod
ACC_AUX_LOAD();
aux_acc = aux_acc != 0 ? ((gint16)POP()) % aux_acc : 0;
ACC_AUX_STORE();
break;
- case 0x06: /* shr */
+ case 0x06: // shr
s->r_acc = ACC_ARITHMETIC_L(((guint16) POP()) >> /*acc*/);
break;
- case 0x07: /* shl */
- s->r_acc = ACC_ARITHMETIC_L(((guint16) POP()) << /*acc*/);
+ case 0x07: // shl
+ s->r_acc = ACC_ARITHMETIC_L(((guint16)POP()) << /*acc*/);
break;
- case 0x08: /* xor */
+ case 0x08: // xor
s->r_acc = ACC_ARITHMETIC_L(POP() ^ /*acc*/);
break;
- case 0x09: /* and */
+ case 0x09: // and
s->r_acc = ACC_ARITHMETIC_L(POP() & /*acc*/);
break;
- case 0x0a: /* or */
+ case 0x0a: // or
s->r_acc = ACC_ARITHMETIC_L(POP() | /*acc*/);
break;
- case 0x0b: /* neg */
+ case 0x0b: // neg
s->r_acc = ACC_ARITHMETIC_L(-/*acc*/);
break;
- case 0x0c: /* not */
+ case 0x0c: // not
s->r_acc = make_reg(0, !(s->r_acc.offset || s->r_acc.segment));
- /* Must allow pointers to be negated, as this is used for
- ** checking whether objects exist */
+ // Must allow pointers to be negated, as this is used for checking whether objects exist
break;
- case 0x0d: /* eq? */
+ case 0x0d: // eq?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, REG_EQ(r_temp, s->r_acc));
- /* Explicitly allow pointers to be compared */
+ // Explicitly allow pointers to be compared
break;
- case 0x0e: /* ne? */
+ case 0x0e: // ne?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, !REG_EQ(r_temp, s->r_acc));
- /* Explicitly allow pointers to be compared */
+ // Explicitly allow pointers to be compared
break;
- case 0x0f: /* gt? */
+ case 0x0f: // gt?
s->r_prev = s->r_acc;
s->r_acc = ACC_ARITHMETIC_L((gint16)POP() > (gint16)/*acc*/);
break;
- case 0x10: /* ge? */
+ case 0x10: // ge?
s->r_prev = s->r_acc;
s->r_acc = ACC_ARITHMETIC_L((gint16)POP() >= (gint16)/*acc*/);
break;
- case 0x11: /* lt? */
+ case 0x11: // lt?
s->r_prev = s->r_acc;
s->r_acc = ACC_ARITHMETIC_L((gint16)POP() < (gint16)/*acc*/);
break;
- case 0x12: /* le? */
+ case 0x12: // le?
s->r_prev = s->r_acc;
s->r_acc = ACC_ARITHMETIC_L((gint16)POP() <= (gint16)/*acc*/);
break;
- case 0x13: /* ugt? */
+ case 0x13: // ugt?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, (r_temp.segment == s->r_acc.segment) && r_temp.offset > s->r_acc.offset);
break;
- case 0x14: /* uge? */
+ case 0x14: // uge?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, (r_temp.segment == s->r_acc.segment) && r_temp.offset >= s->r_acc.offset);
break;
- case 0x15: /* ult? */
+ case 0x15: // ult?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, (r_temp.segment == s->r_acc.segment) && r_temp.offset < s->r_acc.offset);
break;
- case 0x16: /* ule? */
+ case 0x16: // ule?
s->r_prev = s->r_acc;
r_temp = POP32();
s->r_acc = make_reg(0, (r_temp.segment == s->r_acc.segment) && r_temp.offset <= s->r_acc.offset);
break;
- case 0x17: /* bt */
+ case 0x17: // bt
if (s->r_acc.offset || s->r_acc.segment)
xs->addr.pc.offset += opparams[0];
break;
- case 0x18: /* bnt */
+ case 0x18: // bnt
if (!(s->r_acc.offset || s->r_acc.segment))
xs->addr.pc.offset += opparams[0];
break;
- case 0x19: /* jmp */
+ case 0x19: // jmp
xs->addr.pc.offset += opparams[0];
break;
- case 0x1a: /* ldi */
+ case 0x1a: // ldi
s->r_acc = make_reg(0, opparams[0]);
break;
- case 0x1b: /* push */
+ case 0x1b: // push
PUSH32(s->r_acc);
break;
- case 0x1c: /* pushi */
+ case 0x1c: // pushi
PUSH(opparams[0]);
break;
- case 0x1d: /* toss */
+ case 0x1d: // toss
xs->sp--;
break;
- case 0x1e: /* dup */
+ case 0x1e: // dup
r_temp = xs->sp[-1];
PUSH32(r_temp);
break;
- case 0x1f: { /* link */
+ case 0x1f: { // link
int i;
for (i = 0; i < opparams[0]; i++)
xs->sp[i] = NULL_REG;
@@ -1080,41 +1002,34 @@ run_vm(state_t *s, int restoring) {
break;
}
- case 0x20: { /* call */
- int argc = (opparams[1] >> 1) /* Given as offset, but we need count */
+ case 0x20: { // call
+ int argc = (opparams[1] >> 1) // Given as offset, but we need count
+ 1 + restadjust;
stack_ptr_t call_base = xs->sp - argc;
xs->sp[1].offset += restadjust;
- xs_new = add_exec_stack_entry(s, make_reg(xs->addr.pc.segment,
- xs->addr.pc.offset
- + opparams[0]),
- xs->sp, xs->objp,
- (validate_arithmetic(*call_base))
- + restadjust,
- call_base, NULL_SELECTOR, xs->objp,
- s->execution_stack_pos, xs->local_segment);
- restadjust = 0; /* Used up the &rest adjustment */
+ xs_new = add_exec_stack_entry(s, make_reg(xs->addr.pc.segment, xs->addr.pc.offset + opparams[0]),
+ xs->sp, xs->objp, (validate_arithmetic(*call_base)) + restadjust,
+ call_base, NULL_SELECTOR, xs->objp, s->execution_stack_pos, xs->local_segment);
+ restadjust = 0; // Used up the &rest adjustment
xs->sp = call_base;
s->execution_stack_pos_changed = 1;
break;
}
- case 0x21: /* callk */
+ case 0x21: // callk
gc_countdown(s);
xs->sp -= (opparams[1] >> 1) + 1;
if (s->version >= SCI_VERSION_FTU_NEW_SCRIPT_HEADER) {
xs->sp -= restadjust;
- s->r_amp_rest = 0; /* We just used up the restadjust, remember? */
+ s->r_amp_rest = 0; // We just used up the restadjust, remember?
}
if (opparams[0] >= s->kfunct_nr) {
-
sciprintf("Invalid kernel function 0x%x requested\n", opparams[0]);
script_debug_flag = script_error_flag = 1;
-
} else {
int argc = ASSERT_ARITHMETIC(xs->sp[0]);
@@ -1122,21 +1037,16 @@ run_vm(state_t *s, int restoring) {
argc += restadjust;
if (s->kfunct_table[opparams[0]].signature
- && !kernel_matches_signature(s,
- s->kfunct_table[opparams[0]]
- .signature,
- argc, xs->sp + 1)) {
- sciprintf("[VM] Invalid arguments to kernel call %x\n",
- opparams[0]);
+ && !kernel_matches_signature(s, s->kfunct_table[opparams[0]].signature, argc, xs->sp + 1)) {
+ sciprintf("[VM] Invalid arguments to kernel call %x\n", opparams[0]);
script_debug_flag = script_error_flag = 1;
} else {
- s->r_acc = s->kfunct_table[opparams[0]]
- .fun(s, opparams[0], argc, xs->sp + 1);
+ s->r_acc = s->kfunct_table[opparams[0]].fun(s, opparams[0], argc, xs->sp + 1);
}
- /* Call kernel function */
+ // Call kernel function
- /* Calculate xs again: The kernel function might
- ** have spawned a new VM */
+ // Calculate xs again: The kernel function might
+ // have spawned a new VM
xs_new = s->execution_stack + s->execution_stack_pos;
s->execution_stack_pos_changed = 1;
@@ -1147,85 +1057,80 @@ run_vm(state_t *s, int restoring) {
}
break;
- case 0x22: /* callb */
+ case 0x22: // callb
temp = ((opparams[1] >> 1) + restadjust + 1);
s_temp = xs->sp;
xs->sp -= temp;
-
xs->sp[0].offset += restadjust;
- xs_new = execute_method(s, 0, opparams[0], s_temp, xs->objp,
- xs->sp[0].offset, xs->sp);
- restadjust = 0; /* Used up the &rest adjustment */
- if (xs_new) /* in case of error, keep old stack */
+ xs_new = execute_method(s, 0, opparams[0], s_temp, xs->objp, xs->sp[0].offset, xs->sp);
+ restadjust = 0; // Used up the &rest adjustment
+ if (xs_new) // in case of error, keep old stack
s->execution_stack_pos_changed = 1;
break;
- case 0x23: /* calle */
+ case 0x23: // calle
temp = ((opparams[2] >> 1) + restadjust + 1);
s_temp = xs->sp;
xs->sp -= temp;
xs->sp[0].offset += restadjust;
- xs_new = execute_method(s, opparams[0], opparams[1], s_temp, xs->objp,
- xs->sp[0].offset, xs->sp);
- restadjust = 0; /* Used up the &rest adjustment */
+ xs_new = execute_method(s, opparams[0], opparams[1], s_temp, xs->objp, xs->sp[0].offset, xs->sp);
+ restadjust = 0; // Used up the &rest adjustment
- if (xs_new) /* in case of error, keep old stack */
+ if (xs_new) // in case of error, keep old stack
s->execution_stack_pos_changed = 1;
break;
- case 0x24: /* ret */
+ case 0x24: // ret
do {
stack_ptr_t old_sp = xs->sp;
stack_ptr_t old_fp = xs->fp;
exec_stack_t *old_xs = s->execution_stack + s->execution_stack_pos;
- if (s->execution_stack_pos == s->execution_stack_base) { /* Have we reached the base? */
- s->execution_stack_base = old_execution_stack_base; /* Restore stack base */
+ if (s->execution_stack_pos == s->execution_stack_base) { // Have we reached the base?
+ s->execution_stack_base = old_execution_stack_base; // Restore stack base
--(s->execution_stack_pos);
s->execution_stack_pos_changed = 1;
- s->r_amp_rest = restadjust; /* Update &rest */
- return; /* "Hard" return */
+ s->r_amp_rest = restadjust; // Update &rest
+ return; // "Hard" return
}
if (old_xs->type == EXEC_STACK_TYPE_VARSELECTOR) {
- /* varselector access? */
- if (old_xs->argc) /* write? */
+ // varselector access?
+ if (old_xs->argc) // write?
*(old_xs->addr.varp) = old_xs->variables_argp[1];
- else /* No, read */
+ else // No, read
s->r_acc = *(old_xs->addr.varp);
}
- /* Not reached the base, so let's do a soft return */
+ // Not reached the base, so let's do a soft return
--(s->execution_stack_pos);
xs = old_xs - 1;
s->execution_stack_pos_changed = 1;
xs = s->execution_stack + s->execution_stack_pos;
- if (xs->sp == CALL_SP_CARRY /* Used in sends to 'carry' the stack pointer */
+ if (xs->sp == CALL_SP_CARRY // Used in sends to 'carry' the stack pointer
|| xs->type != EXEC_STACK_TYPE_CALL) {
xs->sp = old_sp;
xs->fp = old_fp;
}
} while (xs->type == EXEC_STACK_TYPE_VARSELECTOR);
- /* Iterate over all varselector accesses */
+ // Iterate over all varselector accesses
s->execution_stack_pos_changed = 1;
xs_new = xs;
break;
- case 0x25: /* send */
+ case 0x25: // send
s_temp = xs->sp;
- xs->sp -= ((opparams[0] >> 1) + restadjust); /* Adjust stack */
+ xs->sp -= ((opparams[0] >> 1) + restadjust); // Adjust stack
xs->sp[1].offset += restadjust;
- xs_new = send_selector(s, s->r_acc, s->r_acc, s_temp,
- (int)(opparams[0] >> 1) + (word)restadjust,
- xs->sp);
+ xs_new = send_selector(s, s->r_acc, s->r_acc, s_temp, (int)(opparams[0] >> 1) + (word)restadjust, xs->sp);
if (xs_new && xs_new != xs)
s->execution_stack_pos_changed = 1;
@@ -1234,18 +1139,16 @@ run_vm(state_t *s, int restoring) {
break;
- case 0x28: /* class */
- s->r_acc = get_class_address(s, (unsigned) opparams[0], SCRIPT_GET_LOCK, xs->addr.pc);
+ case 0x28: // class
+ s->r_acc = get_class_address(s, (unsigned)opparams[0], SCRIPT_GET_LOCK, xs->addr.pc);
break;
- case 0x2a: /* self */
+ case 0x2a: // self
s_temp = xs->sp;
- xs->sp -= ((opparams[0] >> 1) + restadjust); /* Adjust stack */
+ xs->sp -= ((opparams[0] >> 1) + restadjust); // Adjust stack
xs->sp[1].offset += restadjust;
- xs_new = send_selector(s, xs->objp, xs->objp, s_temp,
- (int)(opparams[0] >> 1) + (word)restadjust,
- xs->sp);
+ xs_new = send_selector(s, xs->objp, xs->objp, s_temp, (int)(opparams[0] >> 1) + (word)restadjust, xs->sp);
if (xs_new && xs_new != xs)
s->execution_stack_pos_changed = 1;
@@ -1253,19 +1156,17 @@ run_vm(state_t *s, int restoring) {
restadjust = 0;
break;
- case 0x2b: /* super */
+ case 0x2b: // super
r_temp = get_class_address(s, opparams[0], SCRIPT_GET_LOAD, xs->addr.pc);
if (!r_temp.segment)
CORE_ERROR("VM", "Invalid superclass in object");
else {
s_temp = xs->sp;
- xs->sp -= ((opparams[1] >> 1) + restadjust); /* Adjust stack */
+ xs->sp -= ((opparams[1] >> 1) + restadjust); // Adjust stack
xs->sp[1].offset += restadjust;
- xs_new = send_selector(s, r_temp, xs->objp, s_temp,
- (int)(opparams[1] >> 1) + (word)restadjust,
- xs->sp);
+ xs_new = send_selector(s, r_temp, xs->objp, s_temp, (int)(opparams[1] >> 1) + (word)restadjust, xs->sp);
if (xs_new && xs_new != xs)
s->execution_stack_pos_changed = 1;
@@ -1275,9 +1176,9 @@ run_vm(state_t *s, int restoring) {
break;
- case 0x2c: /* &rest */
- temp = (guint16) opparams[0]; /* First argument */
- restadjust = xs->argc - temp + 1; /* +1 because temp counts the paramcount while argc doesn't */
+ case 0x2c: // &rest
+ temp = (guint16) opparams[0]; // First argument
+ restadjust = xs->argc - temp + 1; // +1 because temp counts the paramcount while argc doesn't
if (restadjust < 0)
restadjust = 0;
@@ -1286,74 +1187,72 @@ run_vm(state_t *s, int restoring) {
break;
- case 0x2d: /* lea */
+ case 0x2d: // lea
temp = (guint16) opparams[0] >> 1;
- var_number = temp & 0x03; /* Get variable type */
+ var_number = temp & 0x03; // Get variable type
- /* Get variable block offset */
+ // Get variable block offset
r_temp.segment = variables_seg[var_number];
r_temp.offset = variables[var_number] - variables_base[var_number];
- if (temp & 0x08) /* Add accumulator offset if requested */
+ if (temp & 0x08) // Add accumulator offset if requested
r_temp.offset += signed_validate_arithmetic(s->r_acc);
- r_temp.offset += opparams[1]; /* Add index */
+ r_temp.offset += opparams[1]; // Add index
r_temp.offset *= sizeof(reg_t);
- /* That's the immediate address now */
+ // That's the immediate address now
s->r_acc = r_temp;
break;
- case 0x2e: /* selfID */
+ case 0x2e: // selfID
s->r_acc = xs->objp;
break;
- case 0x30: /* pprev */
+ case 0x30: // pprev
PUSH32(s->r_prev);
break;
- case 0x31: /* pToa */
+ case 0x31: // pToa
s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1));
break;
- case 0x32: /* aTop */
+ case 0x32: // aTop
OBJ_PROPERTY(obj, (opparams[0] >> 1)) = s->r_acc;
break;
- case 0x33: /* pTos */
+ case 0x33: // pTos
PUSH32(OBJ_PROPERTY(obj, opparams[0] >> 1));
break;
- case 0x34: /* sTop */
+ case 0x34: // sTop
OBJ_PROPERTY(obj, (opparams[0] >> 1)) = POP32();
break;
- case 0x35: /* ipToa */
+ case 0x35: // ipToa
s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1));
- s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1)) =
- ACC_ARITHMETIC_L(1 + /*acc*/);
+ s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1)) = ACC_ARITHMETIC_L(1 + /*acc*/);
break;
- case 0x36: /* dpToa */
+ case 0x36: // dpToa
s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1));
- s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1)) =
- ACC_ARITHMETIC_L(-1 + /*acc*/);
+ s->r_acc = OBJ_PROPERTY(obj, (opparams[0] >> 1)) = ACC_ARITHMETIC_L(-1 + /*acc*/);
break;
- case 0x37: /* ipTos */
+ case 0x37: // ipTos
ASSERT_ARITHMETIC(OBJ_PROPERTY(obj, (opparams[0] >> 1)));
temp = ++OBJ_PROPERTY(obj, (opparams[0] >> 1)).offset;
PUSH(temp);
break;
- case 0x38: /* dpTos */
+ case 0x38: // dpTos
ASSERT_ARITHMETIC(OBJ_PROPERTY(obj, (opparams[0] >> 1)));
temp = --OBJ_PROPERTY(obj, (opparams[0] >> 1)).offset;
PUSH(temp);
break;
- case 0x39: /* lofsa */
+ case 0x39: // lofsa
s->r_acc.segment = xs->addr.pc.segment;
if (s->version >= SCI_VERSION(1, 001, 000))
@@ -1366,15 +1265,13 @@ run_vm(state_t *s, int restoring) {
#ifndef DISABLE_VALIDATIONS
if (s->r_acc.offset >= code_buf_size) {
sciprintf("VM: lofsa operation overflowed: "PREG" beyond end"
- " of script (at %04x)\n", PRINT_REG(s->r_acc),
- code_buf_size);
+ " of script (at %04x)\n", PRINT_REG(s->r_acc), code_buf_size);
script_error_flag = script_debug_flag = 1;
}
#endif
break;
-
- case 0x3a: /* lofss */
+ case 0x3a: // lofss
r_temp.segment = xs->addr.pc.segment;
if (s->version >= SCI_VERSION_FTU_LOFS_ABSOLUTE)
@@ -1384,207 +1281,184 @@ run_vm(state_t *s, int restoring) {
#ifndef DISABLE_VALIDATIONS
if (r_temp.offset >= code_buf_size) {
sciprintf("VM: lofss operation overflowed: "PREG" beyond end"
- " of script (at %04x)\n", PRINT_REG(r_temp),
- code_buf_size);
+ " of script (at %04x)\n", PRINT_REG(r_temp), code_buf_size);
script_error_flag = script_debug_flag = 1;
}
#endif
PUSH32(r_temp);
break;
- case 0x3b: /* push0 */
+ case 0x3b: // push0
PUSH(0);
break;
- case 0x3c: /* push1 */
+ case 0x3c: // push1
PUSH(1);
break;
- case 0x3d: /* push2 */
+ case 0x3d: // push2
PUSH(2);
break;
- case 0x3e: /* pushSelf */
+ case 0x3e: // pushSelf
PUSH32(xs->objp);
break;
- case 0x40: /* lag */
- case 0x41: /* lal */
- case 0x42: /* lat */
- case 0x43: /* lap */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x40: // lag
+ case 0x41: // lal
+ case 0x42: // lat
+ case 0x43: // lap
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
s->r_acc = READ_VAR(var_type, var_number, s->r_acc);
break;
- case 0x44: /* lsg */
- case 0x45: /* lsl */
- case 0x46: /* lst */
- case 0x47: /* lsp */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x44: // lsg
+ case 0x45: // lsl
+ case 0x46: // lst
+ case 0x47: // lsp
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
PUSH32(READ_VAR(var_type, var_number, s->r_acc));
break;
- case 0x48: /* lagi */
- case 0x49: /* lali */
- case 0x4a: /* lati */
- case 0x4b: /* lapi */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x48: // lagi
+ case 0x49: // lali
+ case 0x4a: // lati
+ case 0x4b: // lapi
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
s->r_acc = READ_VAR(var_type, var_number, s->r_acc);
break;
- case 0x4c: /* lsgi */
- case 0x4d: /* lsli */
- case 0x4e: /* lsti */
- case 0x4f: /* lspi */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x4c: // lsgi
+ case 0x4d: // lsli
+ case 0x4e: // lsti
+ case 0x4f: // lspi
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
PUSH32(READ_VAR(var_type, var_number, s->r_acc));
break;
- case 0x50: /* sag */
- case 0x51: /* sal */
- case 0x52: /* sat */
- case 0x53: /* sap */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x50: // sag
+ case 0x51: // sal
+ case 0x52: // sat
+ case 0x53: // sap
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
WRITE_VAR(var_type, var_number, s->r_acc);
break;
- case 0x54: /* ssg */
- case 0x55: /* ssl */
- case 0x56: /* sst */
- case 0x57: /* ssp */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x54: // ssg
+ case 0x55: // ssl
+ case 0x56: // sst
+ case 0x57: // ssp
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
WRITE_VAR(var_type, var_number, POP32());
break;
- case 0x58: /* sagi */
- case 0x59: /* sali */
- case 0x5a: /* sati */
- case 0x5b: /* sapi */
- /* Special semantics because it wouldn't really make a whole lot
- ** of sense otherwise, with acc being used for two things
- ** simultaneously... */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x58: // sagi
+ case 0x59: // sali
+ case 0x5a: // sati
+ case 0x5b: // sapi
+ // Special semantics because it wouldn't really make a whole lot
+ // of sense otherwise, with acc being used for two things
+ // simultaneously...
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
WRITE_VAR(var_type, var_number, s->r_acc = POP32());
break;
- case 0x5c: /* ssgi */
- case 0x5d: /* ssli */
- case 0x5e: /* ssti */
- case 0x5f: /* sspi */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x5c: // ssgi
+ case 0x5d: // ssli
+ case 0x5e: // ssti
+ case 0x5f: // sspi
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
WRITE_VAR(var_type, var_number, POP32());
break;
- case 0x60: /* +ag */
- case 0x61: /* +al */
- case 0x62: /* +at */
- case 0x63: /* +ap */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x60: // +ag
+ case 0x61: // +al
+ case 0x62: // +at
+ case 0x63: // +ap
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
- s->r_acc = make_reg(0,
- 1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ s->r_acc = make_reg(0, 1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
WRITE_VAR(var_type, var_number, s->r_acc);
break;
- case 0x64: /* +sg */
- case 0x65: /* +sl */
- case 0x66: /* +st */
- case 0x67: /* +sp */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x64: // +sg
+ case 0x65: // +sl
+ case 0x66: // +st
+ case 0x67: // +sp
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
- r_temp = make_reg(0,
- 1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ r_temp = make_reg(0, 1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
PUSH32(r_temp);
WRITE_VAR(var_type, var_number, r_temp);
break;
- case 0x68: /* +agi */
- case 0x69: /* +ali */
- case 0x6a: /* +ati */
- case 0x6b: /* +api */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x68: // +agi
+ case 0x69: // +ali
+ case 0x6a: // +ati
+ case 0x6b: // +api
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
- s->r_acc = make_reg(0,
- 1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ s->r_acc = make_reg(0, 1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
WRITE_VAR(var_type, var_number, s->r_acc);
break;
- case 0x6c: /* +sgi */
- case 0x6d: /* +sli */
- case 0x6e: /* +sti */
- case 0x6f: /* +spi */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x6c: // +sgi
+ case 0x6d: // +sli
+ case 0x6e: // +sti
+ case 0x6f: // +spi
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
- r_temp = make_reg(0,
- 1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ r_temp = make_reg(0, 1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
PUSH32(r_temp);
WRITE_VAR(var_type, var_number, r_temp);
break;
- case 0x70: /* -ag */
- case 0x71: /* -al */
- case 0x72: /* -at */
- case 0x73: /* -ap */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x70: // -ag
+ case 0x71: // -al
+ case 0x72: // -at
+ case 0x73: // -ap
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
- s->r_acc = make_reg(0,
- -1 + validate_arithmetic(READ_VAR(var_type,
- var_number, s->r_acc)));
+ s->r_acc = make_reg(0, -1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
WRITE_VAR(var_type, var_number, s->r_acc);
break;
- case 0x74: /* -sg */
- case 0x75: /* -sl */
- case 0x76: /* -st */
- case 0x77: /* -sp */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x74: // -sg
+ case 0x75: // -sl
+ case 0x76: // -st
+ case 0x77: // -sp
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0];
- r_temp = make_reg(0,
- -1 + validate_arithmetic(READ_VAR(var_type,
- var_number, s->r_acc)));
+ r_temp = make_reg(0, -1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
PUSH32(r_temp);
WRITE_VAR(var_type, var_number, r_temp);
break;
- case 0x78: /* -agi */
- case 0x79: /* -ali */
- case 0x7a: /* -ati */
- case 0x7b: /* -api */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x78: // -agi
+ case 0x79: // -ali
+ case 0x7a: // -ati
+ case 0x7b: // -api
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
- s->r_acc = make_reg(0,
- -1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ s->r_acc = make_reg(0, -1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
WRITE_VAR(var_type, var_number, s->r_acc);
break;
- case 0x7c: /* -sgi */
- case 0x7d: /* -sli */
- case 0x7e: /* -sti */
- case 0x7f: /* -spi */
- var_type = (opcode >> 1) & 0x3; /* Gets the variable type: g, l, t or p */
+ case 0x7c: // -sgi
+ case 0x7d: // -sli
+ case 0x7e: // -sti
+ case 0x7f: // -spi
+ var_type = (opcode >> 1) & 0x3; // Gets the variable type: g, l, t or p
var_number = opparams[0] + signed_validate_arithmetic(s->r_acc);
- r_temp = make_reg(0,
- -1 + validate_arithmetic(READ_VAR(var_type,
- var_number,
- s->r_acc)));
+ r_temp = make_reg(0, -1 + validate_arithmetic(READ_VAR(var_type, var_number, s->r_acc)));
PUSH32(r_temp);
WRITE_VAR(var_type, var_number, r_temp);
break;
@@ -1592,22 +1466,19 @@ run_vm(state_t *s, int restoring) {
default:
script_error(s, __FILE__, __LINE__, "Illegal opcode");
- } /* switch(opcode >> 1) */
-
+ } // switch(opcode >> 1)
- if (s->execution_stack_pos_changed) /* Force initialization */
+ if (s->execution_stack_pos_changed) // Force initialization
xs = xs_new;
#ifndef DISABLE_VALIDATIONS
if (xs != s->execution_stack + s->execution_stack_pos) {
- sciprintf("Error: xs is stale (%d vs %d); last command was %02x\n",
- xs - s->execution_stack, s->execution_stack_pos, opnumber);
+ sciprintf("Error: xs is stale (%d vs %d); last command was %02x\n", xs - s->execution_stack, s->execution_stack_pos, opnumber);
}
#endif
-
if (script_error_flag) {
- _debug_step_running = 0; /* Stop multiple execution */
- _debug_seeking = 0; /* Stop special seeks */
+ _debug_step_running = 0; // Stop multiple execution
+ _debug_seeking = 0; // Stop special seeks
xs->addr.pc.offset = old_pc_offset;
xs->sp = old_sp;
} else
@@ -1615,11 +1486,9 @@ run_vm(state_t *s, int restoring) {
}
}
-
-
-static inline int
-_obj_locate_varselector(state_t *s, object_t *obj, selector_t slc) { /* Determines if obj explicitly defines slc as a varselector */
- /* Returns -1 if not found */
+static inline int _obj_locate_varselector(state_t *s, object_t *obj, selector_t slc) {
+ // Determines if obj explicitly defines slc as a varselector
+ // Returns -1 if not found
if (s->version < SCI_VERSION(1, 001, 000)) {
int varnum = obj->variable_names_nr;
@@ -1630,10 +1499,10 @@ _obj_locate_varselector(state_t *s, object_t *obj, selector_t slc) { /* Determin
obj->base_vars = (guint16 *) buf;
for (i = 0; i < varnum; i++)
- if (getUInt16(buf + (i << 1)) == slc) /* Found it? */
- return i; /* report success */
+ if (getUInt16(buf + (i << 1)) == slc) // Found it?
+ return i; // report success
- return -1; /* Failed */
+ return -1; // Failed
} else {
byte *buf = (byte *) obj->base_vars;
int i;
@@ -1643,34 +1512,31 @@ _obj_locate_varselector(state_t *s, object_t *obj, selector_t slc) { /* Determin
buf = ((byte *) obj_get(s, obj->variables[SCRIPT_SUPERCLASS_SELECTOR])->base_vars);
for (i = 0; i < varnum; i++)
- if (getUInt16(buf + (i << 1)) == slc) /* Found it? */
- return i; /* report success */
+ if (getUInt16(buf + (i << 1)) == slc) // Found it?
+ return i; // report success
- return -1; /* Failed */
+ return -1; // Failed
}
}
-
-static inline int
-_class_locate_funcselector(state_t *s, object_t *obj, selector_t slc) { /* Determines if obj is a class and explicitly defines slc as a funcselector */
- /* Does NOT say anything about obj's superclasses, i.e. failure may be
- ** returned even if one of the superclasses defines the funcselector. */
+static inline int _class_locate_funcselector(state_t *s, object_t *obj, selector_t slc) {
+ // Determines if obj is a class and explicitly defines slc as a funcselector
+ // Does NOT say anything about obj's superclasses, i.e. failure may be
+ // returned even if one of the superclasses defines the funcselector.
int funcnum = obj->methods_nr;
int i;
for (i = 0; i < funcnum; i++)
- if (VM_OBJECT_GET_FUNCSELECTOR(obj, i) == slc) /* Found it? */
- return i; /* report success */
+ if (VM_OBJECT_GET_FUNCSELECTOR(obj, i) == slc) // Found it?
+ return i; // report success
- return -1; /* Failed */
+ return -1; // Failed
}
-
-static inline int
-_lookup_selector_function(state_t *s, int seg_id, object_t *obj, selector_t selector_id, reg_t *fptr) {
+static inline int _lookup_selector_function(state_t *s, int seg_id, object_t *obj, selector_t selector_id, reg_t *fptr) {
int index;
- /* "recursive" lookup */
+ // "recursive" lookup
while (obj) {
index = _class_locate_funcselector(s, obj, selector_id);
@@ -1678,14 +1544,9 @@ _lookup_selector_function(state_t *s, int seg_id, object_t *obj, selector_t sele
if (index >= 0) {
if (fptr) {
if (s->version < SCI_VERSION(1, 001, 000))
- *fptr = make_reg(obj->pos.segment,
- getUInt16((byte *)
- (obj->base_method + index
- + obj->methods_nr + 1)));
+ *fptr = make_reg(obj->pos.segment, getUInt16((byte *)(obj->base_method + index + obj->methods_nr + 1)));
else
- *fptr = make_reg(obj->pos.segment,
- getUInt16((byte *)
- (obj->base_method + index * 2 + 2)));
+ *fptr = make_reg(obj->pos.segment, getUInt16((byte *)(obj->base_method + index * 2 + 2)));
}
return SELECTOR_METHOD;
@@ -1698,14 +1559,13 @@ _lookup_selector_function(state_t *s, int seg_id, object_t *obj, selector_t sele
return SELECTOR_NONE;
}
-int
-lookup_selector(state_t *s, reg_t obj_location, selector_t selector_id, reg_t **vptr, reg_t *fptr) {
+int lookup_selector(state_t *s, reg_t obj_location, selector_t selector_id, reg_t **vptr, reg_t *fptr) {
object_t *obj = obj_get(s, obj_location);
object_t *species;
int index;
- /* Early SCI versions used the LSB in the selector ID as a read/write
- ** toggle, meaning that we must remove it for selector lookup. */
+ // Early SCI versions used the LSB in the selector ID as a read/write
+ // toggle, meaning that we must remove it for selector lookup.
if (s->version < SCI_VERSION_FTU_NEW_SCRIPT_HEADER)
selector_id &= ~1;
@@ -1731,23 +1591,20 @@ lookup_selector(state_t *s, reg_t obj_location, selector_t selector_id, reg_t **
index = _obj_locate_varselector(s, obj, selector_id);
if (index >= 0) {
- /* Found it as a variable */
+ // Found it as a variable
if (vptr)
*vptr = obj->variables + index;
return SELECTOR_VARIABLE;
}
- return
- _lookup_selector_function(s, obj_location.segment, obj, selector_id, fptr);
+ return _lookup_selector_function(s, obj_location.segment, obj, selector_id, fptr);
}
-
-/* Detects SCI versions by their different script header */
+// Detects SCI versions by their different script header
void script_detect_versions(state_t *s) {
int c;
resource_t *script = {0};
-
if (scir_find_resource(s->resmgr, sci_heap, 0, 0)) {
version_require_later_than(s, SCI_VERSION(1, 001, 000));
return;
@@ -1766,9 +1623,7 @@ void script_detect_versions(state_t *s) {
}
}
-
-seg_id_t
-script_get_segment(state_t *s, int script_nr, int load) {
+seg_id_t script_get_segment(state_t *s, int script_nr, int load) {
seg_id_t segment;
if ((load & SCRIPT_GET_LOAD) == SCRIPT_GET_LOAD)
@@ -1785,8 +1640,7 @@ script_get_segment(state_t *s, int script_nr, int load) {
return 0;
}
-reg_t
-script_lookup_export(state_t *s, int script_nr, int export_index) {
+reg_t script_lookup_export(state_t *s, int script_nr, int export_index) {
seg_id_t seg = script_get_segment(s, script_nr, SCRIPT_GET_DONT_LOAD);
mem_obj_t *memobj;
script_t *script = NULL;
@@ -1828,9 +1682,7 @@ script_lookup_export(state_t *s, int script_nr, int export_index) {
int sm_script_marked_deleted(seg_manager_t* self, int script_nr);
int sm_initialise_script(mem_obj_t *mem, struct _state *s, int script_nr);
-
-int
-script_instantiate_common(state_t *s, int script_nr, resource_t **script, resource_t **heap, int *was_new) {
+int script_instantiate_common(state_t *s, int script_nr, resource_t **script, resource_t **heap, int *was_new) {
int seg;
int seg_id;
int marked_for_deletion;
@@ -1845,7 +1697,7 @@ script_instantiate_common(state_t *s, int script_nr, resource_t **script, resour
if (!*script || (s->version >= SCI_VERSION(1, 001, 000) && !heap)) {
sciprintf("Script 0x%x requested but not found\n", script_nr);
- /* script_debug_flag = script_error_flag = 1; */
+ //script_debug_flag = script_error_flag = 1;
if (s->version >= SCI_VERSION(1, 001, 000)) {
if (*heap)
sciprintf("Inconsistency: heap resource WAS found\n");
@@ -1863,7 +1715,6 @@ script_instantiate_common(state_t *s, int script_nr, resource_t **script, resour
seg = sm_seg_get(&s->seg_manager, script_nr);
if (sm_script_is_loaded(&s->seg_manager, script_nr, SCRIPT_ID)) {
marked_for_deletion = sm_script_marked_deleted(&s->seg_manager, script_nr);
-
if (!marked_for_deletion) {
sm_increment_lockers(&s->seg_manager, seg, SEG_ID);
return seg;
@@ -1872,10 +1723,8 @@ script_instantiate_common(state_t *s, int script_nr, resource_t **script, resour
mem = s->seg_manager.heap[seg];
sm_free_script(mem);
}
- } else if (!(mem = sm_allocate_script(&s->seg_manager, s, script_nr, &seg_id))) { /* ALL YOUR SCRIPT BASE ARE BELONG TO US */
- sciprintf("Not enough heap space for script size 0x%x of script 0x%x,"
- " should this happen?`\n",
- (*script)->size, script_nr);
+ } else if (!(mem = sm_allocate_script(&s->seg_manager, s, script_nr, &seg_id))) { // ALL YOUR SCRIPT BASE ARE BELONG TO US
+ sciprintf("Not enough heap space for script size 0x%x of script 0x%x, should this happen?`\n", (*script)->size, script_nr);
script_debug_flag = script_error_flag = 1;
return 0;
}
@@ -1885,7 +1734,7 @@ script_instantiate_common(state_t *s, int script_nr, resource_t **script, resour
reg.segment = seg_id;
reg.offset = 0;
- /* Set heap position (beyond the size word) */
+ // Set heap position (beyond the size word)
sm_set_lockers(&s->seg_manager, 1, reg.segment, SEG_ID);
sm_set_export_table_offset(&s->seg_manager, 0, reg.segment, SEG_ID);
sm_set_synonyms_offset(&s->seg_manager, 0, reg.segment, SEG_ID);
@@ -1896,51 +1745,49 @@ script_instantiate_common(state_t *s, int script_nr, resource_t **script, resour
return seg_id;
}
-int
-script_instantiate_sci0(state_t *s, int script_nr) {
+int script_instantiate_sci0(state_t *s, int script_nr) {
int objtype;
unsigned int objlength;
reg_t reg, reg_tmp;
int seg_id;
int relocation = -1;
- int magic_pos_adder; /* Usually 0; 2 for older SCI versions */
+ int magic_pos_adder; // Usually 0; 2 for older SCI versions
resource_t *script;
int was_new;
seg_id = script_instantiate_common(s, script_nr, &script, NULL, &was_new);
- if (was_new) return seg_id;
+ if (was_new)
+ return seg_id;
reg.segment = seg_id;
reg.offset = 0;
if (s->version < SCI_VERSION_FTU_NEW_SCRIPT_HEADER) {
- /*
+ //
int locals_size = getUInt16(script->data)*2;
int locals = (locals_size)? script->size : 0;
- */
+
int locals_nr = getUInt16(script->data);
- /* Old script block */
- /* There won't be a localvar block in this case */
- /* Instead, the script starts with a 16 bit int specifying the
- ** number of locals we need; these are then allocated and zeroed. */
+ // Old script block
+ // There won't be a localvar block in this case
+ // Instead, the script starts with a 16 bit int specifying the
+ // number of locals we need; these are then allocated and zeroed.
sm_mcpy_in_out(&s->seg_manager, 0, script->data, script->size, reg.segment, SEG_ID);
- magic_pos_adder = 2; /* Step over the funny prefix */
+ magic_pos_adder = 2; // Step over the funny prefix
if (locals_nr)
- sm_script_initialise_locals_zero(&s->seg_manager,
- reg.segment, locals_nr);
+ sm_script_initialise_locals_zero(&s->seg_manager, reg.segment, locals_nr);
} else {
sm_mcpy_in_out(&s->seg_manager, 0, script->data, script->size, reg.segment, SEG_ID);
magic_pos_adder = 0;
}
- /* Now do a first pass through the script objects to find the
- ** export table and local variable block
- */
+ // Now do a first pass through the script objects to find the
+ // export table and local variable block
objlength = 0;
reg_tmp = reg;
@@ -1949,7 +1796,7 @@ script_instantiate_sci0(state_t *s, int script_nr) {
do {
reg_t data_base;
reg_t addr;
- reg.offset += objlength; /* Step over the last checked object */
+ reg.offset += objlength; // Step over the last checked object
objtype = SEG_GET_HEAP(s, reg);
if (!objtype) break;
@@ -1962,13 +1809,12 @@ script_instantiate_sci0(state_t *s, int script_nr) {
switch (objtype) {
case sci_obj_exports: {
- sm_set_export_table_offset(&s->seg_manager, data_base.offset,
- reg.segment, SEG_ID);
+ sm_set_export_table_offset(&s->seg_manager, data_base.offset, reg.segment, SEG_ID);
}
break;
case sci_obj_synonyms:
- sm_set_synonyms_offset(&s->seg_manager, addr.offset, reg.segment, SEG_ID); /* +4 is to step over the header */
+ sm_set_synonyms_offset(&s->seg_manager, addr.offset, reg.segment, SEG_ID); // +4 is to step over the header
sm_set_synonyms_nr(&s->seg_manager, (objlength) / 4, reg.segment, SEG_ID);
break;
@@ -1993,8 +1839,7 @@ script_instantiate_sci0(state_t *s, int script_nr) {
s->classtable[species].script = script_nr;
s->classtable[species].reg = addr;
s->classtable[species].reg.offset = classpos;
- /* Set technical class position-- into the block allocated for it */
-
+ // Set technical class position-- into the block allocated for it
}
break;
@@ -2002,18 +1847,18 @@ script_instantiate_sci0(state_t *s, int script_nr) {
break;
}
} while (objtype != 0);
- /* And now a second pass to adjust objects and class pointers, and the general pointers */
+ // And now a second pass to adjust objects and class pointers, and the general pointers
objlength = 0;
- reg.offset = magic_pos_adder; /* Reset counter */
+ reg.offset = magic_pos_adder; // Reset counter
do {
reg_t addr;
- reg.offset += objlength; /* Step over the last checked object */
+ reg.offset += objlength; // Step over the last checked object
objtype = SEG_GET_HEAP(s, reg);
if (!objtype) break;
objlength = SEG_GET_HEAP(s, make_reg(reg.segment, reg.offset + 2));
- reg.offset += 4; /* Step over header */
+ reg.offset += 4; // Step over header
addr = reg;
@@ -2022,25 +1867,22 @@ script_instantiate_sci0(state_t *s, int script_nr) {
sm_script_add_code_block(&s->seg_manager, addr);
break;
case sci_obj_object:
- case sci_obj_class: { /* object or class? */
+ case sci_obj_class: { // object or class?
object_t *obj = sm_script_obj_init(&s->seg_manager, s, addr);
object_t *base_obj;
- /* Instantiate the superclass, if neccessary */
- obj->variables[SCRIPT_SPECIES_SELECTOR] =
- INST_LOOKUP_CLASS(obj->variables[SCRIPT_SPECIES_SELECTOR].offset);
+ // Instantiate the superclass, if neccessary
+ obj->variables[SCRIPT_SPECIES_SELECTOR] = INST_LOOKUP_CLASS(obj->variables[SCRIPT_SPECIES_SELECTOR].offset);
base_obj = obj_get(s, obj->variables[SCRIPT_SPECIES_SELECTOR]);
obj->variable_names_nr = base_obj->variables_nr;
obj->base_obj = base_obj->base_obj;
- /* Copy base from species class, as we need its selector IDs */
-
- obj->variables[SCRIPT_SUPERCLASS_SELECTOR] =
- INST_LOOKUP_CLASS(obj->variables[SCRIPT_SUPERCLASS_SELECTOR].offset);
+ // Copy base from species class, as we need its selector IDs
- } /* if object or class */
+ obj->variables[SCRIPT_SUPERCLASS_SELECTOR] = INST_LOOKUP_CLASS(obj->variables[SCRIPT_SUPERCLASS_SELECTOR].offset);
+ } // if object or class
break;
- case sci_obj_pointers: /* A relocation table */
+ case sci_obj_pointers: // A relocation table
relocation = addr.offset;
break;
@@ -2048,7 +1890,7 @@ script_instantiate_sci0(state_t *s, int script_nr) {
break;
}
- reg.offset -= 4; /* Step back on header */
+ reg.offset -= 4; // Step back on header
} while ((objtype != 0) && (((unsigned)reg.offset) < script->size - 2));
@@ -2057,18 +1899,14 @@ script_instantiate_sci0(state_t *s, int script_nr) {
sm_script_free_unused_objects(&s->seg_manager, reg.segment);
- return reg.segment; /* instantiation successful */
+ return reg.segment; // instantiation successful
}
-void
-sm_script_relocate_exports_sci11(seg_manager_t *self, int seg);
-void
-sm_script_initialise_objects_sci11(seg_manager_t *self, state_t *s, int seg);
-void
-sm_heap_relocate(seg_manager_t *self, state_t *s, reg_t block);
+void sm_script_relocate_exports_sci11(seg_manager_t *self, int seg);
+void sm_script_initialise_objects_sci11(seg_manager_t *self, state_t *s, int seg);
+void sm_heap_relocate(seg_manager_t *self, state_t *s, reg_t block);
-int
-script_instantiate_sci11(state_t *s, int script_nr) {
+int script_instantiate_sci11(state_t *s, int script_nr) {
resource_t *script, *heap;
int seg_id;
int heap_start;
@@ -2077,7 +1915,8 @@ script_instantiate_sci11(state_t *s, int script_nr) {
seg_id = script_instantiate_common(s, script_nr, &script, &heap, &was_new);
- if (was_new) return seg_id;
+ if (was_new)
+ return seg_id;
heap_start = script->size;
if (script->size & 2)
@@ -2087,8 +1926,7 @@ script_instantiate_sci11(state_t *s, int script_nr) {
sm_mcpy_in_out(&s->seg_manager, heap_start, heap->data, heap->size, seg_id, SEG_ID);
if (getUInt16(script->data + 6) > 0)
- sm_set_export_table_offset(&s->seg_manager, 6,
- seg_id, SEG_ID);
+ sm_set_export_table_offset(&s->seg_manager, 6, seg_id, SEG_ID);
reg.segment = seg_id;
reg.offset = heap_start + 4;
@@ -2103,8 +1941,7 @@ script_instantiate_sci11(state_t *s, int script_nr) {
return seg_id;
}
-int
-script_instantiate(state_t *s, int script_nr) {
+int script_instantiate(state_t *s, int script_nr) {
if (s->version >= SCI_VERSION(1, 001, 000))
return script_instantiate_sci11(s, script_nr);
else
@@ -2113,68 +1950,66 @@ script_instantiate(state_t *s, int script_nr) {
void sm_mark_script_deleted(seg_manager_t* self, int script_nr);
-void
-script_uninstantiate_sci0(state_t *s, int script_nr, seg_id_t seg) {
+void script_uninstantiate_sci0(state_t *s, int script_nr, seg_id_t seg) {
reg_t reg = make_reg(seg, (s->version < SCI_VERSION_FTU_NEW_SCRIPT_HEADER) ? 2 : 0);
int objtype, objlength;
- /* Make a pass over the object in order uninstantiate all superclasses */
+ // Make a pass over the object in order uninstantiate all superclasses
objlength = 0;
do {
- reg.offset += objlength; /* Step over the last checked object */
+ reg.offset += objlength; // Step over the last checked object
objtype = SEG_GET_HEAP(s, reg);
if (!objtype) break;
- objlength = SEG_GET_HEAP(s, make_reg(reg.segment, reg.offset + 2)); /* use SEG_UGET_HEAP ?? */
+ objlength = SEG_GET_HEAP(s, make_reg(reg.segment, reg.offset + 2)); // use SEG_UGET_HEAP ??
- reg.offset += 4; /* Step over header */
+ reg.offset += 4; // Step over header
- if ((objtype == sci_obj_object) || (objtype == sci_obj_class)) { /* object or class? */
+ if ((objtype == sci_obj_object) || (objtype == sci_obj_class)) { // object or class?
int superclass;
reg.offset -= SCRIPT_OBJECT_MAGIC_OFFSET;
- superclass = OBJ_SUPERCLASS(s, reg); /* Get superclass... */
+ superclass = OBJ_SUPERCLASS(s, reg); // Get superclass...
if (superclass >= 0) {
int superclass_script = s->classtable[superclass].script;
if (superclass_script == script_nr) {
if (sm_get_lockers(&s->seg_manager, reg.segment, SEG_ID))
- sm_decrement_lockers(&s->seg_manager, reg.segment, SEG_ID); /* Decrease lockers if this is us ourselves */
+ sm_decrement_lockers(&s->seg_manager, reg.segment, SEG_ID); // Decrease lockers if this is us ourselves
} else
script_uninstantiate(s, superclass_script);
- /* Recurse to assure that the superclass lockers number gets decreased */
+ // Recurse to assure that the superclass lockers number gets decreased
}
reg.offset += SCRIPT_OBJECT_MAGIC_OFFSET;
- } /* if object or class */
+ } // if object or class
- reg.offset -= 4; /* Step back on header */
+ reg.offset -= 4; // Step back on header
} while (objtype != 0);
}
-void
-script_uninstantiate(state_t *s, int script_nr) {
+void script_uninstantiate(state_t *s, int script_nr) {
reg_t reg = make_reg(0, (s->version < SCI_VERSION_FTU_NEW_SCRIPT_HEADER) ? 2 : 0);
int i;
reg.segment = sm_seg_get(&s->seg_manager, script_nr);
- if (!sm_script_is_loaded(&s->seg_manager, script_nr, SCRIPT_ID) || reg.segment <= 0) { /* Is it already loaded? */
- /* sciprintf("Warning: unloading script 0x%x requested although not loaded\n", script_nr); */
- /* This is perfectly valid SCI behaviour */
+ if (!sm_script_is_loaded(&s->seg_manager, script_nr, SCRIPT_ID) || reg.segment <= 0) { // Is it already loaded?
+ //sciprintf("Warning: unloading script 0x%x requested although not loaded\n", script_nr);
+ // This is perfectly valid SCI behaviour
return;
}
- sm_decrement_lockers(&s->seg_manager, reg.segment, SEG_ID); /* One less locker */
+ sm_decrement_lockers(&s->seg_manager, reg.segment, SEG_ID); // One less locker
if (sm_get_lockers(&s->seg_manager, reg.segment, SEG_ID) > 0)
return;
- /* Free all classtable references to this script */
+ // Free all classtable references to this script
for (i = 0; i < s->classtable_size; i++)
if (s->classtable[i].reg.segment == reg.segment)
s->classtable[i].reg = NULL_REG;
@@ -2185,10 +2020,10 @@ script_uninstantiate(state_t *s, int script_nr) {
sciprintf("FIXME: Add proper script uninstantiation for SCI 1.1\n");
if (sm_get_lockers(&s->seg_manager, reg.segment, SEG_ID))
- return; /* if xxx.lockers > 0 */
+ return; // if xxx.lockers > 0
- /* Otherwise unload it completely */
- /* Explanation: I'm starting to believe that this work is done by SCI itself. */
+ // Otherwise unload it completely
+ // Explanation: I'm starting to believe that this work is done by SCI itself.
sm_mark_script_deleted(&s->seg_manager, script_nr);
if (script_checkloads_flag)
@@ -2197,22 +2032,18 @@ script_uninstantiate(state_t *s, int script_nr) {
return;
}
-
-static void
-_init_stack_base_with_selector(state_t *s, selector_t selector) {
- s->stack_base[0] = make_reg(0, (word) selector);
+static void _init_stack_base_with_selector(state_t *s, selector_t selector) {
+ s->stack_base[0] = make_reg(0, (word)selector);
s->stack_base[1] = NULL_REG;
}
-static state_t *
-_game_run(state_t *s, int restoring) {
+static state_t *_game_run(state_t *s, int restoring) {
state_t *successor = NULL;
int game_is_finished = 0;
do {
s->execution_stack_pos_changed = 0;
run_vm(s, (successor || restoring) ? 1 : 0);
- if (s->restarting_flags & SCI_GAME_IS_RESTARTING_NOW) { /* Restart was requested? */
-
+ if (s->restarting_flags & SCI_GAME_IS_RESTARTING_NOW) { // Restart was requested?
free(s->execution_stack);
s->execution_stack = NULL;
s->execution_stack_pos = -1;
@@ -2224,14 +2055,11 @@ _game_run(state_t *s, int restoring) {
game_init(s);
sfx_reset_player();
_init_stack_base_with_selector(s, s->selector_map.play);
- /* Call the play selector */
- send_selector(s, s->game_obj, s->game_obj,
- s->stack_base, 2, s->stack_base);
+ send_selector(s, s->game_obj, s->game_obj, s->stack_base, 2, s->stack_base);
script_abort_flag = 0;
- s->restarting_flags = SCI_GAME_WAS_RESTARTED |
- SCI_GAME_WAS_RESTARTED_AT_LEAST_ONCE;
+ s->restarting_flags = SCI_GAME_WAS_RESTARTED | SCI_GAME_WAS_RESTARTED_AT_LEAST_ONCE;
} else {
successor = s->successor;
@@ -2242,19 +2070,15 @@ _game_run(state_t *s, int restoring) {
s = successor;
if (!send_calls_allocated)
- send_calls = (calls_struct_t*)sci_calloc(sizeof(calls_struct_t),
- send_calls_allocated = 16);
+ send_calls = (calls_struct_t *)sci_calloc(sizeof(calls_struct_t), send_calls_allocated = 16);
if (script_abort_flag == SCRIPT_ABORT_WITH_REPLAY) {
sciprintf("Restarting with replay()\n");
- s->execution_stack_pos = -1; /* Resatart with replay */
+ s->execution_stack_pos = -1; // Restart with replay
_init_stack_base_with_selector(s, s->selector_map.replay);
- /* Call the replay selector */
- send_selector(s, s->game_obj, s->game_obj,
- s->stack_base, 2,
- s->stack_base);
+ send_selector(s, s->game_obj, s->game_obj, s->stack_base, 2, s->stack_base);
}
script_abort_flag = 0;
@@ -2269,31 +2093,27 @@ _game_run(state_t *s, int restoring) {
int objinfo(state_t *s, reg_t pos);
-int
-game_run(state_t **_s) {
+int game_run(state_t **_s) {
state_t *s = *_s;
sciprintf(" Calling %s::play()\n", s->game_name);
- _init_stack_base_with_selector(s, s->selector_map.play); /* Call the play selector */
-
+ _init_stack_base_with_selector(s, s->selector_map.play); // Call the play selector
- /* Now: Register the first element on the execution stack- */
- if (!send_selector(s, s->game_obj, s->game_obj,
- s->stack_base, 2,
- s->stack_base) || script_error_flag) {
+ // Now: Register the first element on the execution stack-
+ if (!send_selector(s, s->game_obj, s->game_obj, s->stack_base, 2, s->stack_base) || script_error_flag) {
objinfo(s, s->game_obj);
sciprintf("Failed to run the game! Aborting...\n");
return 1;
}
- /* and ENGAGE! */
+ // and ENGAGE!
*_s = s = _game_run(s, 0);
sciprintf(" Game::play() finished.\n");
+
return 0;
}
-int
-game_restore(state_t **_s, char *game_name) {
+int game_restore(state_t **_s, char *game_name) {
state_t *s;
int debug_state = _debugstate_valid;
@@ -2308,14 +2128,11 @@ game_restore(state_t **_s, char *game_name) {
script_abort_flag = 0;
s->restarting_flags = 0;
- s->execution_stack_pos = -1; /* Resatart with replay */
+ s->execution_stack_pos = -1; // Resatart with replay
_init_stack_base_with_selector(s, s->selector_map.replay);
- /* Call the replay selector */
- send_selector(s, s->game_obj, s->game_obj,
- s->stack_base, 2,
- s->stack_base);
+ send_selector(s, s->game_obj, s->game_obj, s->stack_base, 2, s->stack_base);
*_s = s = _game_run(s, 1);
@@ -2323,20 +2140,16 @@ game_restore(state_t **_s, char *game_name) {
return 0;
}
-
-object_t *
-obj_get(state_t *s, reg_t offset) {
+object_t *obj_get(state_t *s, reg_t offset) {
mem_obj_t *memobj = GET_OBJECT_SEGMENT(s->seg_manager, offset.segment);
object_t *obj = NULL;
int idx;
if (memobj != NULL) {
- if (memobj->type == MEM_OBJ_CLONES
- && ENTRY_IS_VALID(&memobj->data.clones, offset.offset))
+ if (memobj->type == MEM_OBJ_CLONES && ENTRY_IS_VALID(&memobj->data.clones, offset.offset))
obj = &(memobj->data.clones.table[offset.offset].entry);
else if (memobj->type == MEM_OBJ_SCRIPT) {
- if (offset.offset <= memobj->data.script.buf_size
- && offset.offset >= -SCRIPT_OBJECT_MAGIC_OFFSET
+ if (offset.offset <= memobj->data.script.buf_size && offset.offset >= -SCRIPT_OBJECT_MAGIC_OFFSET
&& RAW_IS_OBJECT(memobj->data.script.buf + offset.offset)) {
idx = RAW_GET_CLASS_INDEX(&(memobj->data.script), offset);
if (idx >= 0 && idx < memobj->data.script.objects_nr)
@@ -2348,24 +2161,18 @@ obj_get(state_t *s, reg_t offset) {
return obj;
}
-const char *
-obj_get_name(struct _state *s, reg_t pos) {
+const char *obj_get_name(struct _state *s, reg_t pos) {
object_t *obj = obj_get(s, pos);
if (!obj)
return "<no such object>";
- return
- (const char*)(obj->base + obj->variables[SCRIPT_NAME_SELECTOR].offset);
+ return (const char *)(obj->base + obj->variables[SCRIPT_NAME_SELECTOR].offset);
}
-
-void
-quit_vm() {
- script_abort_flag = 1; /* Terminate VM */
+void quit_vm() {
+ script_abort_flag = 1; // Terminate VM
_debugstate_valid = 0;
_debug_seeking = 0;
_debug_step_running = 0;
}
-
-