Java Code Examples for org.objectweb.asm.Opcodes#NOP

The following examples show how to use org.objectweb.asm.Opcodes#NOP . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NodeUtils.java    From obfuscator with MIT License 5 votes vote down vote up
public static AbstractInsnNode getWrapperMethod(Type type) {
    if (type.getSort() != Type.VOID && TYPE_TO_WRAPPER.containsKey(type)) {
        return new MethodInsnNode(Opcodes.INVOKESTATIC, TYPE_TO_WRAPPER.get(type), "valueOf", "(" + type.toString() + ")L" + TYPE_TO_WRAPPER.get(type) + ";", false);
    }

    return new InsnNode(Opcodes.NOP);
}
 
Example 2
Source File: NodeUtils.java    From obfuscator with MIT License 5 votes vote down vote up
public static AbstractInsnNode getUnWrapMethod(Type type) {
    if (TYPE_TO_WRAPPER.containsKey(type)) {
        String internalName = Utils.getInternalName(type);
        return new MethodInsnNode(Opcodes.INVOKESTATIC, TYPE_TO_WRAPPER.get(type), internalName + "Value", "(L" + TYPE_TO_WRAPPER.get(type) + ";)" + type.toString(), false);
    }

    return new InsnNode(Opcodes.NOP);
}
 
Example 3
Source File: LintUtils.java    From javaide with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the previous opcode prior to the given node, ignoring label and
 * line number nodes
 *
 * @param node the node to look up the previous opcode for
 * @return the previous opcode, or {@link Opcodes#NOP} if no previous node
 *         was found
 */
public static int getPrevOpcode(@NonNull AbstractInsnNode node) {
    AbstractInsnNode prev = getPrevInstruction(node);
    if (prev != null) {
        return prev.getOpcode();
    } else {
        return Opcodes.NOP;
    }
}
 
Example 4
Source File: LintUtils.java    From javaide with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the next opcode after to the given node, ignoring label and line
 * number nodes
 *
 * @param node the node to look up the next opcode for
 * @return the next opcode, or {@link Opcodes#NOP} if no next node was found
 */
public static int getNextOpcode(@NonNull AbstractInsnNode node) {
    AbstractInsnNode next = getNextInstruction(node);
    if (next != null) {
        return next.getOpcode();
    } else {
        return Opcodes.NOP;
    }
}
 
Example 5
Source File: ByteInstructionTest.java    From cacheonix-core with GNU Lesser General Public License v2.1 5 votes vote down vote up
/**
 * Test method for {@link ByteInstruction#ByteInstruction(int, int)} .
 */
public void testByteInstruction() {

   final int code = Opcodes.NOP;
   final ByteInstruction bi = new ByteInstruction(code,
           ByteInstruction.START_STACK_INDEX);

   assertNotNull(bi);

   assertEquals(Opcodes.NOP, bi.code);
   assertEquals(ByteInstruction.START_STACK_INDEX, bi.stackIndex);
   assertEquals(ByteInstruction.START_STACK_INDEX, bi.nextStackIndex);
}
 
Example 6
Source File: ByteInstruction.java    From cacheonix-core with GNU Lesser General Public License v2.1 5 votes vote down vote up
/**
 * Class Constructor
 */
public ByteInstruction() {

   this.code = Opcodes.NOP;
   this.stackIndex = START_STACK_INDEX;
   this.nextStackIndex = START_STACK_INDEX;
}
 
Example 7
Source File: FramePaddingMethodVisitor.java    From byte-buddy with Apache License 2.0 5 votes vote down vote up
@Override
public void visitFrame(int type, int numLocal, Object[] local, int numStack, Object[] stack) {
    if (padding) {
        super.visitInsn(Opcodes.NOP);
    } else {
        padding = true;
    }
    super.visitFrame(type, numLocal, local, numStack, stack);
}
 
Example 8
Source File: CheckMethodAdapter.java    From Concurnas with MIT License 2 votes vote down vote up
/**
 * Checks that the method to visit the given opcode is equal to the given method.
 *
 * @param opcode the opcode to be checked.
 * @param method the expected visit method.
 */
private static void checkOpcodeMethod(final int opcode, final Method method) {
  if (opcode < Opcodes.NOP || opcode > Opcodes.IFNONNULL || OPCODE_METHODS[opcode] != method) {
    throw new IllegalArgumentException("Invalid opcode: " + opcode);
  }
}
 
Example 9
Source File: CheckMethodAdapter.java    From JReFrameworker with MIT License 2 votes vote down vote up
/**
 * Checks that the method to visit the given opcode is equal to the given method.
 *
 * @param opcode the opcode to be checked.
 * @param method the expected visit method.
 */
private static void checkOpcodeMethod(final int opcode, final Method method) {
  if (opcode < Opcodes.NOP || opcode > Opcodes.IFNONNULL || OPCODE_METHODS[opcode] != method) {
    throw new IllegalArgumentException("Invalid opcode: " + opcode);
  }
}
 
Example 10
Source File: CheckMethodAdapter.java    From JReFrameworker with MIT License 2 votes vote down vote up
/**
 * Checks that the method to visit the given opcode is equal to the given method.
 *
 * @param opcode the opcode to be checked.
 * @param method the expected visit method.
 */
private static void checkOpcodeMethod(final int opcode, final Method method) {
  if (opcode < Opcodes.NOP || opcode > Opcodes.IFNONNULL || OPCODE_METHODS[opcode] != method) {
    throw new IllegalArgumentException("Invalid opcode: " + opcode);
  }
}