use of com.google.security.zynamics.reil.OperandSize in project binnavi by google.
the class ARMSsub16Translator method translateCore.
@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 long baseOffset = ReilHelpers.nextReilAddress(instruction, instructions);
new Processor() {
@Override
protected int getResultShiftDelta() {
return 0;
}
@Override
protected String[] process(final long offset, final String[] firstTwo, final String[] secondTwo) {
final String diff1 = environment.getNextVariableString();
final String diff2 = environment.getNextVariableString();
final String trueDiff1 = environment.getNextVariableString();
final String trueDiff2 = environment.getNextVariableString();
final String tmpVar1 = environment.getNextVariableString();
final String tmpVar2 = environment.getNextVariableString();
long baseOffset = offset;
// do the subs
Helpers.signedSub(baseOffset, environment, instruction, instructions, secondTwo[0], firstTwo[0], diff1, trueDiff1);
baseOffset = ReilHelpers.nextReilAddress(instruction, instructions);
Helpers.signedSub(baseOffset, environment, instruction, instructions, secondTwo[1], firstTwo[1], diff2, trueDiff2);
baseOffset = ReilHelpers.nextReilAddress(instruction, instructions);
// CPSR GE
instructions.add(ReilHelpers.createXor(baseOffset++, dw, trueDiff1, dw, String.valueOf(0xFFFFL), dw, tmpVar1));
instructions.add(ReilHelpers.createBsh(baseOffset++, dw, tmpVar1, dw, String.valueOf(-15L), bt, "CPSR_GE_0"));
instructions.add(ReilHelpers.createStr(baseOffset++, bt, "CPSR_GE_0", bt, "CPSR_GE_1"));
instructions.add(ReilHelpers.createXor(baseOffset++, dw, trueDiff2, dw, String.valueOf(0xFFFFL), dw, tmpVar2));
instructions.add(ReilHelpers.createBsh(baseOffset++, dw, tmpVar2, dw, String.valueOf(-15L), bt, "CPSR_GE_2"));
instructions.add(ReilHelpers.createStr(baseOffset++, bt, "CPSR_GE_2", bt, "CPSR_GE_3"));
return new String[] { diff1, diff2 };
}
}.generate(environment, baseOffset, 16, sourceRegister1, sourceRegister2, targetRegister, instructions);
}
use of com.google.security.zynamics.reil.OperandSize in project binnavi by google.
the class SwrTranslator method translate.
@Override
public void translate(final ITranslationEnvironment environment, final IInstruction instruction, final List<ReilInstruction> instructions) throws InternalTranslationException {
TranslationHelpers.checkTranslationArguments(environment, instruction, instructions, "swr");
final OperandSize dw = OperandSize.DWORD;
final String lastTwoAddressBits = environment.getNextVariableString();
final String shiftValue = environment.getNextVariableString();
final String memoryMaskShiftValue = environment.getNextVariableString();
final String registerShiftAmount = environment.getNextVariableString();
final String memoryContent = environment.getNextVariableString();
final String memoryMask = environment.getNextVariableString();
final String memoryMaskedContent = environment.getNextVariableString();
final String combinedContent = environment.getNextVariableString();
final String registerShiftedContent = environment.getNextVariableString();
final String address = environment.getNextVariableString();
final String resultValue = environment.getNextVariableString();
final IOperandTreeNode sourceRegister = instruction.getOperands().get(0).getRootNode().getChildren().get(0);
final long baseOffset = ReilHelpers.toReilAddress(instruction.getAddress()).toLong();
long offset = baseOffset;
final String extendedValue = SignExtendGenerator.extendAndAdd(offset, environment, instruction.getOperands().get(1), instructions);
offset = baseOffset + instructions.size();
instructions.add(ReilHelpers.createAnd(offset++, dw, extendedValue, dw, String.valueOf(0xFFFFFFFCL), dw, address));
instructions.add(ReilHelpers.createLdm(offset++, dw, address, dw, memoryContent));
instructions.add(ReilHelpers.createAnd(offset++, dw, extendedValue, dw, String.valueOf(3L), dw, lastTwoAddressBits));
instructions.add(ReilHelpers.createBsh(offset++, dw, lastTwoAddressBits, dw, String.valueOf(3L), dw, shiftValue));
final String endianess = "little";
if (endianess.equalsIgnoreCase("little")) {
// little endianess case
// address bits 1:0 00
// register contents 0x11223344 shifted left by 0 -> 0x11223344
// memory contents 0xAABBCCDD anded with mask 0x00000000 -> 0x00000000
// both ored -> 0x11223344
// anded and stored
instructions.add(ReilHelpers.createAdd(offset++, dw, String.valueOf(0L), dw, shiftValue, dw, registerShiftAmount));
instructions.add(ReilHelpers.createAdd(offset++, dw, String.valueOf(-32L), dw, shiftValue, dw, memoryMaskShiftValue));
} else if (endianess.equalsIgnoreCase("big")) {
// big endian case
// address bits 1:0 00
// register contents 0x11223344 shifted left by 24 -> 0x11223344000000
// memory contents 0xAABBCCDD anded with mask 0x00FFFFFF -> 0x00BBCCDD
// both ored -> 0x11223344BBCCDD
// and stored
instructions.add(ReilHelpers.createSub(offset++, dw, String.valueOf(24L), dw, shiftValue, dw, registerShiftAmount));
instructions.add(ReilHelpers.createSub(offset++, dw, String.valueOf(-8L), dw, shiftValue, dw, memoryMaskShiftValue));
}
// prepare memory to be correct for storage
instructions.add(ReilHelpers.createBsh(offset++, dw, String.valueOf(0xFFFFFFFFL), dw, memoryMaskShiftValue, dw, memoryMask));
instructions.add(ReilHelpers.createAnd(offset++, dw, memoryContent, dw, memoryMask, dw, memoryMaskedContent));
// prepare register for storage
instructions.add(ReilHelpers.createBsh(offset++, dw, sourceRegister.getValue(), dw, registerShiftAmount, dw, registerShiftedContent));
// combine memory and register
instructions.add(ReilHelpers.createOr(offset++, dw, registerShiftedContent, dw, memoryMaskedContent, dw, combinedContent));
// store to memory
instructions.add(ReilHelpers.createAnd(offset++, dw, combinedContent, dw, String.valueOf(0xFFFFFFFFL), dw, resultValue));
instructions.add(ReilHelpers.createStm(offset++, dw, resultValue, dw, address));
}
use of com.google.security.zynamics.reil.OperandSize in project binnavi by google.
the class WsbhTranslator method translate.
@Override
public void translate(final ITranslationEnvironment environment, final IInstruction instruction, final List<ReilInstruction> instructions) throws InternalTranslationException {
TranslationHelpers.checkTranslationArguments(environment, instruction, instructions, "wsbh");
final String rd = instruction.getOperands().get(0).getRootNode().getChildren().get(0).getValue();
final String rt = instruction.getOperands().get(1).getRootNode().getChildren().get(0).getValue();
final long baseOffset = ReilHelpers.toReilAddress(instruction.getAddress()).toLong();
long offset = baseOffset;
final OperandSize dw = OperandSize.DWORD;
final String rtByte1 = environment.getNextVariableString();
final String rtByte2 = environment.getNextVariableString();
final String rtByte3 = environment.getNextVariableString();
final String rtByte4 = environment.getNextVariableString();
final String newRtByte1 = environment.getNextVariableString();
final String newRtByte2 = environment.getNextVariableString();
final String newRtByte3 = environment.getNextVariableString();
final String newRtByte4 = environment.getNextVariableString();
final String tempResultLower = environment.getNextVariableString();
final String tempResultUpper = environment.getNextVariableString();
instructions.add(ReilHelpers.createAnd(offset++, dw, rt, dw, String.valueOf(0xFF000000L), dw, rtByte4));
instructions.add(ReilHelpers.createAnd(offset++, dw, rt, dw, String.valueOf(0x00FF0000L), dw, rtByte3));
instructions.add(ReilHelpers.createAnd(offset++, dw, rt, dw, String.valueOf(0x0000FF00L), dw, rtByte2));
instructions.add(ReilHelpers.createAnd(offset++, dw, rt, dw, String.valueOf(0x000000FFL), dw, rtByte1));
instructions.add(ReilHelpers.createBsh(offset++, dw, rtByte4, dw, String.valueOf(-8L), dw, newRtByte3));
instructions.add(ReilHelpers.createBsh(offset++, dw, rtByte3, dw, String.valueOf(8L), dw, newRtByte4));
instructions.add(ReilHelpers.createBsh(offset++, dw, rtByte2, dw, String.valueOf(-8L), dw, newRtByte1));
instructions.add(ReilHelpers.createBsh(offset++, dw, rtByte1, dw, String.valueOf(8L), dw, newRtByte2));
instructions.add(ReilHelpers.createOr(offset++, dw, newRtByte3, dw, newRtByte4, dw, tempResultUpper));
instructions.add(ReilHelpers.createOr(offset++, dw, newRtByte1, dw, newRtByte2, dw, tempResultLower));
instructions.add(ReilHelpers.createOr(offset, dw, tempResultUpper, dw, tempResultLower, dw, rd));
}
use of com.google.security.zynamics.reil.OperandSize in project binnavi by google.
the class XoriTranslator method translate.
@Override
public void translate(final ITranslationEnvironment environment, final IInstruction instruction, final List<ReilInstruction> instructions) throws InternalTranslationException {
TranslationHelpers.checkTranslationArguments(environment, instruction, instructions, "xori");
final Triple<IOperandTree, IOperandTree, IOperandTree> operands = OperandLoader.loadDuplicateFirst(instruction);
final String targetRegister = operands.first().getRootNode().getChildren().get(0).getValue();
final String sourceRegister = operands.second().getRootNode().getChildren().get(0).getValue();
final String sourceImmediate = operands.third().getRootNode().getChildren().get(0).getValue();
final long baseOffset = ReilHelpers.toReilAddress(instruction.getAddress()).toLong();
final long offset = baseOffset;
final OperandSize dw = OperandSize.DWORD;
instructions.add(ReilHelpers.createXor(offset, dw, sourceRegister, dw, sourceImmediate, dw, targetRegister));
}
use of com.google.security.zynamics.reil.OperandSize in project binnavi by google.
the class THUMBStrTranslator method translateCore.
@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);
// Hack for STR Rx, =0xSOMEADDR
IOperandTreeNode registerOperand2 = null;
if ((instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0).getType() == ExpressionType.IMMEDIATE_INTEGER) || (instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0).getType() == ExpressionType.REGISTER)) {
registerOperand2 = instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0);
} else {
registerOperand2 = instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0).getChildren().get(0);
}
IOperandTreeNode variableOperand1 = null;
if (instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0).getChildren().size() == 2) {
variableOperand1 = instruction.getOperands().get(1).getRootNode().getChildren().get(0).getChildren().get(0).getChildren().get(1);
}
final String targetRegister1 = (registerOperand1.getValue());
final String sourceRegister2 = (registerOperand2.getValue());
final String sourceVariable1 = variableOperand1 == null ? "0" : (variableOperand1.getValue());
final OperandSize dw = OperandSize.DWORD;
long baseOffset = (instruction.getAddress().toLong() * 0x100) + instructions.size();
final String tmpAddress = environment.getNextVariableString();
final String tmpVar1 = environment.getNextVariableString();
instructions.add(ReilHelpers.createAnd(baseOffset++, dw, targetRegister1, dw, String.valueOf(0xFFFFFFFFL), dw, tmpVar1));
instructions.add(ReilHelpers.createAdd(baseOffset++, dw, sourceRegister2, dw, sourceVariable1, dw, tmpAddress));
instructions.add(ReilHelpers.createStm(baseOffset++, dw, tmpVar1, dw, tmpAddress));
}
Aggregations