mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 23:47:51 +01:00
112 lines
2.8 KiB
Java
112 lines
2.8 KiB
Java
/*
|
|
Copyright 2011 - 2018 Volker Berlin (i-net software)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
*/
|
|
package de.inetsoftware.classparser;
|
|
|
|
import java.io.DataInputStream;
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author Volker Berlin
|
|
*/
|
|
public class LocalVariable {
|
|
|
|
private final int start_pc;
|
|
|
|
private final int length;
|
|
|
|
private final int name_index;
|
|
|
|
private final int descriptor_index;
|
|
|
|
private final int index;
|
|
|
|
private final int position;
|
|
|
|
private final ConstantPool constantPool;
|
|
|
|
private boolean declared;
|
|
|
|
/**
|
|
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.7.13
|
|
* http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#5956
|
|
*
|
|
* @param input
|
|
* the stream of the class
|
|
* @param position
|
|
* the position in the LocalVariableTable
|
|
* @param constantPool
|
|
* Reference to the current ConstantPool
|
|
* @throws IOException
|
|
* if any I/O error occurs.
|
|
*/
|
|
LocalVariable( DataInputStream input, int position, ConstantPool constantPool ) throws IOException {
|
|
start_pc = input.readUnsignedShort();
|
|
length = input.readUnsignedShort();
|
|
name_index = input.readUnsignedShort();
|
|
descriptor_index = input.readUnsignedShort();
|
|
index = input.readUnsignedShort();
|
|
this.position = position;
|
|
this.constantPool = constantPool;
|
|
}
|
|
|
|
/**
|
|
* Get the index in the local variable table (memory location/slot).
|
|
*
|
|
* @return the index.
|
|
*/
|
|
public int getIndex() {
|
|
return index;
|
|
}
|
|
|
|
/**
|
|
* Get the position in the local variable table.
|
|
*
|
|
* @return the position
|
|
*/
|
|
public int getPosition() {
|
|
return position;
|
|
}
|
|
|
|
/**
|
|
* Get the name of the variable
|
|
*
|
|
* @return the name
|
|
*/
|
|
public String getName() {
|
|
return (String)constantPool.get( name_index );
|
|
}
|
|
|
|
public int getDescriptorIdx() {
|
|
return descriptor_index;
|
|
}
|
|
|
|
/**
|
|
* Was the declaration printed?
|
|
* @return true if already declared
|
|
*/
|
|
public boolean isDeclared() {
|
|
return declared;
|
|
}
|
|
|
|
/**
|
|
* Mark this variable as declared.
|
|
*/
|
|
public void setDeclared() {
|
|
declared = true;
|
|
}
|
|
}
|