001: /*
002: * ASM: a very small and fast Java bytecode manipulation framework
003: * Copyright (c) 2000-2005 INRIA, France Telecom
004: * All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions
008: * are met:
009: * 1. Redistributions of source code must retain the above copyright
010: * notice, this list of conditions and the following disclaimer.
011: * 2. Redistributions in binary form must reproduce the above copyright
012: * notice, this list of conditions and the following disclaimer in the
013: * documentation and/or other materials provided with the distribution.
014: * 3. Neither the name of the copyright holders nor the names of its
015: * contributors may be used to endorse or promote products derived from
016: * this software without specific prior written permission.
017: *
018: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
019: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
020: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
021: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
022: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
023: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
024: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
025: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
026: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
027: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
028: * THE POSSIBILITY OF SUCH DAMAGE.
029: */
030: package org.objectweb.asm.tree;
031:
032: import org.objectweb.asm.Label;
033: import org.objectweb.asm.Opcodes;
034: import org.objectweb.asm.MethodVisitor;
035:
036: import java.util.List;
037: import java.util.ArrayList;
038: import java.util.Arrays;
039: import java.util.Map;
040:
041: /**
042: * A node that represents a LOOKUPSWITCH instruction.
043: *
044: * @author Eric Bruneton
045: */
046: @SuppressWarnings("unchecked")
047: public class LookupSwitchInsnNode extends AbstractInsnNode {
048:
049: /**
050: * Beginning of the default handler block.
051: */
052: public LabelNode dflt;
053:
054: /**
055: * The values of the keys. This list is a list of {@link Integer} objects.
056: */
057: public List keys;
058:
059: /**
060: * Beginnings of the handler blocks. This list is a list of
061: * {@link LabelNode} objects.
062: */
063: public List labels;
064:
065: /**
066: * Constructs a new {@link LookupSwitchInsnNode}.
067: *
068: * @param dflt beginning of the default handler block.
069: * @param keys the values of the keys.
070: * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
071: * the beginning of the handler block for the <tt>keys[i]</tt> key.
072: */
073: public LookupSwitchInsnNode(final LabelNode dflt, final int[] keys,
074: final LabelNode[] labels) {
075: super (Opcodes.LOOKUPSWITCH);
076: this .dflt = dflt;
077: this .keys = new ArrayList(keys == null ? 0 : keys.length);
078: this .labels = new ArrayList(labels == null ? 0 : labels.length);
079: if (keys != null) {
080: for (int i = 0; i < keys.length; ++i) {
081: this .keys.add(new Integer(keys[i]));
082: }
083: }
084: if (labels != null) {
085: this .labels.addAll(Arrays.asList(labels));
086: }
087: }
088:
089: public int getType() {
090: return LOOKUPSWITCH_INSN;
091: }
092:
093: public void accept(final MethodVisitor mv) {
094: int[] keys = new int[this .keys.size()];
095: for (int i = 0; i < keys.length; ++i) {
096: keys[i] = ((Integer) this .keys.get(i)).intValue();
097: }
098: Label[] labels = new Label[this .labels.size()];
099: for (int i = 0; i < labels.length; ++i) {
100: labels[i] = ((LabelNode) this .labels.get(i)).getLabel();
101: }
102: mv.visitLookupSwitchInsn(dflt.getLabel(), keys, labels);
103: }
104:
105: public AbstractInsnNode clone(final Map labels) {
106: LookupSwitchInsnNode clone = new LookupSwitchInsnNode(clone(
107: dflt, labels), null, clone(this.labels, labels));
108: clone.keys.addAll(keys);
109: return clone;
110: }
111: }
|