Examples of RTLVariable


Examples of org.jakstab.rtl.expressions.RTLVariable

  private final SSLInstruction assertGTPrototype;
  private final SSLInstruction assertGEPrototype;
  private final SSLInstruction assertEQPrototype;
 
  protected MagicInstructions() {
    RTLVariable reg8 = ExpressionFactory.createVariable("reg8");
    RTLVariable reg16 = ExpressionFactory.createVariable("reg16");
    RTLVariable reg32 = ExpressionFactory.createVariable("reg32");
    RTLVariable i8 = ExpressionFactory.createVariable("i8");
    RTLVariable i16 = ExpressionFactory.createVariable("i16");
    RTLVariable i32 = ExpressionFactory.createVariable("i32");
    Writable modrm = ExpressionFactory.createVariable("modrm");
    allocPrototype = makePrototype(
        "ALLOC",
        new RTLAlloc(reg32),
        reg32.toString()
        );
    deallocPrototype = makePrototype(
        "DEALLOC",
        new RTLDealloc(ExpressionFactory.createVariable("modrm")),
        modrm.toString()
        );
    nondet8Prototype = makePrototype(
        "NONDET8",
        new AssignmentTemplate(8, reg8, ExpressionFactory.nondet(8)),
        reg8.toString(),
        i8.toString()
        );
    nondet16Prototype = makePrototype(
        "NONDET16",
        new AssignmentTemplate(16, reg16, ExpressionFactory.nondet(16)),
        reg16.toString(),
        i16.toString()
        );
    nondet32Prototype = makePrototype(
        "NONDET32",
        new AssignmentTemplate(32, reg32, ExpressionFactory.nondet(32)),
        reg32.toString(),
        i32.toString()
        );
    havoc8leqPrototype = makePrototype(
        "HAVOC8ULEQ",
        new RTLHavoc(reg8, i8),
        reg8.toString(),
        i8.toString()
        );
    havoc16leqPrototype = makePrototype(
        "HAVOC16ULEQ",
        new RTLHavoc(reg16, i16),
        reg16.toString(),
        i16.toString()
        );
    havoc32leqPrototype = makePrototype(
        "HAVOC32ULEQ",
        new RTLHavoc(reg32, i32),
        reg32.toString(),
        i32.toString()
        );
    assertGTPrototype = makePrototype(
        "ASSERTGT",
        new RTLAssert(ExpressionFactory.createGreaterThan(
            reg32, ExpressionFactory.createCast(modrm, ExpressionFactory.createNumber(32, 8)))),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.