Java Code Examples for jdk.internal.org.objectweb.asm.TypePath#WILDCARD_BOUND

The following examples show how to use jdk.internal.org.objectweb.asm.TypePath#WILDCARD_BOUND . 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: CheckClassAdapter.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 2
Source File: CheckClassAdapter.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 3
Source File: CheckClassAdapter.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 4
Source File: CheckClassAdapter.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 5
Source File: CheckClassAdapter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 6
Source File: CheckClassAdapter.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 7
Source File: CheckClassAdapter.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 8
Source File: CheckClassAdapter.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 9
Source File: CheckClassAdapter.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 10
Source File: CheckClassAdapter.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 11
Source File: CheckClassAdapter.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 12
Source File: CheckClassAdapter.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}
 
Example 13
Source File: CheckClassAdapter.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Checks the reference to a type in a type annotation.
 *
 * @param typeRef
 *            a reference to an annotated type.
 * @param typePath
 *            the path to the annotated type argument, wildcard bound, array
 *            element type, or static inner type within 'typeRef'. May be
 *            <tt>null</tt> if the annotation targets 'typeRef' as a whole.
 */
static void checkTypeRefAndPath(int typeRef, TypePath typePath) {
    int mask = 0;
    switch (typeRef >>> 24) {
    case TypeReference.CLASS_TYPE_PARAMETER:
    case TypeReference.METHOD_TYPE_PARAMETER:
    case TypeReference.METHOD_FORMAL_PARAMETER:
        mask = 0xFFFF0000;
        break;
    case TypeReference.FIELD:
    case TypeReference.METHOD_RETURN:
    case TypeReference.METHOD_RECEIVER:
    case TypeReference.LOCAL_VARIABLE:
    case TypeReference.RESOURCE_VARIABLE:
    case TypeReference.INSTANCEOF:
    case TypeReference.NEW:
    case TypeReference.CONSTRUCTOR_REFERENCE:
    case TypeReference.METHOD_REFERENCE:
        mask = 0xFF000000;
        break;
    case TypeReference.CLASS_EXTENDS:
    case TypeReference.CLASS_TYPE_PARAMETER_BOUND:
    case TypeReference.METHOD_TYPE_PARAMETER_BOUND:
    case TypeReference.THROWS:
    case TypeReference.EXCEPTION_PARAMETER:
        mask = 0xFFFFFF00;
        break;
    case TypeReference.CAST:
    case TypeReference.CONSTRUCTOR_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.METHOD_INVOCATION_TYPE_ARGUMENT:
    case TypeReference.CONSTRUCTOR_REFERENCE_TYPE_ARGUMENT:
    case TypeReference.METHOD_REFERENCE_TYPE_ARGUMENT:
        mask = 0xFF0000FF;
        break;
    default:
        throw new IllegalArgumentException("Invalid type reference sort 0x"
                + Integer.toHexString(typeRef >>> 24));
    }
    if ((typeRef & ~mask) != 0) {
        throw new IllegalArgumentException("Invalid type reference 0x"
                + Integer.toHexString(typeRef));
    }
    if (typePath != null) {
        for (int i = 0; i < typePath.getLength(); ++i) {
            int step = typePath.getStep(i);
            if (step != TypePath.ARRAY_ELEMENT
                    && step != TypePath.INNER_TYPE
                    && step != TypePath.TYPE_ARGUMENT
                    && step != TypePath.WILDCARD_BOUND) {
                throw new IllegalArgumentException(
                        "Invalid type path step " + i + " in " + typePath);
            }
            if (step != TypePath.TYPE_ARGUMENT
                    && typePath.getStepArgument(i) != 0) {
                throw new IllegalArgumentException(
                        "Invalid type path step argument for step " + i
                                + " in " + typePath);
            }
        }
    }
}