blob: 8d0dc84f4e03378ad10839827d527ab32f9d7148 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.codegen;
import org.eclipse.jdt.internal.compiler.lookup.TypeBinding;
public class ExceptionLabel extends Label {
public int ranges[] = {POS_NOT_SET,POS_NOT_SET};
public int count = 0; // incremented each time placeStart or placeEnd is called
public TypeBinding exceptionType;
public ExceptionLabel(CodeStream codeStream, TypeBinding exceptionType) {
super(codeStream);
this.exceptionType = exceptionType;
}
public void place() {
// register the handler inside the codeStream then normal place
codeStream.registerExceptionHandler(this);
if (CodeStream.DEBUG) System.out.println("\t\t\t\t<place at: "+codeStream.position+" - "+ this); //$NON-NLS-1$ //$NON-NLS-2$
this.position = codeStream.getPosition();
}
public void placeEnd() {
int endPosition = codeStream.position;
if (this.ranges[this.count-1] == endPosition) { // start == end ?
// discard empty exception handler
this.count--;
} else {
this.ranges[this.count++] = codeStream.position;
}
}
public void placeStart() {
int startPosition = codeStream.position;
if (this.count > 0 && this.ranges[this.count-1] == startPosition) { // start == previous end ?
// reopen current handler
this.count--;
return;
}
// only need to grow on even additions (i.e. placeStart only)
int length;
if (this.count == (length = this.ranges.length)) {
System.arraycopy(this.ranges, 0, this.ranges = new int[length*2], 0, length);
}
this.ranges[this.count++] = codeStream.position;
}
public String toString() {
String basic = getClass().getName();
basic = basic.substring(basic.lastIndexOf('.')+1);
StringBuffer buffer = new StringBuffer(basic);
buffer.append('@').append(Integer.toHexString(hashCode()));
buffer.append("(type=").append(this.exceptionType == null ? null : this.exceptionType.readableName()); //$NON-NLS-1$
buffer.append(", position=").append(position); //$NON-NLS-1$
buffer.append(", ranges = "); //$NON-NLS-1$
if (this.count == 0) {
buffer.append("[]"); //$NON-NLS-1$
} else {
for (int i = 0; i < this.count; i++) {
if (i % 2 == 0) {
buffer.append("[").append(ranges[i]); //$NON-NLS-1$
} else {
buffer.append(",").append(ranges[i]).append("]"); //$NON-NLS-1$ //$NON-NLS-2$
}
}
if (this.count % 2 == 1) {
buffer.append(",?]"); //$NON-NLS-1$
}
}
buffer.append(')');
return buffer.toString();
}
}