Commit 777e26f0 authored by Jordan Niethe's avatar Jordan Niethe Committed by Michael Ellerman

powerpc: Use an accessor for instructions

In preparation for introducing a more complicated instruction type to
accommodate prefixed instructions use an accessor for getting an
instruction as a u32.
Signed-off-by: default avatarJordan Niethe <jniethe5@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200506034050.24806-8-jniethe5@gmail.com
parent 75346251
...@@ -8,4 +8,9 @@ ...@@ -8,4 +8,9 @@
#define ppc_inst(x) (x) #define ppc_inst(x) (x)
static inline u32 ppc_inst_val(u32 x)
{
return x;
}
#endif /* _ASM_POWERPC_INST_H */ #endif /* _ASM_POWERPC_INST_H */
...@@ -15,9 +15,9 @@ struct pt_regs; ...@@ -15,9 +15,9 @@ struct pt_regs;
* Note that IS_MTMSRD returns true for both an mtmsr (32-bit) * Note that IS_MTMSRD returns true for both an mtmsr (32-bit)
* and an mtmsrd (64-bit). * and an mtmsrd (64-bit).
*/ */
#define IS_MTMSRD(instr) (((instr) & 0xfc0007be) == 0x7c000124) #define IS_MTMSRD(instr) ((ppc_inst_val(instr) & 0xfc0007be) == 0x7c000124)
#define IS_RFID(instr) (((instr) & 0xfc0007fe) == 0x4c000024) #define IS_RFID(instr) ((ppc_inst_val(instr) & 0xfc0007fe) == 0x4c000024)
#define IS_RFI(instr) (((instr) & 0xfc0007fe) == 0x4c000064) #define IS_RFI(instr) ((ppc_inst_val(instr) & 0xfc0007fe) == 0x4c000064)
enum instruction_type { enum instruction_type {
COMPUTE, /* arith/logical/CR op, etc. */ COMPUTE, /* arith/logical/CR op, etc. */
......
...@@ -314,8 +314,8 @@ int fix_alignment(struct pt_regs *regs) ...@@ -314,8 +314,8 @@ int fix_alignment(struct pt_regs *regs)
} }
#ifdef CONFIG_SPE #ifdef CONFIG_SPE
if ((instr >> 26) == 0x4) { if ((ppc_inst_val(instr) >> 26) == 0x4) {
int reg = (instr >> 21) & 0x1f; int reg = (ppc_inst_val(instr) >> 21) & 0x1f;
PPC_WARN_ALIGNMENT(spe, regs); PPC_WARN_ALIGNMENT(spe, regs);
return emulate_spe(regs, reg, instr); return emulate_spe(regs, reg, instr);
} }
...@@ -332,7 +332,7 @@ int fix_alignment(struct pt_regs *regs) ...@@ -332,7 +332,7 @@ int fix_alignment(struct pt_regs *regs)
* when pasting to a co-processor. Furthermore, paste_last is the * when pasting to a co-processor. Furthermore, paste_last is the
* synchronisation point for preceding copy/paste sequences. * synchronisation point for preceding copy/paste sequences.
*/ */
if ((instr & 0xfc0006fe) == (PPC_INST_COPY & 0xfc0006fe)) if ((ppc_inst_val(instr) & 0xfc0006fe) == (PPC_INST_COPY & 0xfc0006fe))
return -EIO; return -EIO;
r = analyse_instr(&op, regs, instr); r = analyse_instr(&op, regs, instr);
......
...@@ -234,7 +234,7 @@ static int try_to_emulate(struct kprobe *p, struct pt_regs *regs) ...@@ -234,7 +234,7 @@ static int try_to_emulate(struct kprobe *p, struct pt_regs *regs)
* So, we should never get here... but, its still * So, we should never get here... but, its still
* good to catch them, just in case... * good to catch them, just in case...
*/ */
printk("Can't step on instruction %x\n", insn); printk("Can't step on instruction %x\n", ppc_inst_val(insn));
BUG(); BUG();
} else { } else {
/* /*
......
...@@ -74,7 +74,7 @@ ftrace_modify_code(unsigned long ip, unsigned int old, unsigned int new) ...@@ -74,7 +74,7 @@ ftrace_modify_code(unsigned long ip, unsigned int old, unsigned int new)
/* Make sure it is what we expect it to be */ /* Make sure it is what we expect it to be */
if (replaced != old) { if (replaced != old) {
pr_err("%p: replaced (%#x) != old (%#x)", pr_err("%p: replaced (%#x) != old (%#x)",
(void *)ip, replaced, old); (void *)ip, ppc_inst_val(replaced), ppc_inst_val(old));
return -EINVAL; return -EINVAL;
} }
...@@ -99,19 +99,19 @@ static int test_24bit_addr(unsigned long ip, unsigned long addr) ...@@ -99,19 +99,19 @@ static int test_24bit_addr(unsigned long ip, unsigned long addr)
static int is_bl_op(unsigned int op) static int is_bl_op(unsigned int op)
{ {
return (op & 0xfc000003) == 0x48000001; return (ppc_inst_val(op) & 0xfc000003) == 0x48000001;
} }
static int is_b_op(unsigned int op) static int is_b_op(unsigned int op)
{ {
return (op & 0xfc000003) == 0x48000000; return (ppc_inst_val(op) & 0xfc000003) == 0x48000000;
} }
static unsigned long find_bl_target(unsigned long ip, unsigned int op) static unsigned long find_bl_target(unsigned long ip, unsigned int op)
{ {
int offset; int offset;
offset = (op & 0x03fffffc); offset = (ppc_inst_val(op) & 0x03fffffc);
/* make it signed */ /* make it signed */
if (offset & 0x02000000) if (offset & 0x02000000)
offset |= 0xfe000000; offset |= 0xfe000000;
...@@ -137,7 +137,7 @@ __ftrace_make_nop(struct module *mod, ...@@ -137,7 +137,7 @@ __ftrace_make_nop(struct module *mod,
/* Make sure that that this is still a 24bit jump */ /* Make sure that that this is still a 24bit jump */
if (!is_bl_op(op)) { if (!is_bl_op(op)) {
pr_err("Not expected bl: opcode is %x\n", op); pr_err("Not expected bl: opcode is %x\n", ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
...@@ -171,7 +171,8 @@ __ftrace_make_nop(struct module *mod, ...@@ -171,7 +171,8 @@ __ftrace_make_nop(struct module *mod,
/* We expect either a mflr r0, or a std r0, LRSAVE(r1) */ /* We expect either a mflr r0, or a std r0, LRSAVE(r1) */
if (op != ppc_inst(PPC_INST_MFLR) && op != ppc_inst(PPC_INST_STD_LR)) { if (op != ppc_inst(PPC_INST_MFLR) && op != ppc_inst(PPC_INST_STD_LR)) {
pr_err("Unexpected instruction %08x around bl _mcount\n", op); pr_err("Unexpected instruction %08x around bl _mcount\n",
ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
#else #else
...@@ -201,7 +202,7 @@ __ftrace_make_nop(struct module *mod, ...@@ -201,7 +202,7 @@ __ftrace_make_nop(struct module *mod,
} }
if (op != ppc_inst(PPC_INST_LD_TOC)) { if (op != ppc_inst(PPC_INST_LD_TOC)) {
pr_err("Expected %08x found %08x\n", PPC_INST_LD_TOC, op); pr_err("Expected %08x found %08x\n", PPC_INST_LD_TOC, ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
#endif /* CONFIG_MPROFILE_KERNEL */ #endif /* CONFIG_MPROFILE_KERNEL */
...@@ -229,7 +230,7 @@ __ftrace_make_nop(struct module *mod, ...@@ -229,7 +230,7 @@ __ftrace_make_nop(struct module *mod,
/* Make sure that that this is still a 24bit jump */ /* Make sure that that this is still a 24bit jump */
if (!is_bl_op(op)) { if (!is_bl_op(op)) {
pr_err("Not expected bl: opcode is %x\n", op); pr_err("Not expected bl: opcode is %x\n", ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
...@@ -403,7 +404,7 @@ static int __ftrace_make_nop_kernel(struct dyn_ftrace *rec, unsigned long addr) ...@@ -403,7 +404,7 @@ static int __ftrace_make_nop_kernel(struct dyn_ftrace *rec, unsigned long addr)
/* Make sure that that this is still a 24bit jump */ /* Make sure that that this is still a 24bit jump */
if (!is_bl_op(op)) { if (!is_bl_op(op)) {
pr_err("Not expected bl: opcode is %x\n", op); pr_err("Not expected bl: opcode is %x\n", ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
...@@ -497,7 +498,8 @@ expected_nop_sequence(void *ip, unsigned int op0, unsigned int op1) ...@@ -497,7 +498,8 @@ expected_nop_sequence(void *ip, unsigned int op0, unsigned int op1)
* The load offset is different depending on the ABI. For simplicity * The load offset is different depending on the ABI. For simplicity
* just mask it out when doing the compare. * just mask it out when doing the compare.
*/ */
if (op0 != ppc_inst(0x48000008) || ((op1 & 0xffff0000) != 0xe8410000)) if (op0 != ppc_inst(0x48000008) ||
(ppc_inst_val(op1) & 0xffff0000) != 0xe8410000)
return 0; return 0;
return 1; return 1;
} }
...@@ -527,7 +529,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) ...@@ -527,7 +529,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
if (!expected_nop_sequence(ip, op[0], op[1])) { if (!expected_nop_sequence(ip, op[0], op[1])) {
pr_err("Unexpected call sequence at %p: %x %x\n", pr_err("Unexpected call sequence at %p: %x %x\n",
ip, op[0], op[1]); ip, ppc_inst_val(op[0]), ppc_inst_val(op[1]));
return -EINVAL; return -EINVAL;
} }
...@@ -590,7 +592,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr) ...@@ -590,7 +592,7 @@ __ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
/* It should be pointing to a nop */ /* It should be pointing to a nop */
if (op != ppc_inst(PPC_INST_NOP)) { if (op != ppc_inst(PPC_INST_NOP)) {
pr_err("Expected NOP but have %x\n", op); pr_err("Expected NOP but have %x\n", ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
...@@ -647,7 +649,7 @@ static int __ftrace_make_call_kernel(struct dyn_ftrace *rec, unsigned long addr) ...@@ -647,7 +649,7 @@ static int __ftrace_make_call_kernel(struct dyn_ftrace *rec, unsigned long addr)
} }
if (op != ppc_inst(PPC_INST_NOP)) { if (op != ppc_inst(PPC_INST_NOP)) {
pr_err("Unexpected call sequence at %p: %x\n", ip, op); pr_err("Unexpected call sequence at %p: %x\n", ip, ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
...@@ -726,7 +728,7 @@ __ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr, ...@@ -726,7 +728,7 @@ __ftrace_modify_call(struct dyn_ftrace *rec, unsigned long old_addr,
/* Make sure that that this is still a 24bit jump */ /* Make sure that that this is still a 24bit jump */
if (!is_bl_op(op)) { if (!is_bl_op(op)) {
pr_err("Not expected bl: opcode is %x\n", op); pr_err("Not expected bl: opcode is %x\n", ppc_inst_val(op));
return -EINVAL; return -EINVAL;
} }
......
...@@ -260,21 +260,23 @@ static unsigned int rfin(unsigned int x) ...@@ -260,21 +260,23 @@ static unsigned int rfin(unsigned int x)
int emulate_altivec(struct pt_regs *regs) int emulate_altivec(struct pt_regs *regs)
{ {
unsigned int instr, i; unsigned int instr, i, word;
unsigned int va, vb, vc, vd; unsigned int va, vb, vc, vd;
vector128 *vrs; vector128 *vrs;
if (get_user(instr, (unsigned int __user *) regs->nip)) if (get_user(instr, (unsigned int __user *) regs->nip))
return -EFAULT; return -EFAULT;
if ((instr >> 26) != 4)
word = ppc_inst_val(instr);
if ((word >> 26) != 4)
return -EINVAL; /* not an altivec instruction */ return -EINVAL; /* not an altivec instruction */
vd = (instr >> 21) & 0x1f; vd = (word >> 21) & 0x1f;
va = (instr >> 16) & 0x1f; va = (word >> 16) & 0x1f;
vb = (instr >> 11) & 0x1f; vb = (word >> 11) & 0x1f;
vc = (instr >> 6) & 0x1f; vc = (word >> 6) & 0x1f;
vrs = current->thread.vr_state.vr; vrs = current->thread.vr_state.vr;
switch (instr & 0x3f) { switch (word & 0x3f) {
case 10: case 10:
switch (vc) { switch (vc) {
case 0: /* vaddfp */ case 0: /* vaddfp */
......
...@@ -236,7 +236,7 @@ bool is_conditional_branch(unsigned int instr) ...@@ -236,7 +236,7 @@ bool is_conditional_branch(unsigned int instr)
if (opcode == 16) /* bc, bca, bcl, bcla */ if (opcode == 16) /* bc, bca, bcl, bcla */
return true; return true;
if (opcode == 19) { if (opcode == 19) {
switch ((instr >> 1) & 0x3ff) { switch ((ppc_inst_val(instr) >> 1) & 0x3ff) {
case 16: /* bclr, bclrl */ case 16: /* bclr, bclrl */
case 528: /* bcctr, bcctrl */ case 528: /* bcctr, bcctrl */
case 560: /* bctar, bctarl */ case 560: /* bctar, bctarl */
...@@ -304,7 +304,7 @@ static int instr_is_branch_bform(unsigned int instr) ...@@ -304,7 +304,7 @@ static int instr_is_branch_bform(unsigned int instr)
int instr_is_relative_branch(unsigned int instr) int instr_is_relative_branch(unsigned int instr)
{ {
if (instr & BRANCH_ABSOLUTE) if (ppc_inst_val(instr) & BRANCH_ABSOLUTE)
return 0; return 0;
return instr_is_branch_iform(instr) || instr_is_branch_bform(instr); return instr_is_branch_iform(instr) || instr_is_branch_bform(instr);
...@@ -312,20 +312,20 @@ int instr_is_relative_branch(unsigned int instr) ...@@ -312,20 +312,20 @@ int instr_is_relative_branch(unsigned int instr)
int instr_is_relative_link_branch(unsigned int instr) int instr_is_relative_link_branch(unsigned int instr)
{ {
return instr_is_relative_branch(instr) && (instr & BRANCH_SET_LINK); return instr_is_relative_branch(instr) && (ppc_inst_val(instr) & BRANCH_SET_LINK);
} }
static unsigned long branch_iform_target(const unsigned int *instr) static unsigned long branch_iform_target(const unsigned int *instr)
{ {
signed long imm; signed long imm;
imm = *instr & 0x3FFFFFC; imm = ppc_inst_val(*instr) & 0x3FFFFFC;
/* If the top bit of the immediate value is set this is negative */ /* If the top bit of the immediate value is set this is negative */
if (imm & 0x2000000) if (imm & 0x2000000)
imm -= 0x4000000; imm -= 0x4000000;
if ((*instr & BRANCH_ABSOLUTE) == 0) if ((ppc_inst_val(*instr) & BRANCH_ABSOLUTE) == 0)
imm += (unsigned long)instr; imm += (unsigned long)instr;
return (unsigned long)imm; return (unsigned long)imm;
...@@ -335,13 +335,13 @@ static unsigned long branch_bform_target(const unsigned int *instr) ...@@ -335,13 +335,13 @@ static unsigned long branch_bform_target(const unsigned int *instr)
{ {
signed long imm; signed long imm;
imm = *instr & 0xFFFC; imm = ppc_inst_val(*instr) & 0xFFFC;
/* If the top bit of the immediate value is set this is negative */ /* If the top bit of the immediate value is set this is negative */
if (imm & 0x8000) if (imm & 0x8000)
imm -= 0x10000; imm -= 0x10000;
if ((*instr & BRANCH_ABSOLUTE) == 0) if ((ppc_inst_val(*instr) & BRANCH_ABSOLUTE) == 0)
imm += (unsigned long)instr; imm += (unsigned long)instr;
return (unsigned long)imm; return (unsigned long)imm;
...@@ -373,9 +373,9 @@ int translate_branch(unsigned int *instr, const unsigned int *dest, ...@@ -373,9 +373,9 @@ int translate_branch(unsigned int *instr, const unsigned int *dest,
target = branch_target(src); target = branch_target(src);
if (instr_is_branch_iform(*src)) if (instr_is_branch_iform(*src))
return create_branch(instr, dest, target, *src); return create_branch(instr, dest, target, ppc_inst_val(*src));
else if (instr_is_branch_bform(*src)) else if (instr_is_branch_bform(*src))
return create_cond_branch(instr, dest, target, *src); return create_cond_branch(instr, dest, target, ppc_inst_val(*src));
return 1; return 1;
} }
......
...@@ -1169,26 +1169,28 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1169,26 +1169,28 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
unsigned long int imm; unsigned long int imm;
unsigned long int val, val2; unsigned long int val, val2;
unsigned int mb, me, sh; unsigned int mb, me, sh;
unsigned int word;
long ival; long ival;
word = ppc_inst_val(instr);
op->type = COMPUTE; op->type = COMPUTE;
opcode = instr >> 26; opcode = instr >> 26;
switch (opcode) { switch (opcode) {
case 16: /* bc */ case 16: /* bc */
op->type = BRANCH; op->type = BRANCH;
imm = (signed short)(instr & 0xfffc); imm = (signed short)(word & 0xfffc);
if ((instr & 2) == 0) if ((word & 2) == 0)
imm += regs->nip; imm += regs->nip;
op->val = truncate_if_32bit(regs->msr, imm); op->val = truncate_if_32bit(regs->msr, imm);
if (instr & 1) if (word & 1)
op->type |= SETLK; op->type |= SETLK;
if (branch_taken(instr, regs, op)) if (branch_taken(word, regs, op))
op->type |= BRTAKEN; op->type |= BRTAKEN;
return 1; return 1;
#ifdef CONFIG_PPC64 #ifdef CONFIG_PPC64
case 17: /* sc */ case 17: /* sc */
if ((instr & 0xfe2) == 2) if ((word & 0xfe2) == 2)
op->type = SYSCALL; op->type = SYSCALL;
else else
op->type = UNKNOWN; op->type = UNKNOWN;
...@@ -1196,21 +1198,21 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1196,21 +1198,21 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#endif #endif
case 18: /* b */ case 18: /* b */
op->type = BRANCH | BRTAKEN; op->type = BRANCH | BRTAKEN;
imm = instr & 0x03fffffc; imm = word & 0x03fffffc;
if (imm & 0x02000000) if (imm & 0x02000000)
imm -= 0x04000000; imm -= 0x04000000;
if ((instr & 2) == 0) if ((word & 2) == 0)
imm += regs->nip; imm += regs->nip;
op->val = truncate_if_32bit(regs->msr, imm); op->val = truncate_if_32bit(regs->msr, imm);
if (instr & 1) if (word & 1)
op->type |= SETLK; op->type |= SETLK;
return 1; return 1;
case 19: case 19:
switch ((instr >> 1) & 0x3ff) { switch ((word >> 1) & 0x3ff) {
case 0: /* mcrf */ case 0: /* mcrf */
op->type = COMPUTE + SETCC; op->type = COMPUTE + SETCC;
rd = 7 - ((instr >> 23) & 0x7); rd = 7 - ((word >> 23) & 0x7);
ra = 7 - ((instr >> 18) & 0x7); ra = 7 - ((word >> 18) & 0x7);
rd *= 4; rd *= 4;
ra *= 4; ra *= 4;
val = (regs->ccr >> ra) & 0xf; val = (regs->ccr >> ra) & 0xf;
...@@ -1220,11 +1222,11 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1220,11 +1222,11 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 16: /* bclr */ case 16: /* bclr */
case 528: /* bcctr */ case 528: /* bcctr */
op->type = BRANCH; op->type = BRANCH;
imm = (instr & 0x400)? regs->ctr: regs->link; imm = (word & 0x400)? regs->ctr: regs->link;
op->val = truncate_if_32bit(regs->msr, imm); op->val = truncate_if_32bit(regs->msr, imm);
if (instr & 1) if (word & 1)
op->type |= SETLK; op->type |= SETLK;
if (branch_taken(instr, regs, op)) if (branch_taken(word, regs, op))
op->type |= BRTAKEN; op->type |= BRTAKEN;
return 1; return 1;
...@@ -1247,23 +1249,23 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1247,23 +1249,23 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 417: /* crorc */ case 417: /* crorc */
case 449: /* cror */ case 449: /* cror */
op->type = COMPUTE + SETCC; op->type = COMPUTE + SETCC;
ra = (instr >> 16) & 0x1f; ra = (word >> 16) & 0x1f;
rb = (instr >> 11) & 0x1f; rb = (word >> 11) & 0x1f;
rd = (instr >> 21) & 0x1f; rd = (word >> 21) & 0x1f;
ra = (regs->ccr >> (31 - ra)) & 1; ra = (regs->ccr >> (31 - ra)) & 1;
rb = (regs->ccr >> (31 - rb)) & 1; rb = (regs->ccr >> (31 - rb)) & 1;
val = (instr >> (6 + ra * 2 + rb)) & 1; val = (word >> (6 + ra * 2 + rb)) & 1;
op->ccval = (regs->ccr & ~(1UL << (31 - rd))) | op->ccval = (regs->ccr & ~(1UL << (31 - rd))) |
(val << (31 - rd)); (val << (31 - rd));
return 1; return 1;
} }
break; break;
case 31: case 31:
switch ((instr >> 1) & 0x3ff) { switch ((word >> 1) & 0x3ff) {
case 598: /* sync */ case 598: /* sync */
op->type = BARRIER + BARRIER_SYNC; op->type = BARRIER + BARRIER_SYNC;
#ifdef __powerpc64__ #ifdef __powerpc64__
switch ((instr >> 21) & 3) { switch ((word >> 21) & 3) {
case 1: /* lwsync */ case 1: /* lwsync */
op->type = BARRIER + BARRIER_LWSYNC; op->type = BARRIER + BARRIER_LWSYNC;
break; break;
...@@ -1285,20 +1287,20 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1285,20 +1287,20 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
if (!FULL_REGS(regs)) if (!FULL_REGS(regs))
return -1; return -1;
rd = (instr >> 21) & 0x1f; rd = (word >> 21) & 0x1f;
ra = (instr >> 16) & 0x1f; ra = (word >> 16) & 0x1f;
rb = (instr >> 11) & 0x1f; rb = (word >> 11) & 0x1f;
rc = (instr >> 6) & 0x1f; rc = (word >> 6) & 0x1f;
switch (opcode) { switch (opcode) {
#ifdef __powerpc64__ #ifdef __powerpc64__
case 2: /* tdi */ case 2: /* tdi */
if (rd & trap_compare(regs->gpr[ra], (short) instr)) if (rd & trap_compare(regs->gpr[ra], (short) word))
goto trap; goto trap;
return 1; return 1;
#endif #endif
case 3: /* twi */ case 3: /* twi */
if (rd & trap_compare((int)regs->gpr[ra], (short) instr)) if (rd & trap_compare((int)regs->gpr[ra], (short) word))
goto trap; goto trap;
return 1; return 1;
...@@ -1307,7 +1309,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1307,7 +1309,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
if (!cpu_has_feature(CPU_FTR_ARCH_300)) if (!cpu_has_feature(CPU_FTR_ARCH_300))
return -1; return -1;
switch (instr & 0x3f) { switch (word & 0x3f) {
case 48: /* maddhd */ case 48: /* maddhd */
asm volatile(PPC_MADDHD(%0, %1, %2, %3) : asm volatile(PPC_MADDHD(%0, %1, %2, %3) :
"=r" (op->val) : "r" (regs->gpr[ra]), "=r" (op->val) : "r" (regs->gpr[ra]),
...@@ -1335,16 +1337,16 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1335,16 +1337,16 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#endif #endif
case 7: /* mulli */ case 7: /* mulli */
op->val = regs->gpr[ra] * (short) instr; op->val = regs->gpr[ra] * (short) word;
goto compute_done; goto compute_done;
case 8: /* subfic */ case 8: /* subfic */
imm = (short) instr; imm = (short) word;
add_with_carry(regs, op, rd, ~regs->gpr[ra], imm, 1); add_with_carry(regs, op, rd, ~regs->gpr[ra], imm, 1);
return 1; return 1;
case 10: /* cmpli */ case 10: /* cmpli */
imm = (unsigned short) instr; imm = (unsigned short) word;
val = regs->gpr[ra]; val = regs->gpr[ra];
#ifdef __powerpc64__ #ifdef __powerpc64__
if ((rd & 1) == 0) if ((rd & 1) == 0)
...@@ -1354,7 +1356,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1354,7 +1356,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 1; return 1;
case 11: /* cmpi */ case 11: /* cmpi */
imm = (short) instr; imm = (short) word;
val = regs->gpr[ra]; val = regs->gpr[ra];
#ifdef __powerpc64__ #ifdef __powerpc64__
if ((rd & 1) == 0) if ((rd & 1) == 0)
...@@ -1364,35 +1366,35 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1364,35 +1366,35 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 1; return 1;
case 12: /* addic */ case 12: /* addic */
imm = (short) instr; imm = (short) word;
add_with_carry(regs, op, rd, regs->gpr[ra], imm, 0); add_with_carry(regs, op, rd, regs->gpr[ra], imm, 0);
return 1; return 1;
case 13: /* addic. */ case 13: /* addic. */
imm = (short) instr; imm = (short) word;
add_with_carry(regs, op, rd, regs->gpr[ra], imm, 0); add_with_carry(regs, op, rd, regs->gpr[ra], imm, 0);
set_cr0(regs, op); set_cr0(regs, op);
return 1; return 1;
case 14: /* addi */ case 14: /* addi */
imm = (short) instr; imm = (short) word;
if (ra) if (ra)
imm += regs->gpr[ra]; imm += regs->gpr[ra];
op->val = imm; op->val = imm;
goto compute_done; goto compute_done;
case 15: /* addis */ case 15: /* addis */
imm = ((short) instr) << 16; imm = ((short) word) << 16;
if (ra) if (ra)
imm += regs->gpr[ra]; imm += regs->gpr[ra];
op->val = imm; op->val = imm;
goto compute_done; goto compute_done;
case 19: case 19:
if (((instr >> 1) & 0x1f) == 2) { if (((word >> 1) & 0x1f) == 2) {
/* addpcis */ /* addpcis */
imm = (short) (instr & 0xffc1); /* d0 + d2 fields */ imm = (short) (word & 0xffc1); /* d0 + d2 fields */
imm |= (instr >> 15) & 0x3e; /* d1 field */ imm |= (word >> 15) & 0x3e; /* d1 field */
op->val = regs->nip + (imm << 16) + 4; op->val = regs->nip + (imm << 16) + 4;
goto compute_done; goto compute_done;
} }
...@@ -1400,65 +1402,65 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1400,65 +1402,65 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 0; return 0;
case 20: /* rlwimi */ case 20: /* rlwimi */
mb = (instr >> 6) & 0x1f; mb = (word >> 6) & 0x1f;
me = (instr >> 1) & 0x1f; me = (word >> 1) & 0x1f;
val = DATA32(regs->gpr[rd]); val = DATA32(regs->gpr[rd]);
imm = MASK32(mb, me); imm = MASK32(mb, me);
op->val = (regs->gpr[ra] & ~imm) | (ROTATE(val, rb) & imm); op->val = (regs->gpr[ra] & ~imm) | (ROTATE(val, rb) & imm);
goto logical_done; goto logical_done;
case 21: /* rlwinm */ case 21: /* rlwinm */
mb = (instr >> 6) & 0x1f; mb = (word >> 6) & 0x1f;
me = (instr >> 1) & 0x1f; me = (word >> 1) & 0x1f;
val = DATA32(regs->gpr[rd]); val = DATA32(regs->gpr[rd]);
op->val = ROTATE(val, rb) & MASK32(mb, me); op->val = ROTATE(val, rb) & MASK32(mb, me);
goto logical_done; goto logical_done;
case 23: /* rlwnm */ case 23: /* rlwnm */
mb = (instr >> 6) & 0x1f; mb = (word >> 6) & 0x1f;
me = (instr >> 1) & 0x1f; me = (word >> 1) & 0x1f;
rb = regs->gpr[rb] & 0x1f; rb = regs->gpr[rb] & 0x1f;
val = DATA32(regs->gpr[rd]); val = DATA32(regs->gpr[rd]);
op->val = ROTATE(val, rb) & MASK32(mb, me); op->val = ROTATE(val, rb) & MASK32(mb, me);
goto logical_done; goto logical_done;
case 24: /* ori */ case 24: /* ori */
op->val = regs->gpr[rd] | (unsigned short) instr; op->val = regs->gpr[rd] | (unsigned short) word;
goto logical_done_nocc; goto logical_done_nocc;
case 25: /* oris */ case 25: /* oris */
imm = (unsigned short) instr; imm = (unsigned short) word;
op->val = regs->gpr[rd] | (imm << 16); op->val = regs->gpr[rd] | (imm << 16);
goto logical_done_nocc; goto logical_done_nocc;
case 26: /* xori */ case 26: /* xori */
op->val = regs->gpr[rd] ^ (unsigned short) instr; op->val = regs->gpr[rd] ^ (unsigned short) word;
goto logical_done_nocc; goto logical_done_nocc;
case 27: /* xoris */ case 27: /* xoris */
imm = (unsigned short) instr; imm = (unsigned short) word;
op->val = regs->gpr[rd] ^ (imm << 16); op->val = regs->gpr[rd] ^ (imm << 16);
goto logical_done_nocc; goto logical_done_nocc;
case 28: /* andi. */ case 28: /* andi. */
op->val = regs->gpr[rd] & (unsigned short) instr; op->val = regs->gpr[rd] & (unsigned short) word;
set_cr0(regs, op); set_cr0(regs, op);
goto logical_done_nocc; goto logical_done_nocc;
case 29: /* andis. */ case 29: /* andis. */
imm = (unsigned short) instr; imm = (unsigned short) word;
op->val = regs->gpr[rd] & (imm << 16); op->val = regs->gpr[rd] & (imm << 16);
set_cr0(regs, op); set_cr0(regs, op);
goto logical_done_nocc; goto logical_done_nocc;
#ifdef __powerpc64__ #ifdef __powerpc64__
case 30: /* rld* */ case 30: /* rld* */
mb = ((instr >> 6) & 0x1f) | (instr & 0x20); mb = ((word >> 6) & 0x1f) | (word & 0x20);
val = regs->gpr[rd]; val = regs->gpr[rd];
if ((instr & 0x10) == 0) { if ((word & 0x10) == 0) {
sh = rb | ((instr & 2) << 4); sh = rb | ((word & 2) << 4);
val = ROTATE(val, sh); val = ROTATE(val, sh);
switch ((instr >> 2) & 3) { switch ((word >> 2) & 3) {
case 0: /* rldicl */ case 0: /* rldicl */
val &= MASK64_L(mb); val &= MASK64_L(mb);
break; break;
...@@ -1478,7 +1480,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1478,7 +1480,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
} else { } else {
sh = regs->gpr[rb] & 0x3f; sh = regs->gpr[rb] & 0x3f;
val = ROTATE(val, sh); val = ROTATE(val, sh);
switch ((instr >> 1) & 7) { switch ((word >> 1) & 7) {
case 0: /* rldcl */ case 0: /* rldcl */
op->val = val & MASK64_L(mb); op->val = val & MASK64_L(mb);
goto logical_done; goto logical_done;
...@@ -1493,8 +1495,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1493,8 +1495,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 31: case 31:
/* isel occupies 32 minor opcodes */ /* isel occupies 32 minor opcodes */
if (((instr >> 1) & 0x1f) == 15) { if (((word >> 1) & 0x1f) == 15) {
mb = (instr >> 6) & 0x1f; /* bc field */ mb = (word >> 6) & 0x1f; /* bc field */
val = (regs->ccr >> (31 - mb)) & 1; val = (regs->ccr >> (31 - mb)) & 1;
val2 = (ra) ? regs->gpr[ra] : 0; val2 = (ra) ? regs->gpr[ra] : 0;
...@@ -1502,7 +1504,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1502,7 +1504,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
goto compute_done; goto compute_done;
} }
switch ((instr >> 1) & 0x3ff) { switch ((word >> 1) & 0x3ff) {
case 4: /* tw */ case 4: /* tw */
if (rd == 0x1f || if (rd == 0x1f ||
(rd & trap_compare((int)regs->gpr[ra], (rd & trap_compare((int)regs->gpr[ra],
...@@ -1536,17 +1538,17 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1536,17 +1538,17 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
op->reg = rd; op->reg = rd;
/* only MSR_EE and MSR_RI get changed if bit 15 set */ /* only MSR_EE and MSR_RI get changed if bit 15 set */
/* mtmsrd doesn't change MSR_HV, MSR_ME or MSR_LE */ /* mtmsrd doesn't change MSR_HV, MSR_ME or MSR_LE */
imm = (instr & 0x10000)? 0x8002: 0xefffffffffffeffeUL; imm = (word & 0x10000)? 0x8002: 0xefffffffffffeffeUL;
op->val = imm; op->val = imm;
return 0; return 0;
#endif #endif
case 19: /* mfcr */ case 19: /* mfcr */
imm = 0xffffffffUL; imm = 0xffffffffUL;
if ((instr >> 20) & 1) { if ((word >> 20) & 1) {
imm = 0xf0000000UL; imm = 0xf0000000UL;
for (sh = 0; sh < 8; ++sh) { for (sh = 0; sh < 8; ++sh) {
if (instr & (0x80000 >> sh)) if (word & (0x80000 >> sh))
break; break;
imm >>= 4; imm >>= 4;
} }
...@@ -1560,7 +1562,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1560,7 +1562,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
val = regs->gpr[rd]; val = regs->gpr[rd];
op->ccval = regs->ccr; op->ccval = regs->ccr;
for (sh = 0; sh < 8; ++sh) { for (sh = 0; sh < 8; ++sh) {
if (instr & (0x80000 >> sh)) if (word & (0x80000 >> sh))
op->ccval = (op->ccval & ~imm) | op->ccval = (op->ccval & ~imm) |
(val & imm); (val & imm);
imm >>= 4; imm >>= 4;
...@@ -1568,7 +1570,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1568,7 +1570,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 1; return 1;
case 339: /* mfspr */ case 339: /* mfspr */
spr = ((instr >> 16) & 0x1f) | ((instr >> 6) & 0x3e0); spr = ((word >> 16) & 0x1f) | ((word >> 6) & 0x3e0);
op->type = MFSPR; op->type = MFSPR;
op->reg = rd; op->reg = rd;
op->spr = spr; op->spr = spr;
...@@ -1578,7 +1580,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1578,7 +1580,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 0; return 0;
case 467: /* mtspr */ case 467: /* mtspr */
spr = ((instr >> 16) & 0x1f) | ((instr >> 6) & 0x3e0); spr = ((word >> 16) & 0x1f) | ((word >> 6) & 0x3e0);
op->type = MTSPR; op->type = MTSPR;
op->val = regs->gpr[rd]; op->val = regs->gpr[rd];
op->spr = spr; op->spr = spr;
...@@ -1948,7 +1950,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1948,7 +1950,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 826: /* sradi with sh_5 = 0 */ case 826: /* sradi with sh_5 = 0 */
case 827: /* sradi with sh_5 = 1 */ case 827: /* sradi with sh_5 = 1 */
op->type = COMPUTE + SETREG + SETXER; op->type = COMPUTE + SETREG + SETXER;
sh = rb | ((instr & 2) << 4); sh = rb | ((word & 2) << 4);
ival = (signed long int) regs->gpr[rd]; ival = (signed long int) regs->gpr[rd];
op->val = ival >> sh; op->val = ival >> sh;
op->xerval = regs->xer; op->xerval = regs->xer;
...@@ -1964,7 +1966,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1964,7 +1966,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
if (!cpu_has_feature(CPU_FTR_ARCH_300)) if (!cpu_has_feature(CPU_FTR_ARCH_300))
return -1; return -1;
op->type = COMPUTE + SETREG; op->type = COMPUTE + SETREG;
sh = rb | ((instr & 2) << 4); sh = rb | ((word & 2) << 4);
val = (signed int) regs->gpr[rd]; val = (signed int) regs->gpr[rd];
if (sh) if (sh)
op->val = ROTATE(val, sh) & MASK64(0, 63 - sh); op->val = ROTATE(val, sh) & MASK64(0, 63 - sh);
...@@ -1979,34 +1981,34 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -1979,34 +1981,34 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
*/ */
case 54: /* dcbst */ case 54: /* dcbst */
op->type = MKOP(CACHEOP, DCBST, 0); op->type = MKOP(CACHEOP, DCBST, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
return 0; return 0;
case 86: /* dcbf */ case 86: /* dcbf */
op->type = MKOP(CACHEOP, DCBF, 0); op->type = MKOP(CACHEOP, DCBF, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
return 0; return 0;
case 246: /* dcbtst */ case 246: /* dcbtst */
op->type = MKOP(CACHEOP, DCBTST, 0); op->type = MKOP(CACHEOP, DCBTST, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
op->reg = rd; op->reg = rd;
return 0; return 0;
case 278: /* dcbt */ case 278: /* dcbt */
op->type = MKOP(CACHEOP, DCBTST, 0); op->type = MKOP(CACHEOP, DCBTST, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
op->reg = rd; op->reg = rd;
return 0; return 0;
case 982: /* icbi */ case 982: /* icbi */
op->type = MKOP(CACHEOP, ICBI, 0); op->type = MKOP(CACHEOP, ICBI, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
return 0; return 0;
case 1014: /* dcbz */ case 1014: /* dcbz */
op->type = MKOP(CACHEOP, DCBZ, 0); op->type = MKOP(CACHEOP, DCBZ, 0);
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
return 0; return 0;
} }
break; break;
...@@ -2019,14 +2021,14 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2019,14 +2021,14 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
op->update_reg = ra; op->update_reg = ra;
op->reg = rd; op->reg = rd;
op->val = regs->gpr[rd]; op->val = regs->gpr[rd];
u = (instr >> 20) & UPDATE; u = (word >> 20) & UPDATE;
op->vsx_flags = 0; op->vsx_flags = 0;
switch (opcode) { switch (opcode) {
case 31: case 31:
u = instr & UPDATE; u = word & UPDATE;
op->ea = xform_ea(instr, regs); op->ea = xform_ea(word, regs);
switch ((instr >> 1) & 0x3ff) { switch ((word >> 1) & 0x3ff) {
case 20: /* lwarx */ case 20: /* lwarx */
op->type = MKOP(LARX, 0, 4); op->type = MKOP(LARX, 0, 4);
break; break;
...@@ -2271,25 +2273,25 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2271,25 +2273,25 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#ifdef CONFIG_VSX #ifdef CONFIG_VSX
case 12: /* lxsiwzx */ case 12: /* lxsiwzx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 4); op->type = MKOP(LOAD_VSX, 0, 4);
op->element_size = 8; op->element_size = 8;
break; break;
case 76: /* lxsiwax */ case 76: /* lxsiwax */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, SIGNEXT, 4); op->type = MKOP(LOAD_VSX, SIGNEXT, 4);
op->element_size = 8; op->element_size = 8;
break; break;
case 140: /* stxsiwx */ case 140: /* stxsiwx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 4); op->type = MKOP(STORE_VSX, 0, 4);
op->element_size = 8; op->element_size = 8;
break; break;
case 268: /* lxvx */ case 268: /* lxvx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 16; op->element_size = 16;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
...@@ -2298,33 +2300,33 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2298,33 +2300,33 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 269: /* lxvl */ case 269: /* lxvl */
case 301: { /* lxvll */ case 301: { /* lxvll */
int nb; int nb;
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->ea = ra ? regs->gpr[ra] : 0; op->ea = ra ? regs->gpr[ra] : 0;
nb = regs->gpr[rb] & 0xff; nb = regs->gpr[rb] & 0xff;
if (nb > 16) if (nb > 16)
nb = 16; nb = 16;
op->type = MKOP(LOAD_VSX, 0, nb); op->type = MKOP(LOAD_VSX, 0, nb);
op->element_size = 16; op->element_size = 16;
op->vsx_flags = ((instr & 0x20) ? VSX_LDLEFT : 0) | op->vsx_flags = ((word & 0x20) ? VSX_LDLEFT : 0) |
VSX_CHECK_VEC; VSX_CHECK_VEC;
break; break;
} }
case 332: /* lxvdsx */ case 332: /* lxvdsx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 8); op->type = MKOP(LOAD_VSX, 0, 8);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_SPLAT; op->vsx_flags = VSX_SPLAT;
break; break;
case 364: /* lxvwsx */ case 364: /* lxvwsx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 4); op->type = MKOP(LOAD_VSX, 0, 4);
op->element_size = 4; op->element_size = 4;
op->vsx_flags = VSX_SPLAT | VSX_CHECK_VEC; op->vsx_flags = VSX_SPLAT | VSX_CHECK_VEC;
break; break;
case 396: /* stxvx */ case 396: /* stxvx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 16; op->element_size = 16;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
...@@ -2333,118 +2335,118 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2333,118 +2335,118 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 397: /* stxvl */ case 397: /* stxvl */
case 429: { /* stxvll */ case 429: { /* stxvll */
int nb; int nb;
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->ea = ra ? regs->gpr[ra] : 0; op->ea = ra ? regs->gpr[ra] : 0;
nb = regs->gpr[rb] & 0xff; nb = regs->gpr[rb] & 0xff;
if (nb > 16) if (nb > 16)
nb = 16; nb = 16;
op->type = MKOP(STORE_VSX, 0, nb); op->type = MKOP(STORE_VSX, 0, nb);
op->element_size = 16; op->element_size = 16;
op->vsx_flags = ((instr & 0x20) ? VSX_LDLEFT : 0) | op->vsx_flags = ((word & 0x20) ? VSX_LDLEFT : 0) |
VSX_CHECK_VEC; VSX_CHECK_VEC;
break; break;
} }
case 524: /* lxsspx */ case 524: /* lxsspx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 4); op->type = MKOP(LOAD_VSX, 0, 4);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_FPCONV; op->vsx_flags = VSX_FPCONV;
break; break;
case 588: /* lxsdx */ case 588: /* lxsdx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 8); op->type = MKOP(LOAD_VSX, 0, 8);
op->element_size = 8; op->element_size = 8;
break; break;
case 652: /* stxsspx */ case 652: /* stxsspx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 4); op->type = MKOP(STORE_VSX, 0, 4);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_FPCONV; op->vsx_flags = VSX_FPCONV;
break; break;
case 716: /* stxsdx */ case 716: /* stxsdx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 8); op->type = MKOP(STORE_VSX, 0, 8);
op->element_size = 8; op->element_size = 8;
break; break;
case 780: /* lxvw4x */ case 780: /* lxvw4x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 4; op->element_size = 4;
break; break;
case 781: /* lxsibzx */ case 781: /* lxsibzx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 1); op->type = MKOP(LOAD_VSX, 0, 1);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 812: /* lxvh8x */ case 812: /* lxvh8x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 2; op->element_size = 2;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 813: /* lxsihzx */ case 813: /* lxsihzx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 2); op->type = MKOP(LOAD_VSX, 0, 2);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 844: /* lxvd2x */ case 844: /* lxvd2x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 8; op->element_size = 8;
break; break;
case 876: /* lxvb16x */ case 876: /* lxvb16x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 1; op->element_size = 1;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 908: /* stxvw4x */ case 908: /* stxvw4x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 4; op->element_size = 4;
break; break;
case 909: /* stxsibx */ case 909: /* stxsibx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 1); op->type = MKOP(STORE_VSX, 0, 1);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 940: /* stxvh8x */ case 940: /* stxvh8x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 2; op->element_size = 2;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 941: /* stxsihx */ case 941: /* stxsihx */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 2); op->type = MKOP(STORE_VSX, 0, 2);
op->element_size = 8; op->element_size = 8;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
break; break;
case 972: /* stxvd2x */ case 972: /* stxvd2x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 8; op->element_size = 8;
break; break;
case 1004: /* stxvb16x */ case 1004: /* stxvb16x */
op->reg = rd | ((instr & 1) << 5); op->reg = rd | ((word & 1) << 5);
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 1; op->element_size = 1;
op->vsx_flags = VSX_CHECK_VEC; op->vsx_flags = VSX_CHECK_VEC;
...@@ -2457,80 +2459,80 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2457,80 +2459,80 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 32: /* lwz */ case 32: /* lwz */
case 33: /* lwzu */ case 33: /* lwzu */
op->type = MKOP(LOAD, u, 4); op->type = MKOP(LOAD, u, 4);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 34: /* lbz */ case 34: /* lbz */
case 35: /* lbzu */ case 35: /* lbzu */
op->type = MKOP(LOAD, u, 1); op->type = MKOP(LOAD, u, 1);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 36: /* stw */ case 36: /* stw */
case 37: /* stwu */ case 37: /* stwu */
op->type = MKOP(STORE, u, 4); op->type = MKOP(STORE, u, 4);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 38: /* stb */ case 38: /* stb */
case 39: /* stbu */ case 39: /* stbu */
op->type = MKOP(STORE, u, 1); op->type = MKOP(STORE, u, 1);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 40: /* lhz */ case 40: /* lhz */
case 41: /* lhzu */ case 41: /* lhzu */
op->type = MKOP(LOAD, u, 2); op->type = MKOP(LOAD, u, 2);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 42: /* lha */ case 42: /* lha */
case 43: /* lhau */ case 43: /* lhau */
op->type = MKOP(LOAD, SIGNEXT | u, 2); op->type = MKOP(LOAD, SIGNEXT | u, 2);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 44: /* sth */ case 44: /* sth */
case 45: /* sthu */ case 45: /* sthu */
op->type = MKOP(STORE, u, 2); op->type = MKOP(STORE, u, 2);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 46: /* lmw */ case 46: /* lmw */
if (ra >= rd) if (ra >= rd)
break; /* invalid form, ra in range to load */ break; /* invalid form, ra in range to load */
op->type = MKOP(LOAD_MULTI, 0, 4 * (32 - rd)); op->type = MKOP(LOAD_MULTI, 0, 4 * (32 - rd));
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 47: /* stmw */ case 47: /* stmw */
op->type = MKOP(STORE_MULTI, 0, 4 * (32 - rd)); op->type = MKOP(STORE_MULTI, 0, 4 * (32 - rd));
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
#ifdef CONFIG_PPC_FPU #ifdef CONFIG_PPC_FPU
case 48: /* lfs */ case 48: /* lfs */
case 49: /* lfsu */ case 49: /* lfsu */
op->type = MKOP(LOAD_FP, u | FPCONV, 4); op->type = MKOP(LOAD_FP, u | FPCONV, 4);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 50: /* lfd */ case 50: /* lfd */
case 51: /* lfdu */ case 51: /* lfdu */
op->type = MKOP(LOAD_FP, u, 8); op->type = MKOP(LOAD_FP, u, 8);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 52: /* stfs */ case 52: /* stfs */
case 53: /* stfsu */ case 53: /* stfsu */
op->type = MKOP(STORE_FP, u | FPCONV, 4); op->type = MKOP(STORE_FP, u | FPCONV, 4);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
case 54: /* stfd */ case 54: /* stfd */
case 55: /* stfdu */ case 55: /* stfdu */
op->type = MKOP(STORE_FP, u, 8); op->type = MKOP(STORE_FP, u, 8);
op->ea = dform_ea(instr, regs); op->ea = dform_ea(word, regs);
break; break;
#endif #endif
...@@ -2538,14 +2540,14 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2538,14 +2540,14 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 56: /* lq */ case 56: /* lq */
if (!((rd & 1) || (rd == ra))) if (!((rd & 1) || (rd == ra)))
op->type = MKOP(LOAD, 0, 16); op->type = MKOP(LOAD, 0, 16);
op->ea = dqform_ea(instr, regs); op->ea = dqform_ea(word, regs);
break; break;
#endif #endif
#ifdef CONFIG_VSX #ifdef CONFIG_VSX
case 57: /* lfdp, lxsd, lxssp */ case 57: /* lfdp, lxsd, lxssp */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
switch (instr & 3) { switch (word & 3) {
case 0: /* lfdp */ case 0: /* lfdp */
if (rd & 1) if (rd & 1)
break; /* reg must be even */ break; /* reg must be even */
...@@ -2569,8 +2571,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2569,8 +2571,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#ifdef __powerpc64__ #ifdef __powerpc64__
case 58: /* ld[u], lwa */ case 58: /* ld[u], lwa */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
switch (instr & 3) { switch (word & 3) {
case 0: /* ld */ case 0: /* ld */
op->type = MKOP(LOAD, 0, 8); op->type = MKOP(LOAD, 0, 8);
break; break;
...@@ -2586,16 +2588,16 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2586,16 +2588,16 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#ifdef CONFIG_VSX #ifdef CONFIG_VSX
case 61: /* stfdp, lxv, stxsd, stxssp, stxv */ case 61: /* stfdp, lxv, stxsd, stxssp, stxv */
switch (instr & 7) { switch (word & 7) {
case 0: /* stfdp with LSB of DS field = 0 */ case 0: /* stfdp with LSB of DS field = 0 */
case 4: /* stfdp with LSB of DS field = 1 */ case 4: /* stfdp with LSB of DS field = 1 */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
op->type = MKOP(STORE_FP, 0, 16); op->type = MKOP(STORE_FP, 0, 16);
break; break;
case 1: /* lxv */ case 1: /* lxv */
op->ea = dqform_ea(instr, regs); op->ea = dqform_ea(word, regs);
if (instr & 8) if (word & 8)
op->reg = rd + 32; op->reg = rd + 32;
op->type = MKOP(LOAD_VSX, 0, 16); op->type = MKOP(LOAD_VSX, 0, 16);
op->element_size = 16; op->element_size = 16;
...@@ -2604,7 +2606,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2604,7 +2606,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 2: /* stxsd with LSB of DS field = 0 */ case 2: /* stxsd with LSB of DS field = 0 */
case 6: /* stxsd with LSB of DS field = 1 */ case 6: /* stxsd with LSB of DS field = 1 */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
op->reg = rd + 32; op->reg = rd + 32;
op->type = MKOP(STORE_VSX, 0, 8); op->type = MKOP(STORE_VSX, 0, 8);
op->element_size = 8; op->element_size = 8;
...@@ -2613,7 +2615,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2613,7 +2615,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
case 3: /* stxssp with LSB of DS field = 0 */ case 3: /* stxssp with LSB of DS field = 0 */
case 7: /* stxssp with LSB of DS field = 1 */ case 7: /* stxssp with LSB of DS field = 1 */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
op->reg = rd + 32; op->reg = rd + 32;
op->type = MKOP(STORE_VSX, 0, 4); op->type = MKOP(STORE_VSX, 0, 4);
op->element_size = 8; op->element_size = 8;
...@@ -2621,8 +2623,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2621,8 +2623,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
break; break;
case 5: /* stxv */ case 5: /* stxv */
op->ea = dqform_ea(instr, regs); op->ea = dqform_ea(word, regs);
if (instr & 8) if (word & 8)
op->reg = rd + 32; op->reg = rd + 32;
op->type = MKOP(STORE_VSX, 0, 16); op->type = MKOP(STORE_VSX, 0, 16);
op->element_size = 16; op->element_size = 16;
...@@ -2634,8 +2636,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2634,8 +2636,8 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
#ifdef __powerpc64__ #ifdef __powerpc64__
case 62: /* std[u] */ case 62: /* std[u] */
op->ea = dsform_ea(instr, regs); op->ea = dsform_ea(word, regs);
switch (instr & 3) { switch (word & 3) {
case 0: /* std */ case 0: /* std */
op->type = MKOP(STORE, 0, 8); op->type = MKOP(STORE, 0, 8);
break; break;
...@@ -2663,7 +2665,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2663,7 +2665,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 0; return 0;
logical_done: logical_done:
if (instr & 1) if (word & 1)
set_cr0(regs, op); set_cr0(regs, op);
logical_done_nocc: logical_done_nocc:
op->reg = ra; op->reg = ra;
...@@ -2671,7 +2673,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs, ...@@ -2671,7 +2673,7 @@ int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
return 1; return 1;
arith_done: arith_done:
if (instr & 1) if (word & 1)
set_cr0(regs, op); set_cr0(regs, op);
compute_done: compute_done:
op->reg = rd; op->reg = rd;
......
...@@ -847,12 +847,12 @@ static int __init emulate_compute_instr(struct pt_regs *regs, ...@@ -847,12 +847,12 @@ static int __init emulate_compute_instr(struct pt_regs *regs,
{ {
struct instruction_op op; struct instruction_op op;
if (!regs || !instr) if (!regs || !ppc_inst_val(instr))
return -EINVAL; return -EINVAL;
if (analyse_instr(&op, regs, instr) != 1 || if (analyse_instr(&op, regs, instr) != 1 ||
GETTYPE(op.type) != COMPUTE) { GETTYPE(op.type) != COMPUTE) {
pr_info("emulation failed, instruction = 0x%08x\n", instr); pr_info("emulation failed, instruction = 0x%08x\n", ppc_inst_val(instr));
return -EFAULT; return -EFAULT;
} }
...@@ -866,13 +866,13 @@ static int __init execute_compute_instr(struct pt_regs *regs, ...@@ -866,13 +866,13 @@ static int __init execute_compute_instr(struct pt_regs *regs,
extern int exec_instr(struct pt_regs *regs); extern int exec_instr(struct pt_regs *regs);
extern s32 patch__exec_instr; extern s32 patch__exec_instr;
if (!regs || !instr) if (!regs || !ppc_inst_val(instr))
return -EINVAL; return -EINVAL;
/* Patch the NOP with the actual instruction */ /* Patch the NOP with the actual instruction */
patch_instruction_site(&patch__exec_instr, instr); patch_instruction_site(&patch__exec_instr, instr);
if (exec_instr(regs)) { if (exec_instr(regs)) {
pr_info("execution failed, instruction = 0x%08x\n", instr); pr_info("execution failed, instruction = 0x%08x\n", ppc_inst_val(instr));
return -EFAULT; return -EFAULT;
} }
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
static bool store_updates_sp(unsigned int inst) static bool store_updates_sp(unsigned int inst)
{ {
/* check for 1 in the rA field */ /* check for 1 in the rA field */
if (((inst >> 16) & 0x1f) != 1) if (((ppc_inst_val(inst) >> 16) & 0x1f) != 1)
return false; return false;
/* check major opcode */ /* check major opcode */
switch (inst >> 26) { switch (inst >> 26) {
...@@ -60,10 +60,10 @@ static bool store_updates_sp(unsigned int inst) ...@@ -60,10 +60,10 @@ static bool store_updates_sp(unsigned int inst)
case OP_STFDU: case OP_STFDU:
return true; return true;
case OP_STD: /* std or stdu */ case OP_STD: /* std or stdu */
return (inst & 3) == 1; return (ppc_inst_val(inst) & 3) == 1;
case OP_31: case OP_31:
/* check minor opcode */ /* check minor opcode */
switch ((inst >> 1) & 0x3ff) { switch ((ppc_inst_val(inst) >> 1) & 0x3ff) {
case OP_31_XOP_STDUX: case OP_31_XOP_STDUX:
case OP_31_XOP_STWUX: case OP_31_XOP_STWUX:
case OP_31_XOP_STBUX: case OP_31_XOP_STBUX:
......
...@@ -2872,9 +2872,9 @@ generic_inst_dump(unsigned long adr, long count, int praddr, ...@@ -2872,9 +2872,9 @@ generic_inst_dump(unsigned long adr, long count, int praddr,
dotted = 0; dotted = 0;
last_inst = inst; last_inst = inst;
if (praddr) if (praddr)
printf(REG" %.8x", adr, inst); printf(REG" %.8x", adr, ppc_inst_val(inst));
printf("\t"); printf("\t");
dump_func(inst, adr); dump_func(ppc_inst_val(inst), adr);
printf("\n"); printf("\n");
} }
return adr - first_adr; return adr - first_adr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment