CONSOLIDATION.md Phase 6. Both lived untracked in the project root -- on one
disk, backed up by nothing.
tools/ppc-manual/ 393 files, 3.7 MB. 455 instructions, 350 family pages,
598 mnemonics resolvable through index.json, plus the
generator that produced them.
tools/run-canary.sh the oracle launcher.
🔴 THE LAUNCHER WAS BROKEN IN TWO WAYS AND IS REWRITTEN, not copied:
* it pointed at `xenia-rs/sylpheed.iso`, a SYMLINK. Wine cannot resolve one
and says "path invalid", which reads as a corrupt image rather than a path
problem -- it has cost a session before. It now points at the real file and
warns if handed a symlink.
* it hardcoded one machine's absolute paths, and named `xenia-rs`, which this
consolidation retires. Now derived from the script's own location, with
SYLPH_CANARY_BIN / SYLPH_ISO overrides and a check that each exists.
The standing constraints are in its header where someone will read them: one
emulator at a time, Canary runs MUTED, and never judge a crash or a hang from
a Bash-launched run -- a SIGKILL that looked like the binary was the editor's
process supervisor.
⚠️ The manual's GENERATOR reads the xenia-rs source tree, which is going away.
Its decoder now lives here as crates/sylpheed-ppc, so the generator must be
repointed before it is run again. Recorded in the README rather than left for
someone to discover; the manual's content is checked in and regenerates from
nothing implicitly.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
6.1 KiB
6.1 KiB
sc — System Call
Category: Branch & System · Form: SC · Opcode:
0x44000002· sync
Assembler Mnemonics
| Mnemonic | XML entry | Flags | Description |
|---|---|---|---|
sc |
sc |
— | System Call |
Syntax
sc [LEV]
Encoding
sc — form SC
- Opcode word:
0x44000002 - Primary opcode (bits 0–5):
17 - Extended opcode: —
- Synchronising: yes
| Bits | Field | Meaning |
|---|---|---|
| 0–5 | OPCD |
primary opcode (17) |
| 6–19 | — |
reserved |
| 20–26 | LEV |
exception level |
| 27–29 | — |
reserved |
| 30 | 1 |
fixed 1 |
| 31 | — |
reserved |
Operands
| Field | Role | Description |
|---|---|---|
LEV |
sc: read | System-call exception level (for sc). |
Register Effects
sc
- Reads (always):
LEV - Reads (conditional): none
- Writes (always): none
- Writes (conditional): none
Status-Register Effects
No condition-register or status-register effects.
Operation (pseudocode)
system_call_exception(LEV)
C Translation Example
/* C translation: the xenia-rs interpreter arm below in */
/* Implementation References is the authoritative semantic */
/* snapshot. Translate it line-by-line: */
/* - ctx.gpr[N] -> r[N] (or f[]/v[] for FPRs/VRs) */
/* - mem.read_u*/write_u* -> mem_read_u*_be / mem_write_u*_be */
/* - ctx.update_cr_signed(fld, v) -> update_cr_signed(fld, v) */
/* - ctx.xer_ca / xer_ov / xer_so -> xer.CA / xer.OV / xer.SO */
/* The Register Effects and Status-Register Effects tables above */
/* enumerate every side effect a faithful translation must emit. */
Implementation References
sc
- xenia-canary XML:
tools/ppc-instructions.xml— search formnem="sc" - xenia-canary emit:
src/xenia/cpu/ppc/ppc_emit_control.cc:455 - xenia-rs opcode:
crates/xenia-cpu/src/opcode.rs:63 - xenia-rs decoder:
crates/xenia-cpu/src/decoder.rs:341 - xenia-rs interpreter:
crates/xenia-cpu/src/interpreter.rs:984-997
xenia-rs interpreter body (frozen snapshot)
PpcOpcode::sc => {
// PPCBUG-064: log non-zero LEV (`sc 2` is the Xbox 360 hypervisor-call
// convention; canary dispatches it to a different handler than `sc 0`).
// Routing LEV=2 requires a StepResult variant extension; deferred.
let lev = (instr.raw >> 5) & 0x7F;
if lev != 0 {
tracing::warn!(
"sc with LEV={} at {:#010x}: dispatched as plain SystemCall (HVcall routing not implemented)",
lev, ctx.pc
);
}
ctx.pc += 4;
return StepResult::SystemCall;
}
Special Cases & Edge Conditions
LEVfield — kernel vs hypervisor. The 7-bitLEVoperand selects the privilege level of the syscall:LEV = 0— supervisor (kernel) syscall. Standard application → kernel transition; targets the0xC00system-call vector.LEV = 1— reserved.LEV = 2— hypervisor syscall (HVcall). On the Xenon,sc 2traps to the Xbox 360 hypervisor; this is how the kernel itself talks to the supervisor below it (e.g., for security operations, encrypted-memory accesses, page table updates).
scas written by titles. Almost all guest game code usesLEV = 0to callXboxKrnl.exe. Game disassembly will show large jump tables of small thunks each ending inli r0, syscall_no; sc; blr.- No condition or status side effects.
scupdates no general-purpose register on entry — neither LR nor CR. The kernel sees the GPR/FPR snapshot as-is and reads the syscall number out ofr0(Xbox 360 ABI convention, not architectural). - Return path. Hardware returns from
scviarfid-class instructions in the kernel handler; from the application's perspective execution resumes atCIA + 4. Xenia's interpreter realises this by simply pre-incrementingpcthen returningStepResult::SystemCall— the host driver dispatches the syscall and re-enters the loop. - xenia divergence vs hardware. xenia-rs does not model the
0xC00exception vector or save SRR0/SRR1; theLEVoperand is currently ignored. Allscinstructions are treated identically and serviced by the host. This is sufficient because Xbox 360 titles don't observe SRR registers and the host kernel is implemented natively. - Synchronisation. Marked
syncin xenia's XML —scis context-synchronising (hardware completes all prior instructions before raising the exception). JITs must flush pending state before emitting the host call. - Reserved bits. Bit 30 is fixed
1; bits 6–19 and 27–29 are reserved (must be 0). The 1-bit field at position 30 distinguishes thescencoding fromscv(later PowerISA addition, not present on the Xenon).
Related Instructions
bx,bcx,bclrx,bcctrx— ordinary control flow alternatives.tw,twi,td,tdi— synchronous trap exceptions; another way to enter the kernel.mtmsr,mtmsrd— machine-state changes used by the kernel'sschandler on return (rfid/hrfidchain not separately documented in this manual).isync— context-synchronising sibling;scitself implies an isync-like fence.
IBM Reference
- AIX 7.3 —
sc(System Call) - PowerISA v2.07B, Book III §7 — System Linkage interrupt definitions and
LEVfield semantics.