Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2008-2010 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
package com.sun.btrace.runtime;
import java.util.Map;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import com.sun.btrace.org.objectweb.asm.Label;
import com.sun.btrace.org.objectweb.asm.MethodVisitor;
import com.sun.btrace.org.objectweb.asm.Opcodes;
import com.sun.btrace.org.objectweb.asm.Type;
import static com.sun.btrace.org.objectweb.asm.Opcodes.*;
import static com.sun.btrace.runtime.Constants.*;
/**
* This class verifies that the BTrace "action" method is
* safe - boundedness and read-only rules are checked
* such as no backward jumps (loops), no throw/new/invoke etc.
*
* @author A. Sundararajan
*/
public class MethodVerifier extends MethodVisitor {
final private static Set primitiveWrapperTypes;
final private static Set unboxMethods;
static {
primitiveWrapperTypes = new HashSet();
unboxMethods = new HashSet();
primitiveWrapperTypes.add("java/lang/Boolean");
primitiveWrapperTypes.add("java/lang/Byte");
primitiveWrapperTypes.add("java/lang/Character");
primitiveWrapperTypes.add("java/lang/Short");
primitiveWrapperTypes.add("java/lang/Integer");
primitiveWrapperTypes.add("java/lang/Long");
primitiveWrapperTypes.add("java/lang/Float");
primitiveWrapperTypes.add("java/lang/Double");
unboxMethods.add("booleanValue");
unboxMethods.add("byteValue");
unboxMethods.add("charValue");
unboxMethods.add("shortValue");
unboxMethods.add("intValue");
unboxMethods.add("longValue");
unboxMethods.add("floatValue");
unboxMethods.add("doubleValue");
}
private Verifier verifier;
private String className;
private String enclosingMethodName;
private CycleDetector graph;
private Map