org.eolang.jeo.representation.bytecode.MaxLocals Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeo-maven-plugin Show documentation
Show all versions of jeo-maven-plugin Show documentation
Optimisation of Java Bytecode via EOLANG
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2024 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.jeo.representation.bytecode;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.NavigableMap;
import java.util.TreeMap;
import lombok.ToString;
import org.objectweb.asm.Type;
/**
* Bytecode method max locals.
* This class knows hot to compute the maximum number of local variables
* that can be used by a method.
* @since 0.6
*/
final class MaxLocals {
/**
* Method properties.
*/
private final BytecodeMethodProperties props;
/**
* Method instructions.
*/
private final List extends BytecodeEntry> instructions;
/**
* Try-catch blocks.
*/
private final List blocks;
/**
* Constructor.
* @param props Method properties.
* @param instructions Instructions.
* @param blocks Try-catch blocks.
*/
MaxLocals(
final BytecodeMethodProperties props,
final List extends BytecodeEntry> instructions,
final List blocks
) {
this.props = props;
this.instructions = instructions;
this.blocks = blocks;
}
/**
* Compute the maximum number of local variables.
* @return Maximum number of local variables.
*/
public int value() {
return new InstructionsFlow(this.instructions, this.blocks)
.max(
this.initial(),
instr -> {
final Variables result;
if (instr.isVarInstruction()) {
result = new Variables(instr);
} else {
result = new Variables();
}
return result;
}
).size();
}
/**
* Initial variables.
* @return Variables.
*/
private Variables initial() {
final ArrayList init = new ArrayList<>(0);
if (!this.props.isStatic()) {
init.add(1);
}
Arrays.stream(Type.getArgumentTypes(this.props.descriptor()))
.map(Type::getSize)
.forEach(init::add);
final Map initial = new HashMap<>(0);
int curr = 0;
while (curr < init.size()) {
final Integer size = init.get(curr);
initial.put(curr, size);
curr += size;
}
return new Variables(initial);
}
/**
* Reducible variables.
* Used during data-flow analysis to compute the maximum number of local variables.
* @since 0.6
*/
@ToString
private static final class Variables implements InstructionsFlow.Reducible {
/**
* All variables with their sizes.
*/
private final NavigableMap all;
/**
* Constructor.
*/
Variables() {
this(new TreeMap<>());
}
/**
* Copy constructor.
* @param vars Variables to copy.
*/
Variables(final Variables vars) {
this(vars.all);
}
/**
* Constructor.
* @param instr Bytecode instruction.
*/
Variables(final BytecodeInstruction instr) {
this(instr.varIndex(), instr.varSize());
}
/**
* Constructor.
* @param index Instruction index.
* @param size Corresponding variable size.
*/
Variables(final int index, final int size) {
this(Collections.singletonMap(index, size));
}
/**
* Constructor.
* @param all All variables.
*/
Variables(final Map all) {
this.all = new TreeMap<>(all);
}
@Override
public int compareTo(final Variables other) {
return Integer.compare(this.size(), other.size());
}
@Override
public Variables add(final Variables other) {
final Map variables = new HashMap<>();
variables.putAll(this.all);
variables.putAll(other.all);
return new Variables(variables);
}
@Override
public Variables enterBlock() {
return new Variables(this);
}
/**
* Get size.
* @return Size.
*/
int size() {
final int result;
if (this.all.isEmpty()) {
result = 0;
} else {
final Map.Entry biggest = this.all.lastEntry();
result = biggest.getKey() + 1 + (int) (biggest.getValue() * 0.5);
}
return result;
}
}
}