Package org.jakstab.rtl.statements

Examples of org.jakstab.rtl.statements.RTLHalt


    if (!statementMap.containsKey(label)) {
      AbsoluteAddress address = label.getAddress();
      Instruction instr = getInstruction(address);
      // If we did not get an instruction, add an artificial Halt for recovery
      if (instr == null) {
        RTLHalt halt = new RTLHalt();
        halt.setLabel(label);
        putStatement(halt);
        logger.error("ERROR: Replacing unknown instruction with HALT.");
        if (Options.debug.getValue())
          throw new DisassemblyException("Disassembly failed at " + address);
      } else {
View Full Code Here

TOP

Related Classes of org.jakstab.rtl.statements.RTLHalt

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.