1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.lookup;
13 import net.sourceforge.phpdt.internal.compiler.ast.LocalDeclaration;
14 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
16 public class LocalVariableBinding extends VariableBinding {
18 public boolean isArgument;
20 public int resolvedPosition; // for code generation (position in method
23 public static final int UNUSED = 0;
25 public static final int USED = 1;
27 public static final int FAKE_USED = 2;
29 public int useFlag; // for flow analysis (default is UNUSED)
31 public BlockScope declaringScope; // back-pointer to its declaring scope
33 public LocalDeclaration declaration; // for source-positions
35 public int[] initializationPCs;
37 public int initializationCount = 0;
39 // for synthetic local variables
40 public LocalVariableBinding(char[] name, TypeBinding type, int modifiers,
45 this.modifiers = modifiers;
46 if (this.isArgument = isArgument)
47 this.constant = Constant.NotAConstant;
50 // regular local variable or argument
51 public LocalVariableBinding(LocalDeclaration declaration, TypeBinding type,
52 int modifiers, boolean isArgument) {
54 this(declaration.name, type, modifiers, isArgument);
55 this.declaration = declaration;
59 * API Answer the receiver's binding type from Binding.BindingID.
61 public final int bindingType() {
66 // Answer whether the variable binding is a secret variable added for code
68 public boolean isSecret() {
70 return declaration == null && !isArgument;
73 public void recordInitializationEndPC(int pc) {
75 if (initializationPCs[((initializationCount - 1) << 1) + 1] == -1)
76 initializationPCs[((initializationCount - 1) << 1) + 1] = pc;
79 public void recordInitializationStartPC(int pc) {
81 if (initializationPCs == null)
83 // optimize cases where reopening a contiguous interval
84 if ((initializationCount > 0)
85 && (initializationPCs[((initializationCount - 1) << 1) + 1] == pc)) {
86 initializationPCs[((initializationCount - 1) << 1) + 1] = -1; // reuse
95 int index = initializationCount << 1;
96 if (index == initializationPCs.length) {
101 (initializationPCs = new int[initializationCount << 2]),
104 initializationPCs[index] = pc;
105 initializationPCs[index + 1] = -1;
106 initializationCount++;
110 public String toString() {
112 String s = super.toString();
115 s += "[pos: " + String.valueOf(resolvedPosition) + "]"; //$NON-NLS-2$ //$NON-NLS-1$
118 s += "[pos: unused]"; //$NON-NLS-1$
121 s += "[pos: fake_used]"; //$NON-NLS-1$
124 s += "[id:" + String.valueOf(id) + "]"; //$NON-NLS-2$ //$NON-NLS-1$
125 if (initializationCount > 0) {
126 s += "[pc: "; //$NON-NLS-1$
127 for (int i = 0; i < initializationCount; i++) {
129 s += ", "; //$NON-NLS-1$
130 s += String.valueOf(initializationPCs[i << 1])
131 + "-" + ((initializationPCs[(i << 1) + 1] == -1) ? "?" : String.valueOf(initializationPCs[(i << 1) + 1])); //$NON-NLS-2$ //$NON-NLS-1$
133 s += "]"; //$NON-NLS-1$