Bug 4281 - Uninitialized words in interpreted VM instruction stream.
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: All All
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2009-09-15 04:03 EDT by Patrick Baggett
Modified: 2009-10-22 23:03:00 EDT
1 user (show)

See Also:


Attachments
Fix uninitialized sections of VM instruction stream (7.05 KB, patch)
2009-09-15 04:03 EDT, Patrick Baggett

Description Patrick Baggett 2009-09-15 04:03:11 EDT
Created attachment 2126 [details]
Fix uninitialized sections of VM instruction stream

I know I noted before (possibly informally in the mailing list) that in
vm_interpreted.c:VM_PrepareInterpreter(), the use of a single 'pc' variable
while expanding opcodes from a byte -> word (mainly for RISC platforms where
unaligned access causes a crash) leaves 3 uninitialized instructions in the
instruction stream.

The code uses the same PC for both the int array and the byte array when
loading 32-bit values. Since the PC is updated via += 4, this causes the
integer array to have 3 uninitialized values in them. It just so happens that
the interpreter loop also does a += 4 (i.e. skipping 4 integer values), so this
bug doesn't manifest itself as a crash. The solution is almost trivial -- use a
byte PC and an integer PC and update the interpreter to not skip 4 words on
certain opcode -- which is much more consistent.

Tested on IRIX 6.5.28 on Octane2 (interpreted QVM, no *.so files)
Comment 1 Ryan C. Gordon 2009-09-17 00:15:37 EDT
Comment on attachment 2126 [details]
Fix uninitialized sections of VM instruction stream

Changing mimetype of attachment.
Comment 2 Thilo Schulz 2009-10-22 23:03:00 EDT
Did a quick test and this does not seem to break anything. Applied in r1693