/* Copyright 2014 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.google.security.zynamics.reil.translators.mips; import static org.junit.Assert.assertEquals; import com.google.common.collect.Lists; import com.google.security.zynamics.reil.OperandSize; import com.google.security.zynamics.reil.ReilInstruction; import com.google.security.zynamics.reil.TestHelpers; import com.google.security.zynamics.reil.interpreter.CpuPolicyMips; import com.google.security.zynamics.reil.interpreter.EmptyInterpreterPolicy; import com.google.security.zynamics.reil.interpreter.Endianness; import com.google.security.zynamics.reil.interpreter.InterpreterException; import com.google.security.zynamics.reil.interpreter.ReilInterpreter; import com.google.security.zynamics.reil.interpreter.ReilRegisterStatus; import com.google.security.zynamics.reil.translators.InternalTranslationException; import com.google.security.zynamics.reil.translators.StandardEnvironment; import com.google.security.zynamics.reil.translators.mips.BgtzTranslator; import com.google.security.zynamics.zylib.disassembly.ExpressionType; import com.google.security.zynamics.zylib.disassembly.IInstruction; import com.google.security.zynamics.zylib.disassembly.MockInstruction; import com.google.security.zynamics.zylib.disassembly.MockOperandTree; import com.google.security.zynamics.zylib.disassembly.MockOperandTreeNode; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; @RunWith(JUnit4.class) public class BgtzTranslatorTest { private final ReilInterpreter interpreter = new ReilInterpreter(Endianness.LITTLE_ENDIAN, new CpuPolicyMips(), new EmptyInterpreterPolicy()); private final StandardEnvironment environment = new StandardEnvironment(); private final BgtzTranslator translator = new BgtzTranslator(); private final ArrayList<ReilInstruction> instructions = new ArrayList<ReilInstruction>(); @Test public void testBqelBranchNotTaken() throws InternalTranslationException, InterpreterException { interpreter.setRegister("$ra", BigInteger.valueOf(0x00400018L), OperandSize.DWORD, ReilRegisterStatus.DEFINED); interpreter.setRegister("$t0", BigInteger.valueOf(0x0L), OperandSize.DWORD, ReilRegisterStatus.DEFINED); final MockOperandTree operandTree1 = new MockOperandTree(); operandTree1.root = new MockOperandTreeNode(ExpressionType.SIZE_PREFIX, "b4"); operandTree1.root.m_children.add(new MockOperandTreeNode(ExpressionType.REGISTER, "$t0")); final MockOperandTree operandTree3 = new MockOperandTree(); operandTree3.root = new MockOperandTreeNode(ExpressionType.SIZE_PREFIX, "b4"); operandTree3.root.m_children.add(new MockOperandTreeNode(ExpressionType.IMMEDIATE_INTEGER, String.valueOf(0xcafebabeL))); final List<MockOperandTree> operands = Lists.newArrayList(operandTree1, operandTree3); final IInstruction instruction = new MockInstruction(0x40002CL, "bgtz", operands); translator.translate(environment, instruction, instructions); interpreter.interpret(TestHelpers.createMapping(instructions), BigInteger.valueOf(0x40002CL)); // check correct outcome assertEquals(3, TestHelpers.filterNativeRegisters(interpreter.getDefinedRegisters()).size()); assertEquals(BigInteger.valueOf(0x00400018L), interpreter.getVariableValue("$ra")); assertEquals(BigInteger.valueOf(0x40002cL), interpreter.getVariableValue("$pc")); assertEquals(BigInteger.ZERO, BigInteger.valueOf(interpreter.getMemorySize())); } @Test public void testBqelBranchTaken() throws InternalTranslationException, InterpreterException { interpreter.setRegister("$ra", BigInteger.valueOf(0x00400018L), OperandSize.DWORD, ReilRegisterStatus.DEFINED); interpreter.setRegister("$t0", BigInteger.valueOf(0x1L), OperandSize.DWORD, ReilRegisterStatus.DEFINED); final MockOperandTree operandTree1 = new MockOperandTree(); operandTree1.root = new MockOperandTreeNode(ExpressionType.SIZE_PREFIX, "b4"); operandTree1.root.m_children.add(new MockOperandTreeNode(ExpressionType.REGISTER, "$t0")); final MockOperandTree operandTree3 = new MockOperandTree(); operandTree3.root = new MockOperandTreeNode(ExpressionType.SIZE_PREFIX, "b4"); operandTree3.root.m_children.add(new MockOperandTreeNode(ExpressionType.IMMEDIATE_INTEGER, String.valueOf(0xcafebabeL))); final List<MockOperandTree> operands = Lists.newArrayList(operandTree1, operandTree3); final IInstruction instruction = new MockInstruction(0x40002CL, "bgtz", operands); translator.translate(environment, instruction, instructions); interpreter.interpret(TestHelpers.createMapping(instructions), BigInteger.valueOf(0x40002CL)); // check correct outcome assertEquals(3, TestHelpers.filterNativeRegisters(interpreter.getDefinedRegisters()).size()); assertEquals(BigInteger.valueOf(0x00400018L), interpreter.getVariableValue("$ra")); assertEquals(BigInteger.valueOf(0xcafebabeL), interpreter.getVariableValue("$pc")); assertEquals(BigInteger.ZERO, BigInteger.valueOf(interpreter.getMemorySize())); } }