# asmtools **Repository Path**: mirrors_openjdk/asmtools ## Basic Information - **Project Name**: asmtools - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2023-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README README - AsmTools - Version 8.0
 

Release Notes

AsmTools

September 2023

 


[Skip TOC]

Table of Contents

Introduction
New in This Release
System Requirements
Release Contents
Installation
Using AsmTools
Known Bugs and Issues
Obtaining Sources
Building from Sources
Contribute

Introduction

AsmTools is a software package containing a collection of tools that you can use to encode and decode a Java class file, without using a Javac compiler. You can use AsmTools to create class files which can not normally be produced by a compiler. These class files can be used during the development process to test the compliance of a Virtual Machine (VM) to its specification.

These release notes contain information about the ASM Tools version 8.0.
See the ( CodeTools project) AsmTools OpenJDK project page for more information about AsmTools.

New in This Release

New Features

Bug ID Description
CODETOOLS-7903558 jasm: Add support this_class, super_class value(s)
CODETOOLS-7903531 jdis: Suppress printing comments by adding an option
CODETOOLS-7903549 jdis: Add support to print instruction offsets while the output is not detailed

Fixed Bugs

Bug ID Description
CODETOOLS-7903546 jdec,jdis: Enhance decompiler outputs flexibility and readability
CODETOOLS-7903555 jdis: incorrectly prints the NameAndType pair in the ConstantPool for the -nc option
CODETOOLS-7903536 jasm: the tool ignores options: -nowarn, -strict
CODETOOLS-7903141 jasm/jdis: implement support of The LocalVariableTable Attribute
CODETOOLS-7903509 jcoder, jasm: add option to override class file version in source file(s)
CODETOOLS-7903405 compiler does not warn about instruction arguments that exceed allowed limits
CODETOOLS-7903402 jdis: tool writes incorrect StackMapTable if the first same_frame has type 0
CODETOOLS-7903401 jtreg fails if set of jdk tests process jasm,jdis files with defects
CODETOOLS-7903259 jasm: file names without extensions causes a tool crash
CODETOOLS-7903249 asmtools build produces javadoc warning caused by invalid usage of tag &
CODETOOLS-7903248 jasm: FieldData.ConstantValue holds undefined reference to CP while writing fields to a class

System Requirements

Using ASM Tools requires a properly configured, certified ava Platform, Standard Edition version 17 or later

Installation

To install the AsmTools, simply unzip the  asmtools-8.0.zip distribution file in the directory of your choice. Optionally, you may wish to define an environment variable (ASMTOOLS_HOME) to point to this location for your convenience.

Release Contents

This section lists the components under the base subdirectory structure (asmtools-8.0/) that is created when you unzip the AsmTools distribution archive during installation.

Important Component Descriptions and Locations

Component Description
README.html The AsmTools release notes (this document).
lib/asmtools.jar The AsmTools library.

Using AsmTools

AsmTools have the following synopsis:

java -jar ${ASMTOOLS_HOME}/asmtools.jar TOOL FILE
[TOOL="jasm" | "jdis" | "jcoder" | "jdec"]
[FILE=FILENAME.jasm (for jasm command) | FILENAME.jcod (for jcod command) | FILENAME.class for jdis, jdec command]

Examples:


% java -jar ${ASMTOOLS_HOME}/asmtools.jar jasm FILENAME.jasm
(produces FILENAME.class)

% java -jar ${ASMTOOLS_HOME}/asmtools.jar jdis FILENAME.class > FILENAME.jasm
(produces FILENAME.jasm)

% java -jar ${ASMTOOLS_HOME}/asmtools.jar jcoder FILENAME.jcod
(produces FILENAME.class)

% java -jar ${ASMTOOLS_HOME}/asmtools.jar jdec FILENAME.class > FILENAME.jcod
(produces FILENAME.jcod)

Assembler Syntax and tool usage is covered in the AsmTools project wiki.


Operating Modes

There are no operating modes.

[Top]

Known Bugs and Issues

Many attributes (in the class file, as specified by the Java VM Specification, Chapter 4) are covered in the JASM syntax, but not all.

[Top]

Contribute

The AsmTools open source project was created in order to develop a community that will improve it, further the development of Java assembly tools, and use Java assemblers to develop test suites. We encourage you to browse, download, contribute, and get involved.

[Top]

Obtaining the Sources

The sources for ASM Tools 8.0 and later is available via the community OpenJDK project. The sources are stored and accessed through a Mercurial repository, which the public may access in a read-only fashion. Committing to changes to the sources is accomplished by first contributing through a proxy developer to establish ones self, which can then lead to rights to contribute directly. More information can be found on the OpenJDK Projects landing page.

The general form for obtaining a copy of the current source tree is:

% git clone https://github.com/openjdk/asmtools
This places a copy of the entire source tree in the asmtools directory. From that directory, you can then view and build the sources, as described in the next section. Note that this copy is of the development version of the sources, you may need to extract a different revision if you want a copy from a specific period of time.

[Top]

Building the Sources

Building the sources requires Ant version 1.8 or later (1.10.13 is current at the time of writing), and the built-in build is compatible with using an IDE. The sources are designed for Java 17 and if you invoke ant with this runtime, your chance of encountering an abnormal conditions due to your runtime or compiler (or javadoc) version.

General requirements:

The general steps to do a build from source from the command line:

  1. Obtain Sources
  2. Make your current directory <topdir>/build/
  3. Invoke ant:
    % ant
  4. Output appears in a directory above (one above <topdir>), such as: ../../asmtools-8.0-build/

A common variation of the build command to force ant to use a particular installation of Java on your machine:

# JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-17.jdk/Contents/Home ANTHOME=/usr/share/ant ant
This example for common *nix shells (zsh, bash, sh), alter it as needed for your command environment. You can test your invocation of ant by running it with the -diagnostics flag, where it will indicate which Java it is using.

The build file itself is build/build.xml, this is the file you can specify in your IDE for building.




Copyright © 2008, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.The majority of the Assember Tools project is released under the GNU General Public License Version 2 (GPLv2)