-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make readField and readMethod + fix readUTFB
- Loading branch information
Vincent Rasquier
committed
Dec 14, 2017
1 parent
d16802a
commit 1216a98
Showing
5 changed files
with
414 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# ASM | ||
|
||
[IN PROGRESS] | ||
|
||
This repository is a Golang port of the famous ASM java library for JVM bytecode reading and manipulation. | ||
http://asm.ow2.org/. You can find the original source code at this link : https://gitlab.ow2.org/asm/asm. | ||
|
||
## Goal | ||
There are multiple goals for this port. The first one is comparing performance between the actual Java implementation and with this port. | ||
Second reason could be to provide different tools for JVM manipulation through Golang, as, for example, a simple conversion of JVM Bytecode to Go. | ||
|
||
## Progress | ||
|
||
| CLASS | PROGRESS % | | ||
| ClassReader | 60% | | ||
| ClassVisitor | 100% | | ||
| MethodVisitor | 100% | | ||
| FieldVisitor | 100% | | ||
| ModuleVisitor | 100% | | ||
| AnnotationVisitor | 100% | | ||
| Attribute | ? | | ||
| Context | ? | | ||
| Label | ? | | ||
| TypeReference | ? | | ||
| Opcodes | ? | | ||
| Symbol | ? | | ||
| TypePath | 0% | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.