/* Copyright 2011-2016 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.arm; import com.google.security.zynamics.reil.OperandSize; import com.google.security.zynamics.reil.ReilHelpers; import com.google.security.zynamics.reil.ReilInstruction; import com.google.security.zynamics.reil.translators.ITranslationEnvironment; import com.google.security.zynamics.reil.translators.InternalTranslationException; import com.google.security.zynamics.reil.translators.TranslationHelpers; import com.google.security.zynamics.zylib.disassembly.IInstruction; import com.google.security.zynamics.zylib.disassembly.IOperandTreeNode; import java.util.List; public class ARMUhsub16Translator extends ARMBaseTranslator { @Override protected void translateCore(final ITranslationEnvironment environment, final IInstruction instruction, final List<ReilInstruction> instructions) { final IOperandTreeNode registerOperand1 = instruction.getOperands().get(0).getRootNode().getChildren().get(0); final IOperandTreeNode registerOperand2 = instruction.getOperands().get(1).getRootNode().getChildren().get(0); final IOperandTreeNode registerOperand3 = instruction.getOperands().get(2).getRootNode().getChildren().get(0); final String targetRegister = (registerOperand1.getValue()); final String sourceRegister1 = (registerOperand2.getValue()); final String sourceRegister2 = (registerOperand3.getValue()); final OperandSize bt = OperandSize.BYTE; final OperandSize dw = OperandSize.DWORD; long baseOffset = (instruction.getAddress().toLong() * 0x100) + instructions.size(); final String tmpResult = environment.getNextVariableString(); final String tmpRm15to0 = environment.getNextVariableString(); final String tmpRm31to16 = environment.getNextVariableString(); final String tmpRn15to0 = environment.getNextVariableString(); final String tmpRn31to16 = environment.getNextVariableString(); final String tmpVar1 = environment.getNextVariableString(); final String tmpVar1Safe = environment.getNextVariableString(); final String tmpVar1SafeShifted = environment.getNextVariableString(); final String tmpVar3 = environment.getNextVariableString(); final String tmpVar3Safe = environment.getNextVariableString(); // Low instructions.add(ReilHelpers.createAnd(baseOffset++, dw, sourceRegister1, dw, String.valueOf(0xFFFFL), dw, tmpRn15to0)); instructions.add(ReilHelpers.createAnd(baseOffset++, dw, sourceRegister2, dw, String.valueOf(0xFFFFL), dw, tmpRm15to0)); instructions.add(ReilHelpers.createSub(baseOffset++, dw, tmpRn15to0, dw, tmpRm15to0, dw, tmpVar1)); instructions.add(ReilHelpers.createAnd(baseOffset++, dw, tmpVar1, dw, String.valueOf(0x1FFFEL), dw, tmpVar1Safe)); instructions.add(ReilHelpers.createBsh(baseOffset++, dw, tmpVar1Safe, bt, String.valueOf(-1L), dw, tmpVar1SafeShifted)); // High instructions.add(ReilHelpers.createBsh(baseOffset++, dw, sourceRegister1, dw, String.valueOf(-16), dw, tmpRn31to16)); instructions.add(ReilHelpers.createBsh(baseOffset++, dw, sourceRegister2, dw, String.valueOf(-16), dw, tmpRm31to16)); instructions.add(ReilHelpers.createSub(baseOffset++, dw, tmpRn31to16, dw, tmpRm31to16, dw, tmpVar3)); instructions.add(ReilHelpers.createAnd(baseOffset++, dw, tmpVar3, dw, String.valueOf(0x1FFFEL), dw, tmpVar3Safe)); instructions.add(ReilHelpers.createBsh(baseOffset++, dw, tmpVar3Safe, dw, String.valueOf(16 - 1), dw, tmpResult)); // Result instructions.add(ReilHelpers.createOr(baseOffset++, dw, tmpResult, dw, tmpVar1SafeShifted, dw, targetRegister)); } /** * UHSUB16{<cond>} <Rd>, <Rn>, <Rm> * * Operation: * * if ConditionPassed(cond) then diff = Rn[15:0] - Rm[15:0] // Unsigned subtraction Rd[15:0] = * diff[16:1] diff = Rn[31:16] - Rm[31:16] // Unsigned subtraction Rd[31:16] = diff[16:1] */ @Override public void translate(final ITranslationEnvironment environment, final IInstruction instruction, final List<ReilInstruction> instructions) throws InternalTranslationException { TranslationHelpers.checkTranslationArguments(environment, instruction, instructions, "UHSUB16"); translateAll(environment, instruction, "UHSUB16", instructions); } }