|
From: Petar J. <pe...@so...> - 2020-01-09 18:29:41
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=3e48ab0803d4f1fc1872bb7faed3310d2f5915de commit 3e48ab0803d4f1fc1872bb7faed3310d2f5915de Author: Petar Jovanovic <mip...@gm...> Date: Thu Jan 9 18:28:57 2020 +0000 mips: add IOP_And1 and Iop_Or1 for nanoMIPS Support IOP_And1 and Iop_Or1 in iselWordExpr_R_wrk(). Diff: --- VEX/priv/host_nanomips_isel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VEX/priv/host_nanomips_isel.c b/VEX/priv/host_nanomips_isel.c index a76a5c6..fe60a49 100644 --- a/VEX/priv/host_nanomips_isel.c +++ b/VEX/priv/host_nanomips_isel.c @@ -504,12 +504,14 @@ static HReg iselWordExpr_R_wrk(ISelEnv * env, IRExpr * e) aluOp = NMalu_SUB; break; + case Iop_And1: case Iop_And8: case Iop_And16: case Iop_And32: aluOp = NMalu_AND; break; + case Iop_Or1: case Iop_Or8: case Iop_Or16: case Iop_Or32: |