Package com.sun.hotspot.igv.data

Examples of com.sun.hotspot.igv.data.InputBytecode


            this.graph = graph;
        }

        protected Node[] createNodes(Object object) {
            assert object instanceof InputBytecode;
            InputBytecode bc = (InputBytecode) object;
            if (bc.getInlined() == null) {
                return new Node[]{new BytecodeNode(bc, graph, bciString)};
            } else {
                return new Node[]{new BytecodeNode(bc, graph, bciString), new MethodNode(bc.getInlined(), graph, bc.getBci() + " " + bciString)};
            }
        }
View Full Code Here

TOP

Related Classes of com.sun.hotspot.igv.data.InputBytecode

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.