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>
5.7 KiB
5.7 KiB
fdivx — Floating Divide
Category: Floating-Point · Form: A · Opcode:
0xfc000024
Assembler Mnemonics
| Mnemonic | XML entry | Flags | Description |
|---|---|---|---|
fdiv |
fdivx |
— | Floating Divide |
fdiv. |
fdivx |
Rc=1 | Floating Divide |
Syntax
fdiv[Rc] [FD], [FA], [FB]
Encoding
fdivx — form A
- Opcode word:
0xfc000024 - Primary opcode (bits 0–5):
63 - Extended opcode:
18 - Synchronising: no
| Bits | Field | Meaning |
|---|---|---|
| 0–5 | OPCD |
primary opcode (59 or 63) |
| 6–10 | FRT |
destination FPR |
| 11–15 | FRA |
source A FPR |
| 16–20 | FRB |
source B FPR |
| 21–25 | FRC |
source C FPR (multiplier for madd-style ops) |
| 26–30 | XO |
extended opcode (5 bits) |
| 31 | Rc |
record-form flag (updates CR1) |
Operands
| Field | Role | Description |
|---|---|---|
FA |
fdivx: read | Source A floating-point register (fr0–fr31). |
FB |
fdivx: read | Source B floating-point register. |
FD |
fdivx: write | Destination floating-point register. |
CR |
fdivx: write (conditional) | Condition-register update. When Rc=1, CR field 0 (or CR6 for vector compares, CR1 for FPU) is updated from the result. |
FPSCR |
fdivx: write | Floating-Point Status and Control Register. |
Register Effects
fdivx
- Reads (always):
FA,FB - Reads (conditional): none
- Writes (always):
FD,FPSCR - Writes (conditional):
CR
Status-Register Effects
fdivx: CR1 ← FPSCR[FX, FEX, VX, OX] whenRc=1.; FPSCR updated per IEEE-754 flags (FX, FEX, FPRF, FR, FI, exceptions).
Operation (pseudocode)
FRT <- FRA ÷ FRB
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
fdivx
- xenia-canary XML:
tools/ppc-instructions.xml— search formnem="fdivx" - xenia-canary emit:
src/xenia/cpu/ppc/ppc_emit_fpu.cc:55 - xenia-rs opcode:
crates/xenia-cpu/src/opcode.rs:28 - xenia-rs decoder:
crates/xenia-cpu/src/decoder.rs:920 - xenia-rs interpreter:
crates/xenia-cpu/src/interpreter.rs:2616-2626
xenia-rs interpreter body (frozen snapshot)
PpcOpcode::fdivx => {
let a = ctx.fpr[instr.ra()];
let b = ctx.fpr[instr.rb()];
fpscr::check_invalid_div(ctx, a, b);
fpscr::check_zero_divide(ctx, a, b);
let result = a / b;
ctx.fpr[instr.rd()] = result;
fpscr::update_after_op(ctx, result, a.is_finite() && b.is_finite() && b != 0.0);
if instr.rc_bit() { update_cr1_from_fpscr(ctx); }
ctx.pc += 4;
}
Special Cases & Edge Conditions
- Double precision. Operates on IEEE-754 binary64;
fdivsxis the single-precision sibling. - Divide by zero.
FRA / ±0(withFRAfinite, non-zero) setsFPSCR[ZX, FX]and produces a correctly-signed infinity. xenia relies on hostf64 /, which produces the same ±∞ — but does not raiseZXin the interpreter snapshot. xenia quirk: title code that polls FPSCR for divide-by-zero will not observe it. 0 / 0setsFPSCR[VXZDZ, VX, FX]and yields a quiet NaN.±∞ / ±∞setsFPSCR[VXIDI, VX, FX]and yields a quiet NaN.- FPSCR side effects. Hardware updates
FPRF,FR,FI,FXplus exception bitsOX,UX,XX,ZX,VXZDZ,VXIDI,VXSNAN. xenia-rs does not maintain these. Rc=1(fdiv.) copiesFPSCR[FX, FEX, VX, OX]into CR1.- NaN propagation. Quiet-NaN result for any NaN operand; signalling NaNs are quietened.
- Performance. Hardware divide is multi-cycle and not pipelined on Xenon. Many titles prefer
fres/frsqrtefollowed by Newton-Raphson refinement (or byfmaddchains) to avoid the divider. - Denormal flush. Xenon boots with
FPSCR[NI]=1; xenia uses host IEEE. - Encoding. A-form, primary 63, XO 18.
FRCis don't-care.
Related Instructions
fdivsx— single-precision divide.fresx— reciprocal estimate~1/FRB; combined withfmul/fmaddto implement reciprocal divides.fmulx,faddx,fsubx— companion arithmetic.fmaddx,fnmsubx— used in Newton-Raphson refinement steps.mffsx,mtfsfx— FPSCR control (rounding mode, exception masks).
IBM Reference
- AIX 7.3 —
fdiv(Floating Divide) - PowerISA v2.07B, Book I, Chapter 4 — Floating-Point Processor (divide-by-zero and invalid-operation rules).