org.eolang.opeo.ast.LocalVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opeo-maven-plugin Show documentation
Show all versions of opeo-maven-plugin Show documentation
Bytecode decompiler to eolang and back
The newest version!
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2023 Objectionary.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.opeo.ast;
import java.util.Arrays;
import java.util.List;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.eolang.jeo.representation.xmir.XmlNode;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.Type;
import org.xembly.Directive;
import org.xembly.Directives;
/**
* A local variable.
* {@code
* int local1;
* }
* @since 0.2
* @todo #329:60min Test local variable unboxing.
* We should add more tests for {@link #store()} and {@link #opcodes()} methods.
* Now we test only primitive types.
* It would be nice to test boxed types as well, for example {@link Integer} for ISTORE.
*/
@ToString
@EqualsAndHashCode
public final class LocalVariable implements AstNode, Typed {
/**
* The prefix of the variable.
*/
private static final String PREFIX = "local-";
/**
* The identifier of the variable.
*/
private final int identifier;
/**
* The attributes of the variable.
* These attributes hold the type of the variable.
*/
private final Attributes attributes;
/**
* Constructor.
* @param node The XML node that represents variable.
*/
public LocalVariable(final XmlNode node) {
this(LocalVariable.videntifier(node), new Attributes(node.firstChild()));
}
/**
* Constructor.
* @param identifier The identifier of the variable.
* @param type The type of the variable.
*/
public LocalVariable(final int identifier, final Type type) {
this(identifier, new Attributes().descriptor(type.getDescriptor()).type("local"));
}
/**
* Constructor.
* @param identifier The identifier of the variable.
* @param attributes The attributes of the variable.
*/
private LocalVariable(final int identifier, final Attributes attributes) {
this.identifier = identifier;
this.attributes = attributes;
}
@Override
public Iterable toXmir() {
return new Directives().add("o")
.attr("base", String.format("%s%d", LocalVariable.PREFIX, this.identifier))
.append(this.attributes.toXmir())
.up();
}
@Override
public List opcodes() {
final Type type = this.type();
final List result;
if (type.equals(Type.INT_TYPE)) {
result = Arrays.asList(new Opcode(Opcodes.ILOAD, this.identifier));
} else if (type.equals(Type.LONG_TYPE)) {
result = Arrays.asList(new Opcode(Opcodes.LLOAD, this.identifier));
} else if (type.equals(Type.FLOAT_TYPE)) {
result = Arrays.asList(new Opcode(Opcodes.FLOAD, this.identifier));
} else if (type.equals(Type.DOUBLE_TYPE)) {
result = Arrays.asList(new Opcode(Opcodes.DLOAD, this.identifier));
} else {
result = Arrays.asList(new Opcode(type.getOpcode(Opcodes.ILOAD), this.identifier));
}
return result;
}
@Override
public Type type() {
return Type.getType(this.attributes.descriptor());
}
/**
* Store opcode for the variable.
* See {@link org.objectweb.asm.Opcodes#ISTORE}.
* @return Opcode to store the variable. See {@link Opcode}.
*/
public AstNode store() {
final Type type = this.type();
final AstNode result;
if (type.equals(Type.INT_TYPE) || type.equals(Type.getType(Integer.class))) {
result = new Opcode(Opcodes.ISTORE, this.identifier);
} else if (type.equals(Type.LONG_TYPE) || type.equals(Type.getType(Long.class))) {
result = new Opcode(Opcodes.LSTORE, this.identifier);
} else if (type.equals(Type.FLOAT_TYPE) || type.equals(Type.getType(Float.class))) {
result = new Opcode(Opcodes.FSTORE, this.identifier);
} else if (type.equals(Type.DOUBLE_TYPE) || type.equals(Type.getType(Double.class))) {
result = new Opcode(Opcodes.DSTORE, this.identifier);
} else {
result = new Opcode(this.type().getOpcode(Opcodes.ISTORE), this.identifier);
}
return result;
}
/**
* Get the identifier of the variable.
* @param node The XML node that represents variable.
* @return The identifier.
*/
private static int videntifier(final XmlNode node) {
return Integer.parseInt(
node.attribute("base").orElseThrow(
() -> new IllegalArgumentException(
String.format(
"Can't recognize variable node: %n%s%nWe expected to find 'base' attribute",
node
)
)
).substring(LocalVariable.PREFIX.length())
);
}
}