org.eolang.jeo.representation.directives.OpcodeName 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-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.jeo.representation.directives;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import org.objectweb.asm.Opcodes;
/**
* Opcode name.
* The name of bytecode instruction. The name combined with unique number in order to
* avoid name collisions.
* @since 0.1.0
*/
public final class OpcodeName {
/**
* Opcode names.
*/
private static final Map NAMES = OpcodeName.init();
/**
* Default counter.
*/
private static final AtomicInteger DEFAULT = new AtomicInteger(0);
/**
* Bytecode operation code.
*/
private final int opcode;
/**
* Opcode counter.
*/
private final AtomicInteger counter;
/**
* Constructor.
* @param opcode Bytecode operation code.
*/
public OpcodeName(final int opcode) {
this(opcode, OpcodeName.DEFAULT);
}
/**
* Constructor.
* @param opcode Bytecode operation code.
* @param counter Opcode counter.
*/
public OpcodeName(final int opcode, final AtomicInteger counter) {
this.opcode = opcode;
this.counter = counter;
}
/**
* Get simplified opcode name without counter.
* @return Simplified opcode name.
*/
public String simplified() {
return OpcodeName.NAMES.getOrDefault(this.opcode, "UNKNOWN");
}
/**
* Get string representation of a bytecode.
* @return String representation of a bytecode.
*/
public String asString() {
final String opc = OpcodeName.NAMES.getOrDefault(this.opcode, "UNKNOWN");
return String.format("%s-%X", opc, this.counter.incrementAndGet());
}
/**
* Initialize opcode names.
* @return Opcode names.
*/
private static Map init() {
try {
final Map res = new HashMap<>();
for (final Field field : Opcodes.class.getFields()) {
if (field.getType() == int.class) {
res.put(field.getInt(Opcodes.class), field.getName());
}
}
return res;
} catch (final IllegalAccessException exception) {
throw new IllegalStateException(
String.format("Can't retrieve opcode names from '%s'", Opcodes.class),
exception
);
}
}
}