Package org.jakstab.rtl.expressions

Examples of org.jakstab.rtl.expressions.RTLMemoryLocation


  }

  @Override
  public byte getByteAt(int fp) {
    RTLNumber va = ExpressionFactory.createNumber(module.getVirtualAddress(fp).getValue(), 32);
    RTLMemoryLocation m = ExpressionFactory.createMemoryLocation(va, 8);
    Set<Tuple<RTLNumber>> cValSet = state.projectionFromConcretization(m);
    // Hooray for fragile code
    return (byte)cValSet.iterator().next().get(0).intValue();
  }
View Full Code Here

TOP

Related Classes of org.jakstab.rtl.expressions.RTLMemoryLocation

Copyright © 2018 www.massapicom. 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.