2020-12-31 03:55:59 +00:00
|
|
|
|
//
|
2021-01-15 23:16:01 +00:00
|
|
|
|
// Instruction.hpp
|
2020-12-31 03:55:59 +00:00
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
2021-01-17 03:09:19 +00:00
|
|
|
|
// Created by Thomas Harte on 15/01/21.
|
2021-01-15 23:16:01 +00:00
|
|
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
2020-12-31 03:55:59 +00:00
|
|
|
|
//
|
|
|
|
|
|
2021-01-15 23:16:01 +00:00
|
|
|
|
#ifndef InstructionSets_PowerPC_Instruction_h
|
|
|
|
|
#define InstructionSets_PowerPC_Instruction_h
|
2020-12-31 03:55:59 +00:00
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
2021-01-16 02:30:30 +00:00
|
|
|
|
namespace InstructionSet {
|
2020-12-31 03:55:59 +00:00
|
|
|
|
namespace PowerPC {
|
|
|
|
|
|
2022-03-21 14:17:55 +00:00
|
|
|
|
enum class CacheLine: uint32_t {
|
|
|
|
|
Instruction = 0b01100,
|
|
|
|
|
Data = 0b1101,
|
|
|
|
|
Minimum = 0b01110,
|
|
|
|
|
Maximum = 0b01111,
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
enum class Condition: uint32_t {
|
|
|
|
|
// CR0
|
|
|
|
|
Negative = 0, // LT
|
|
|
|
|
Positive = 1, // GT
|
|
|
|
|
Zero = 2, // EQ
|
|
|
|
|
SummaryOverflow = 3, // SO
|
|
|
|
|
|
|
|
|
|
// CR1
|
|
|
|
|
FPException = 4, // FX
|
|
|
|
|
FPEnabledException = 5, // FEX
|
|
|
|
|
FPInvalidException = 6, // VX
|
|
|
|
|
FPOverflowException = 7, // OX
|
|
|
|
|
|
|
|
|
|
// CRs2–7 fill out the condition register.
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-25 12:41:57 +00:00
|
|
|
|
enum class BranchOption: uint32_t {
|
2022-03-21 14:19:30 +00:00
|
|
|
|
// Naming convention:
|
|
|
|
|
//
|
|
|
|
|
// Dec_ prefix => decrement the CTR;
|
|
|
|
|
// condition starting NotZero or Zero => test CTR;
|
2022-04-01 22:30:48 +00:00
|
|
|
|
// condition ending Set or Clear => test the condition bit.
|
2022-03-25 00:44:03 +00:00
|
|
|
|
Dec_NotZeroAndClear = 0b0000,
|
|
|
|
|
Dec_ZeroAndClear = 0b0001,
|
|
|
|
|
Clear = 0b0010,
|
|
|
|
|
Dec_NotZeroAndSet = 0b0100,
|
|
|
|
|
Dec_ZeroAndSet = 0b0101,
|
|
|
|
|
Set = 0b0110,
|
|
|
|
|
Dec_NotZero = 0b1000,
|
|
|
|
|
Dec_Zero = 0b1001,
|
|
|
|
|
Always = 0b1010,
|
2022-03-21 14:19:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-12-31 03:55:59 +00:00
|
|
|
|
enum class Operation: uint8_t {
|
|
|
|
|
Undefined,
|
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
2022-03-27 22:44:56 +00:00
|
|
|
|
// MARK: - 601-exclusive instructions.
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
2022-03-27 22:44:56 +00:00
|
|
|
|
// A lot of them are carry-overs from POWER, left in place
|
|
|
|
|
// due to the tight original development timeline.
|
|
|
|
|
//
|
|
|
|
|
// These are not part of the PowerPC architecture.
|
2022-03-21 14:17:55 +00:00
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Absolute.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// abs abs. abso abso.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA() [oe(), rc()]
|
2022-03-21 14:17:55 +00:00
|
|
|
|
absx,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Cache line compute size.
|
|
|
|
|
/// clcs
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA()
|
2022-03-21 14:17:55 +00:00
|
|
|
|
clcs,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Divide.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// div div. divo divo.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
2022-03-21 14:17:55 +00:00
|
|
|
|
divx,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Divide short.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// divs divs. divso divso.
|
2022-04-01 21:11:57 +00:00
|
|
|
|
/// rD(), rA(), rB() [rc(), eo()]
|
2022-03-21 14:49:01 +00:00
|
|
|
|
divsx,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Difference or zero.
|
2022-04-01 21:11:57 +00:00
|
|
|
|
/// doz doz. dozo dozo.
|
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
2022-03-21 14:49:01 +00:00
|
|
|
|
dozx,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Difference or zero immediate.
|
|
|
|
|
/// dozi
|
2022-04-01 21:11:57 +00:00
|
|
|
|
/// rD(), rA(), simm()
|
2022-03-21 14:49:01 +00:00
|
|
|
|
dozi,
|
|
|
|
|
|
2022-04-02 14:26:47 +00:00
|
|
|
|
/// Load string and compare byte indexed.
|
|
|
|
|
/// lscbx lsxbx.
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lscbxx,
|
|
|
|
|
|
|
|
|
|
maskgx, maskirx,
|
2022-03-30 00:48:43 +00:00
|
|
|
|
|
|
|
|
|
/// Multiply.
|
|
|
|
|
/// mul mul. mulo mulo.
|
|
|
|
|
/// rA(), rB(), rD()
|
|
|
|
|
mulx,
|
|
|
|
|
|
2020-12-31 03:55:59 +00:00
|
|
|
|
nabsx, rlmix, rribx, slex, sleqx, sliqx, slliqx, sllqx, slqx,
|
|
|
|
|
sraiqx, sraqx, srex, sreax, sreqx, sriqx, srliqx, srlqx, srqx,
|
2021-01-15 23:16:01 +00:00
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
2022-03-27 22:44:56 +00:00
|
|
|
|
// MARK: - 32- and 64-bit PowerPC instructions.
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Add.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// add add. addo addo.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
2022-03-27 22:44:56 +00:00
|
|
|
|
addx,
|
|
|
|
|
|
|
|
|
|
/// Add carrying.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// addc addc. addco addco.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
2022-03-27 22:44:56 +00:00
|
|
|
|
addcx,
|
|
|
|
|
|
|
|
|
|
/// Add extended.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// adde adde. addeo addeo.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), rB() [rc(), eo()]
|
2022-03-27 22:44:56 +00:00
|
|
|
|
addex,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Add immediate.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// addi
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), simm()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
addi,
|
|
|
|
|
|
|
|
|
|
/// Add immediate carrying.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// addic
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), simm()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
addic,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Add immediate carrying and record.
|
|
|
|
|
/// addic.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), simm()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
addic_,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Add immediate shifted.
|
|
|
|
|
/// addis.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA(), simm()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
addis,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// Add to minus one.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// addme addme. addmeo addmeo.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA() [rc(), oe()]
|
2022-03-27 22:44:56 +00:00
|
|
|
|
addmex,
|
|
|
|
|
|
|
|
|
|
/// Add to zero extended.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// addze addze. addzeo addzeo.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rD(), rA() [rc(), oe()]
|
2022-03-29 00:20:59 +00:00
|
|
|
|
addzex,
|
|
|
|
|
|
2022-03-29 18:37:21 +00:00
|
|
|
|
/// And.
|
|
|
|
|
/// and, and.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
2022-03-29 18:37:21 +00:00
|
|
|
|
andx,
|
|
|
|
|
|
|
|
|
|
/// And with complement.
|
|
|
|
|
/// andc, andc.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
2022-03-29 18:37:21 +00:00
|
|
|
|
andcx,
|
|
|
|
|
|
|
|
|
|
/// And immediate.
|
|
|
|
|
/// andi.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rA(), rS(), uimm()
|
2022-03-29 18:37:21 +00:00
|
|
|
|
andi_,
|
|
|
|
|
|
|
|
|
|
/// And immediate shifted.
|
|
|
|
|
/// andis.
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// rA(), rS(), uimm()
|
2022-03-29 18:37:21 +00:00
|
|
|
|
andis_,
|
2022-03-18 23:55:26 +00:00
|
|
|
|
|
|
|
|
|
/// Branch unconditional.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// b bl ba bla
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// li() [aa(), lk()]
|
2022-03-18 23:55:26 +00:00
|
|
|
|
bx,
|
|
|
|
|
|
|
|
|
|
/// Branch conditional.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// bne bne+ beq bdnzt+ bdnzf bdnzt bdnzfla ...
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// bo(), bi(), bd() [aa(), lk()]
|
2022-03-18 23:55:26 +00:00
|
|
|
|
bcx,
|
|
|
|
|
|
|
|
|
|
/// Branch conditional to count register.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// bctr bctrl bnectrl bnectrl bltctr blectr ...
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// bo(), bi() [aa(), lk()]
|
2022-03-18 23:55:26 +00:00
|
|
|
|
bcctrx,
|
|
|
|
|
|
2022-03-25 10:25:06 +00:00
|
|
|
|
/// Branch conditional to link register.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// blr blrl bltlr blelrl bnelrl ...
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// bo(), bi() [aa(), lk()]
|
2022-03-25 10:25:06 +00:00
|
|
|
|
bclrx,
|
|
|
|
|
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// Compare
|
|
|
|
|
/// cmp
|
|
|
|
|
/// crfD(), l(), rA(), rB()
|
|
|
|
|
cmp,
|
|
|
|
|
|
|
|
|
|
/// Compare immediate.
|
|
|
|
|
/// cmpi
|
|
|
|
|
/// crfD(), l(), rA(), simm()
|
|
|
|
|
cmpi,
|
|
|
|
|
|
|
|
|
|
/// Compare logical.
|
|
|
|
|
/// cmpl
|
|
|
|
|
/// crfD(), l(), rA(), rB()
|
|
|
|
|
cmpl,
|
|
|
|
|
|
|
|
|
|
/// Compare logical immediate.
|
|
|
|
|
/// cmpli
|
|
|
|
|
/// crfD(), l(), rA(), uimm()
|
|
|
|
|
cmpli,
|
|
|
|
|
|
|
|
|
|
/// Count leading zero words.
|
|
|
|
|
/// cntlzw cntlzw.
|
|
|
|
|
/// rA(), rS() [rc()]
|
2022-03-30 00:48:43 +00:00
|
|
|
|
cntlzwx,
|
|
|
|
|
|
|
|
|
|
/// Condition register and.
|
|
|
|
|
/// crand
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crand,
|
|
|
|
|
|
|
|
|
|
/// Condition register and with complement.
|
|
|
|
|
/// crandc
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crandc,
|
|
|
|
|
|
|
|
|
|
/// Condition register equivalent.
|
|
|
|
|
/// creqv
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
creqv,
|
|
|
|
|
|
|
|
|
|
/// Condition register nand.
|
|
|
|
|
/// crnand
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crnand,
|
|
|
|
|
|
|
|
|
|
/// Condition register nor.
|
|
|
|
|
/// crnor
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crnor,
|
|
|
|
|
|
|
|
|
|
/// Condition register or.
|
|
|
|
|
/// cror
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
cror,
|
|
|
|
|
|
|
|
|
|
/// Condition register or with complement.
|
|
|
|
|
/// crorc
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crorc,
|
|
|
|
|
|
|
|
|
|
/// Condition register xor.
|
|
|
|
|
/// crxor
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// crbD(), crbA(), crbB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
crxor,
|
|
|
|
|
|
2022-03-31 00:36:46 +00:00
|
|
|
|
/// Data cache block flush.
|
|
|
|
|
/// dcbf
|
|
|
|
|
/// rA(), rB()
|
2022-03-30 00:48:43 +00:00
|
|
|
|
dcbf,
|
2022-03-31 00:36:46 +00:00
|
|
|
|
|
|
|
|
|
/// Data cache block store.
|
|
|
|
|
/// dcbst
|
|
|
|
|
/// rA(), rB()
|
|
|
|
|
dcbst,
|
|
|
|
|
|
|
|
|
|
/// Data cache block touch.
|
|
|
|
|
/// dcbt
|
|
|
|
|
/// rA(), rB()
|
|
|
|
|
dcbt,
|
|
|
|
|
|
|
|
|
|
/// Data cache block touch for store.
|
|
|
|
|
/// dcbtst
|
|
|
|
|
/// rA(), rB()
|
|
|
|
|
dcbtst,
|
|
|
|
|
|
|
|
|
|
/// Data cache block set to zero.
|
|
|
|
|
/// dcbz
|
|
|
|
|
/// rA(), rB()
|
|
|
|
|
dcbz,
|
|
|
|
|
|
2022-04-01 21:11:57 +00:00
|
|
|
|
/// Divide word.
|
|
|
|
|
/// divw divw. divwo divwo.
|
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
|
|
|
|
divwx,
|
|
|
|
|
|
|
|
|
|
/// Divide word unsigned.
|
|
|
|
|
/// divwu divwu. divwuo divwuo.
|
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
|
|
|
|
divwux,
|
|
|
|
|
|
|
|
|
|
/// External control in word indexed.
|
|
|
|
|
/// eciwx
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
eciwx,
|
|
|
|
|
|
|
|
|
|
/// External control out word indexed.
|
|
|
|
|
/// ecowx
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
ecowx,
|
|
|
|
|
|
|
|
|
|
/// Enforce in-order execition of I/O
|
|
|
|
|
/// eieio
|
|
|
|
|
eieio,
|
|
|
|
|
|
|
|
|
|
/// Equivalent.
|
|
|
|
|
/// eqv eqv.
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
|
|
|
|
eqvx,
|
|
|
|
|
|
|
|
|
|
/// Extend sign byte.
|
|
|
|
|
/// extsb extsb.
|
|
|
|
|
/// rA(), rS() [rc()]
|
|
|
|
|
extsbx,
|
|
|
|
|
|
|
|
|
|
/// Extend sign half-word.
|
|
|
|
|
/// extsh extsh.
|
|
|
|
|
/// rA(), rS() [rc()]
|
|
|
|
|
extshx,
|
|
|
|
|
|
|
|
|
|
fabsx, faddx, faddsx, fcmpo, fcmpu, fctiwx, fctiwzx,
|
2020-12-31 03:55:59 +00:00
|
|
|
|
fdivx, fdivsx, fmaddx, fmaddsx, fmrx, fmsubx, fmsubsx, fmulx, fmulsx,
|
|
|
|
|
fnabsx, fnegx, fnmaddx, fnmaddsx, fnmsubx, fnmsubsx, frspx, fsubx, fsubsx,
|
2022-04-02 19:27:12 +00:00
|
|
|
|
icbi, isync,
|
|
|
|
|
|
|
|
|
|
/// Load byte and zero.
|
|
|
|
|
/// lbz
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lbz,
|
|
|
|
|
|
|
|
|
|
/// Load byte and zero with update.
|
|
|
|
|
/// lbz
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lbzu,
|
2022-03-26 12:45:07 +00:00
|
|
|
|
|
|
|
|
|
/// Load byte and zero with update indexed.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// lbzux
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-26 12:45:07 +00:00
|
|
|
|
lbzux,
|
|
|
|
|
|
|
|
|
|
/// Load byte and zero indexed.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// lbzx
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-26 12:45:07 +00:00
|
|
|
|
lbzx,
|
|
|
|
|
|
|
|
|
|
lfd, lfdu, lfdux, lfdx, lfs, lfsu,
|
2022-04-02 19:27:12 +00:00
|
|
|
|
lfsux, lfsx,
|
|
|
|
|
|
|
|
|
|
/// Load half word algebraic.
|
|
|
|
|
/// lha
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lha,
|
|
|
|
|
|
|
|
|
|
/// Load half word algebraic with update.
|
|
|
|
|
/// lha
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lhau,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Load half-word algebraic with update indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// lhaux
|
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
lhaux,
|
|
|
|
|
|
|
|
|
|
/// Load half-word algebraic indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// lhax
|
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
lhax,
|
|
|
|
|
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// Load half word byte-reverse indexed.
|
|
|
|
|
/// lhbrx
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lhbrx,
|
|
|
|
|
|
|
|
|
|
/// Load half word and zero.
|
|
|
|
|
/// lhz
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// rD(), d() [ rA() ]
|
2022-04-01 22:30:48 +00:00
|
|
|
|
lhz,
|
|
|
|
|
|
|
|
|
|
/// Load half-word and zero with update.
|
|
|
|
|
/// lhzu
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// rD(), d() [ rA() ]
|
2022-04-01 22:30:48 +00:00
|
|
|
|
lhzu,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Load half-word and zero with update indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// lhzux
|
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
lhzux,
|
|
|
|
|
|
|
|
|
|
/// Load half-word and zero indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// lhzx
|
|
|
|
|
/// rD(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
lhzx,
|
|
|
|
|
|
2022-04-02 14:26:47 +00:00
|
|
|
|
/// Load multiple word.
|
|
|
|
|
/// lmw
|
|
|
|
|
/// rD(), d() [ rA() ]
|
2022-03-27 12:47:01 +00:00
|
|
|
|
lmw,
|
2022-04-02 14:26:47 +00:00
|
|
|
|
|
|
|
|
|
/// Load string word immediate.
|
|
|
|
|
/// lswi
|
|
|
|
|
/// rD(), rA(), nb()
|
|
|
|
|
lswi,
|
|
|
|
|
|
|
|
|
|
/// Load string word indexed.
|
|
|
|
|
/// lswx
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lswx,
|
|
|
|
|
|
|
|
|
|
/// Load word and reserve indexed.
|
|
|
|
|
/// lwarx
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lwarx,
|
|
|
|
|
|
|
|
|
|
/// Load word byte-reverse indexed.
|
|
|
|
|
/// lwbrx
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lwbrx,
|
|
|
|
|
|
|
|
|
|
/// Load word and zero.
|
|
|
|
|
/// lwz
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lwz,
|
|
|
|
|
|
|
|
|
|
/// Load word and zero with update.
|
|
|
|
|
/// lwzu
|
|
|
|
|
/// rD(), d() [ rA() ]
|
|
|
|
|
lwzu,
|
2022-03-26 00:31:47 +00:00
|
|
|
|
|
2022-03-26 12:45:07 +00:00
|
|
|
|
/// Load word and zero with update indexed.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// lwzux
|
2022-03-26 00:31:47 +00:00
|
|
|
|
lwzux,
|
2022-03-26 00:23:21 +00:00
|
|
|
|
|
|
|
|
|
/// Load word and zero indexed.
|
2022-03-27 22:44:56 +00:00
|
|
|
|
/// lwzx
|
2022-03-26 00:23:21 +00:00
|
|
|
|
lwzx,
|
|
|
|
|
|
|
|
|
|
mcrf, mcrfs, mcrxr,
|
2022-03-30 00:48:43 +00:00
|
|
|
|
mfcr, mffsx, mfmsr, mfspr, mfsr, mfsrin,
|
|
|
|
|
|
|
|
|
|
/// Move to condition register fields.
|
|
|
|
|
/// mtcrf
|
|
|
|
|
/// rS(), crm()
|
|
|
|
|
mtcrf,
|
|
|
|
|
|
|
|
|
|
mtfsb0x, mtfsb1x, mtfsfx,
|
|
|
|
|
mtfsfix, mtmsr, mtspr, mtsr, mtsrin,
|
|
|
|
|
|
|
|
|
|
/// Multiply high word.
|
|
|
|
|
/// mulhw mulgw.
|
|
|
|
|
/// rD(), rA(), rB(), rc()
|
|
|
|
|
mulhwx,
|
|
|
|
|
|
|
|
|
|
/// Multiply high word unsigned.
|
|
|
|
|
/// mulhwu mulhwu.
|
|
|
|
|
/// rD(), rA(), rB(), rc()
|
|
|
|
|
mulhwux,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Multiply low immediate.
|
|
|
|
|
mulli,
|
|
|
|
|
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// Multiply low word.
|
|
|
|
|
/// mullw mullw. mullwo mullwo.
|
|
|
|
|
/// rA(), rB(), rD()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
mullwx,
|
2022-03-30 00:48:43 +00:00
|
|
|
|
|
2022-03-30 20:43:09 +00:00
|
|
|
|
nandx, negx, norx, orx, orcx, ori, oris, rfi, rlwimix,
|
|
|
|
|
|
|
|
|
|
/// Rotate left word immediate then AND with mask.
|
|
|
|
|
/// rlwinm rlwinm.
|
|
|
|
|
/// rA(), rS(), sh(), mb(), me(), rc()
|
|
|
|
|
rlwinmx,
|
|
|
|
|
|
|
|
|
|
/// Rotate left word then AND with mask
|
|
|
|
|
/// rlwimi rlwimi.
|
|
|
|
|
/// rA(), rB(), rS(), mb(), me(), rc()
|
|
|
|
|
rlwnmx,
|
|
|
|
|
|
2022-04-01 21:11:57 +00:00
|
|
|
|
/// System call.
|
|
|
|
|
/// sc
|
2022-03-31 00:36:46 +00:00
|
|
|
|
sc,
|
|
|
|
|
|
|
|
|
|
/// Shift left word.
|
|
|
|
|
/// slw slw.
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
2022-04-01 21:11:57 +00:00
|
|
|
|
slwx,
|
|
|
|
|
|
2022-04-01 21:22:32 +00:00
|
|
|
|
/// Shift right algebraic word.
|
|
|
|
|
/// sraw sraw.
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
|
|
|
|
srawx,
|
|
|
|
|
|
|
|
|
|
/// Shift right algebraic word immediate.
|
|
|
|
|
/// srawi srawi.
|
|
|
|
|
/// rA(), rS(), sh() [rc()]
|
|
|
|
|
srawix,
|
|
|
|
|
|
|
|
|
|
/// Shift right word.
|
|
|
|
|
/// srw srw.
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
|
|
|
|
srwx,
|
|
|
|
|
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// Store byte.
|
|
|
|
|
/// stb
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
stb,
|
|
|
|
|
|
|
|
|
|
/// Store byte with update.
|
|
|
|
|
/// stbu
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
stbu,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Store byte with update indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// stbux
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
stbux,
|
|
|
|
|
|
|
|
|
|
/// Store byte indexed.
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// stbx
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
stbx,
|
|
|
|
|
|
2022-04-01 22:30:48 +00:00
|
|
|
|
/// Store floating point double precision.
|
|
|
|
|
/// stfd
|
|
|
|
|
/// frS(), d() [ rA() ]
|
|
|
|
|
stfd,
|
|
|
|
|
|
|
|
|
|
/// Store floating point double precision with update.
|
|
|
|
|
/// stfdu
|
|
|
|
|
/// frS(), d() [ rA() ]
|
|
|
|
|
stfdu,
|
|
|
|
|
|
|
|
|
|
/// Store floating point double precision with update indexed.
|
|
|
|
|
/// stfdux
|
|
|
|
|
/// frS(), rA(), rB()
|
|
|
|
|
stfdux,
|
|
|
|
|
|
|
|
|
|
/// Store floating point double precision indexed.
|
|
|
|
|
/// stfdux
|
|
|
|
|
/// frS(), rA(), rB()
|
|
|
|
|
stfdx,
|
|
|
|
|
|
2022-04-02 00:37:36 +00:00
|
|
|
|
/// Store floating point single precision.
|
|
|
|
|
/// stfs
|
|
|
|
|
/// frS() d() [ rA() ]
|
|
|
|
|
stfs,
|
|
|
|
|
|
|
|
|
|
/// Store floating point single precision with update.
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// stfsu
|
2022-04-02 00:37:36 +00:00
|
|
|
|
/// frS() d() [ rA() ]
|
|
|
|
|
stfsu,
|
|
|
|
|
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// Store floating point single precision with update indexed.
|
|
|
|
|
/// stfsux
|
|
|
|
|
/// frS(), rA(), rB()
|
|
|
|
|
stfsux,
|
|
|
|
|
|
|
|
|
|
/// Store floating point single precisionindexed.
|
|
|
|
|
/// stfsx
|
|
|
|
|
/// frS(), rA(), rB()
|
|
|
|
|
stfsx,
|
|
|
|
|
|
|
|
|
|
/// Store half word.
|
|
|
|
|
/// sth
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
sth,
|
|
|
|
|
|
|
|
|
|
/// Store half word byte-reverse indexed.
|
|
|
|
|
/// sthbrx
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
sthbrx,
|
|
|
|
|
|
|
|
|
|
/// Store half word with update.
|
|
|
|
|
/// sthu
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
sthu,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Store half-word with update indexed.
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// sthux
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
sthux,
|
|
|
|
|
|
|
|
|
|
/// Store half-word indexed.
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// sthx
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
sthx,
|
|
|
|
|
|
2022-04-02 19:27:12 +00:00
|
|
|
|
/// Store multiple word.
|
|
|
|
|
/// stmw
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
stmw,
|
|
|
|
|
|
|
|
|
|
/// Store string word immediate.
|
|
|
|
|
/// stswi
|
|
|
|
|
/// rS(), rA(), nb()
|
|
|
|
|
stswi,
|
|
|
|
|
|
|
|
|
|
/// Store string word indexed.
|
|
|
|
|
/// stswx
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stswx,
|
|
|
|
|
|
|
|
|
|
/// Store word.
|
|
|
|
|
/// stw
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
stw,
|
2022-04-02 00:37:36 +00:00
|
|
|
|
|
|
|
|
|
/// Store word byte-reverse indexed.
|
|
|
|
|
/// stwbrx
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stwbrx,
|
|
|
|
|
|
|
|
|
|
/// Store word conditional.
|
|
|
|
|
/// stwcx.
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stwcx_,
|
|
|
|
|
|
|
|
|
|
/// Store word with update.
|
|
|
|
|
/// stwu
|
|
|
|
|
/// rS(), d() [ rA() ]
|
|
|
|
|
stwu,
|
2022-03-27 12:47:01 +00:00
|
|
|
|
|
|
|
|
|
/// Store word with update indexed.
|
2022-04-02 00:37:36 +00:00
|
|
|
|
/// stwux
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
stwux,
|
|
|
|
|
|
|
|
|
|
/// Store word indexed.
|
2022-04-02 00:37:36 +00:00
|
|
|
|
/// stwx
|
|
|
|
|
/// rS(), rA(), rB()
|
2022-03-27 12:47:01 +00:00
|
|
|
|
stwx,
|
|
|
|
|
|
2022-03-29 00:18:41 +00:00
|
|
|
|
subfx,
|
|
|
|
|
|
|
|
|
|
/// Subtract from carrying.
|
2022-03-30 00:48:43 +00:00
|
|
|
|
/// subfc subfc. subfco subfco.
|
2022-03-29 00:18:41 +00:00
|
|
|
|
subfcx,
|
2022-04-02 00:37:36 +00:00
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
subfex,
|
|
|
|
|
|
|
|
|
|
/// Subtract from immediate carrying
|
|
|
|
|
subfic,
|
|
|
|
|
|
2022-04-02 14:09:58 +00:00
|
|
|
|
subfmex, subfzex, sync,
|
|
|
|
|
|
|
|
|
|
/// Trap word.
|
|
|
|
|
/// tw tweq tweqi twge twgei ...
|
|
|
|
|
/// to(), rA(), rB()
|
|
|
|
|
tw,
|
|
|
|
|
|
|
|
|
|
/// Trap word immediate.
|
|
|
|
|
/// twi
|
|
|
|
|
/// to(), rA(), simm()
|
|
|
|
|
twi,
|
|
|
|
|
|
|
|
|
|
/// Xor.
|
|
|
|
|
/// xor xor.
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
|
|
|
|
xorx,
|
|
|
|
|
|
|
|
|
|
/// Xor immediate.
|
|
|
|
|
/// xori
|
|
|
|
|
/// rA(), rs(), uimm()
|
|
|
|
|
xori,
|
|
|
|
|
|
|
|
|
|
/// Xor immediate shifted.
|
|
|
|
|
/// xoris
|
|
|
|
|
/// rA(), rS(), uimm()
|
|
|
|
|
xoris,
|
2021-01-01 02:12:36 +00:00
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: - 32-bit, supervisor level.
|
|
|
|
|
//
|
2022-03-31 00:36:46 +00:00
|
|
|
|
|
|
|
|
|
/// Data cache block invalidate.
|
|
|
|
|
/// dcbi
|
|
|
|
|
/// rA(), rB()
|
2020-12-31 03:55:59 +00:00
|
|
|
|
dcbi,
|
2021-01-01 02:12:36 +00:00
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: - Supervisor, optional.
|
|
|
|
|
//
|
2021-01-01 02:12:36 +00:00
|
|
|
|
tlbia, tlbie, tlbsync,
|
|
|
|
|
|
2022-03-27 22:44:56 +00:00
|
|
|
|
//
|
|
|
|
|
// MARK: - Optional.
|
|
|
|
|
//
|
2022-04-02 14:09:58 +00:00
|
|
|
|
fresx, frsqrtex, fselx, fsqrtx,
|
|
|
|
|
|
|
|
|
|
/// Move from time base.
|
|
|
|
|
/// mftb
|
|
|
|
|
/// rD(), tbr()
|
|
|
|
|
mftb,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
slbia, slbie,
|
2022-04-02 00:37:36 +00:00
|
|
|
|
|
|
|
|
|
/// Store floating point as integer word indexed.
|
|
|
|
|
/// stfiwx
|
|
|
|
|
/// frS(), rA(), rB()
|
|
|
|
|
stfiwx,
|
2020-12-31 03:55:59 +00:00
|
|
|
|
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
2022-03-27 22:44:56 +00:00
|
|
|
|
// MARK: - 64-bit only PowerPC instructions.
|
2022-03-27 12:47:01 +00:00
|
|
|
|
//
|
2022-04-01 21:11:57 +00:00
|
|
|
|
cntlzdx,
|
|
|
|
|
|
|
|
|
|
/// Divide double word.
|
|
|
|
|
/// divd divd. divdo divdo.
|
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
|
|
|
|
divdx,
|
|
|
|
|
|
|
|
|
|
/// Divide double word unsigned.
|
|
|
|
|
/// divdu divdu. divduo divduo.
|
|
|
|
|
/// rD(), rA(), rB() [rc(), oe()]
|
|
|
|
|
divdux,
|
|
|
|
|
|
|
|
|
|
/// Extend sign word.
|
|
|
|
|
/// extsw extsw.
|
|
|
|
|
/// rA(), rS() [rc()]
|
|
|
|
|
extswx,
|
|
|
|
|
|
|
|
|
|
fcfidx, fctidx, fctidzx, tdi, mulhdux,
|
2022-04-01 22:30:48 +00:00
|
|
|
|
ldx, sldx, ldux, td, mulhdx, ldarx,
|
|
|
|
|
|
|
|
|
|
/// Store double.
|
|
|
|
|
/// std
|
|
|
|
|
/// rS(), ds() [ rA() ]
|
|
|
|
|
std,
|
|
|
|
|
|
|
|
|
|
/// Store double word conditional indexed.
|
|
|
|
|
/// stdcx.
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stdcx_,
|
|
|
|
|
|
|
|
|
|
/// Store double word with update.
|
|
|
|
|
/// stdu
|
|
|
|
|
/// rS(), ds() [ rA() ]
|
|
|
|
|
stdu,
|
|
|
|
|
|
|
|
|
|
/// Store double word with update indexed.
|
|
|
|
|
/// stdux
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stdux,
|
|
|
|
|
|
|
|
|
|
/// Store double word indexed.
|
|
|
|
|
/// stdx
|
|
|
|
|
/// rS(), rA(), rB()
|
|
|
|
|
stdx,
|
|
|
|
|
|
2022-04-02 14:26:47 +00:00
|
|
|
|
mulld,
|
|
|
|
|
|
|
|
|
|
/// Load word algebraic.
|
|
|
|
|
/// lwa
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lwa,
|
|
|
|
|
|
|
|
|
|
/// Load word algebraic with update indexed.
|
|
|
|
|
/// lwaux
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lwaux,
|
|
|
|
|
|
|
|
|
|
/// Load word algebraic indexed.
|
|
|
|
|
/// lwax
|
|
|
|
|
/// rD(), rA(), rB()
|
|
|
|
|
lwax,
|
|
|
|
|
|
2022-04-01 21:11:57 +00:00
|
|
|
|
sradix, srdx,
|
|
|
|
|
|
|
|
|
|
/// Shift right algebraic double word.
|
|
|
|
|
/// srad srad,
|
|
|
|
|
/// rA(), rS(), rB() [rc()]
|
|
|
|
|
sradx,
|
|
|
|
|
|
2022-04-01 22:30:48 +00:00
|
|
|
|
fsqrtsx
|
2020-12-31 03:55:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-12-31 21:51:31 +00:00
|
|
|
|
/*!
|
|
|
|
|
Holds a decoded PowerPC instruction.
|
|
|
|
|
|
|
|
|
|
Implementation note: because the PowerPC encoding is particularly straightforward,
|
|
|
|
|
only the operation has been decoded ahead of time; all other fields are decoded on-demand.
|
2021-01-09 03:22:07 +00:00
|
|
|
|
|
|
|
|
|
It would be possible to partition the ordering of Operations into user followed by supervisor,
|
|
|
|
|
eliminating the storage necessary for a flag, but it wouldn't save anything due to alignment.
|
2020-12-31 21:51:31 +00:00
|
|
|
|
*/
|
2020-12-31 03:55:59 +00:00
|
|
|
|
struct Instruction {
|
2021-01-03 03:47:42 +00:00
|
|
|
|
Operation operation = Operation::Undefined;
|
|
|
|
|
bool is_supervisor = false;
|
|
|
|
|
uint32_t opcode = 0;
|
2020-12-31 03:55:59 +00:00
|
|
|
|
|
2021-01-09 03:38:56 +00:00
|
|
|
|
Instruction() noexcept {}
|
|
|
|
|
Instruction(uint32_t opcode) noexcept : opcode(opcode) {}
|
|
|
|
|
Instruction(Operation operation, uint32_t opcode, bool is_supervisor = false) noexcept : operation(operation), is_supervisor(is_supervisor), opcode(opcode) {}
|
2020-12-31 03:55:59 +00:00
|
|
|
|
|
2021-01-01 16:46:26 +00:00
|
|
|
|
// Instruction fields are decoded below; naming is a compromise between
|
|
|
|
|
// Motorola's documentation and IBM's.
|
|
|
|
|
//
|
|
|
|
|
// I've dutifully implemented various synonyms with unique entry points,
|
|
|
|
|
// in order to capture that information here rather than thrusting it upon
|
|
|
|
|
// the reader of whatever implementation may follow.
|
2020-12-31 21:51:31 +00:00
|
|
|
|
|
2021-01-01 21:38:40 +00:00
|
|
|
|
// Currently omitted: OPCD and XO, which I think are unnecessary given that
|
|
|
|
|
// full decoding has already occurred.
|
2021-01-01 02:12:36 +00:00
|
|
|
|
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Immediate field used to specify an unsigned 16-bit integer.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint16_t uimm() const { return uint16_t(opcode & 0xffff); }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Immediate field used to specify a signed 16-bit integer.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int16_t simm() const { return int16_t(opcode & 0xffff); }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
/// Immediate field used to specify a signed 16-bit integer.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int16_t d() const { return int16_t(opcode & 0xffff); }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
/// Immediate field used to specify a signed 14-bit integer [64-bit only].
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int16_t ds() const { return int16_t(opcode & 0xfffc); }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Immediate field used as data to be placed into a field in the floating point status and condition register.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int32_t imm() const { return (opcode >> 12) & 0xf; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Specifies the conditions on which to trap.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int32_t to() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Register source A or destination.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t rA() const { return (opcode >> 16) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Register source B.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t rB() const { return (opcode >> 11) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Register destination.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t rD() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Register source.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t rS() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Floating point register source A.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t frA() const { return (opcode >> 16) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Floating point register source B.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t frB() const { return (opcode >> 11) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Floating point register source C.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t frC() const { return (opcode >> 6) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Floating point register source.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t frS() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Floating point register destination.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t frD() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
2022-03-25 00:44:03 +00:00
|
|
|
|
/// Branch conditional options as per PowerPC spec, i.e. options + branch-prediction flag.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t bo() const { return (opcode >> 21) & 0x1f; }
|
2022-03-25 00:44:03 +00:00
|
|
|
|
/// Just the branch options, with the branch prediction flag severed.
|
2022-03-25 12:41:57 +00:00
|
|
|
|
BranchOption branch_options() const {
|
|
|
|
|
return BranchOption((opcode >> 22) & 0xf);
|
2022-03-25 00:44:03 +00:00
|
|
|
|
}
|
|
|
|
|
/// Just the branch-prediction hint; @c 0 => expect untaken; @c non-0 => expect take.
|
|
|
|
|
uint32_t branch_prediction_hint() const {
|
|
|
|
|
return opcode & 0x200000;
|
|
|
|
|
}
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Source condition register bit for branch conditionals.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t bi() const { return (opcode >> 16) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Branch displacement; provided as already sign extended.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int16_t bd() const { return int16_t(opcode & 0xfffc); }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
2021-01-01 21:38:40 +00:00
|
|
|
|
/// Specifies the first 1 bit of a 32/64-bit mask for rotate operations.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t mb() const { return (opcode >> 6) & 0x1f; }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
/// Specifies the first 1 bit of a 32/64-bit mask for rotate operations.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t me() const { return (opcode >> 1) & 0x1f; }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Condition register source bit A.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crbA() const { return (opcode >> 16) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Condition register source bit B.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crbB() const { return (opcode >> 11) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Condition register (or floating point status & condition register) destination bit.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crbD() const { return (opcode >> 21) & 0x1f; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Condition register (or floating point status & condition register) destination field.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crfD() const { return (opcode >> 23) & 0x07; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Condition register (or floating point status & condition register) source field.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crfS() const { return (opcode >> 18) & 0x07; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Mask identifying fields to be updated by mtcrf.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t crm() const { return (opcode >> 12) & 0xff; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
|
|
|
|
/// Mask identifying fields to be updated by mtfsf.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t fm() const { return (opcode >> 17) & 0xff; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
|
2021-01-01 21:38:40 +00:00
|
|
|
|
/// Specifies the number of bytes to move in an immediate string load or store.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t nb() const { return (opcode >> 11) & 0x1f; }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
|
|
|
|
|
/// Specifies a shift amount.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t sh() const { return (opcode >> 11) & 0x1f; }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
|
|
|
|
|
/// Specifies one of the 16 segment registers [32-bit only].
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t sr() const { return (opcode >> 16) & 0xf; }
|
2021-01-01 21:38:40 +00:00
|
|
|
|
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// A 24-bit signed number; provided as already sign extended.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
int32_t li() const {
|
2021-01-01 16:46:26 +00:00
|
|
|
|
constexpr uint32_t extensions[2] = {
|
|
|
|
|
0x0000'0000,
|
|
|
|
|
0xfc00'0000
|
|
|
|
|
};
|
2021-01-03 16:14:43 +00:00
|
|
|
|
const uint32_t value = (opcode & 0x03ff'fffc) | extensions[(opcode >> 25) & 1];
|
2021-01-01 16:46:26 +00:00
|
|
|
|
return int32_t(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Absolute address bit; @c 0 or @c non-0.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t aa() const { return opcode & 0x02; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Link bit; @c 0 or @c non-0.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t lk() const { return opcode & 0x01; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Record bit; @c 0 or @c non-0.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t rc() const { return opcode & 0x01; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Whether to compare 32-bit or 64-bit numbers [for 64-bit implementations only]; @c 0 or @c non-0.
|
2021-01-05 03:36:39 +00:00
|
|
|
|
uint32_t l() const { return opcode & 0x200000; }
|
2021-01-01 16:46:26 +00:00
|
|
|
|
/// Enables setting of OV and SO in the XER; @c 0 or @c non-0.
|
2022-03-29 00:39:52 +00:00
|
|
|
|
uint32_t oe() const { return opcode & 0x400; }
|
2020-12-31 03:55:59 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-15 23:16:01 +00:00
|
|
|
|
// Sanity check on Instruction size.
|
2021-01-09 03:38:56 +00:00
|
|
|
|
static_assert(sizeof(Instruction) <= 8);
|
|
|
|
|
|
2020-12-31 03:55:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-15 23:16:01 +00:00
|
|
|
|
#endif /* InstructionSets_PowerPC_Instruction_h */
|