Package com.strobel.assembler.ir

Examples of com.strobel.assembler.ir.OpCode


    }

    public static Instruction reverseLoadOrStore(final Instruction instruction) {
        VerifyArgument.notNull(instruction, "instruction");

        final OpCode oldCode = instruction.getOpCode();
        final OpCode newCode;

        if (oldCode.isStore()) {
            newCode = OpCode.valueOf(oldCode.name().replace("STORE", "LOAD"));
        }
        else if (oldCode.isLoad()) {
View Full Code Here

TOP

Related Classes of com.strobel.assembler.ir.OpCode

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.