mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-20 09:02:32 +00:00
Each ISA's hand-written ENCODING_TABLE (the single source of truth) now lives in a per-arch tablegen/ metaprogram that flattens it and serializes committed binary blobs; the library #loads those into @(rodata) at compile time rather than compiling a table body. No arch keeps encoding_table.odin or decoding_tables.odin -- only a generated tables.odin loader and tables/*.bin. * Two-stage, type-checked pipeline: tablegen Stage A emits human-readable generated Odin, which compiles and serializes the blobs in Stage B. * encode() goes through encoding_forms(m); decoders are unchanged apart from x86's flattened 2-D index. Decode tables are byte-identical to the old ones. * build.lua: a LuaJIT driver for the metaprograms, validations, and tests, with cross-platform gating and a clear report. * Docs refreshed; the obsolete forward-looking plan in cross_arch_design.md trimmed to what was actually built. * Attribution headers added to all rexcode source files; the generators emit them so generated files keep them.
75 lines
2.8 KiB
Odin
75 lines
2.8 KiB
Odin
// rexcode · Brendan Punsky (dotbmp@github), original author
|
|
|
|
package rexcode_ppc_vle
|
|
|
|
// =============================================================================
|
|
// PowerPC VLE Instruction
|
|
// =============================================================================
|
|
//
|
|
// Variable-length: 2 bytes for `se_*` short, 4 bytes for `e_*` long.
|
|
// The encoder picks length from the matched form's flags.short bit.
|
|
|
|
Instruction_Flags :: bit_field u8 {
|
|
sets_cr0: bool | 1, // Rc=1 — "." suffix
|
|
has_oe: bool | 1, // OE=1 — "o" suffix
|
|
lk: bool | 1, // link bit (e_bl, se_bl, etc.)
|
|
aa: bool | 1, // absolute-address flag
|
|
_: u8 | 4,
|
|
}
|
|
|
|
Instruction :: struct #packed {
|
|
ops: [4]Operand `fmt:"v,operand_count"`,
|
|
mnemonic: Mnemonic,
|
|
operand_count: u8,
|
|
flags: Instruction_Flags,
|
|
mode: Mode,
|
|
length: u8, // 2 or 4
|
|
form_id: u16,
|
|
}
|
|
|
|
@(require_results)
|
|
inst_none :: #force_inline proc "contextless" (m: Mnemonic) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 0, length = 2, mode = .PPC32_VLE}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_r :: #force_inline proc "contextless" (m: Mnemonic, r: Register) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 1, length = 2, mode = .PPC32_VLE,
|
|
ops = {op_reg(r), {}, {}, {}}}
|
|
}
|
|
@(require_results)
|
|
inst_i :: #force_inline proc "contextless" (m: Mnemonic, v: i64) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 1, length = 4, mode = .PPC32_VLE,
|
|
ops = {op_imm(v), {}, {}, {}}}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_r_r :: #force_inline proc "contextless" (m: Mnemonic, rd, ra: Register) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 2, length = 2, mode = .PPC32_VLE,
|
|
ops = {op_reg(rd), op_reg(ra), {}, {}}}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_r_r_r :: #force_inline proc "contextless" (m: Mnemonic, rd, ra, rb: Register) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 3, length = 4, mode = .PPC32_VLE,
|
|
ops = {op_reg(rd), op_reg(ra), op_reg(rb), {}}}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_r_r_i :: #force_inline proc "contextless" (m: Mnemonic, rd, ra: Register, v: i64) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 3, length = 4, mode = .PPC32_VLE,
|
|
ops = {op_reg(rd), op_reg(ra), op_imm(v), {}}}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_load :: #force_inline proc "contextless" (m: Mnemonic, rt: Register, mm: Memory) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 2, length = 4, mode = .PPC32_VLE,
|
|
ops = {op_reg(rt), op_mem(mm), {}, {}}}
|
|
}
|
|
|
|
@(require_results)
|
|
inst_branch :: #force_inline proc "contextless" (m: Mnemonic, label_id: u32) -> Instruction {
|
|
return Instruction{mnemonic = m, operand_count = 1, length = 4, mode = .PPC32_VLE,
|
|
ops = {op_label(label_id), {}, {}, {}}}
|
|
}
|