java-bytecode-asm
Java ASM help need
I write a simple program using Java ASM to generate the byte code which is generated by compiling the following class.[详细]
2023-02-07 22:38 分类:问答instrumenting an "import" using java asm library
I\'m using the asm library for java instrumentation and I want t开发者_如何学JAVAo instrument an \"import\"[详细]
2023-01-30 08:45 分类:问答ASM: Stateful Transformation
I want to write a MethodVisitor that transforms LDC instructions that are for multiplication. Example bytecode:[详细]
2023-01-30 08:29 分类:问答measuring a java program runtime using asm Instrumantation
I was wondering if there is a way to measure a given bytecode (class file , that has main function in the original code) runtime using java bytecode instrumentation of asm.[详细]
2023-01-29 17:54 分类:问答java local variables - how do i get a variable name or type using its index
I\'m using the asm instrumentation library. Using visitVarInsn I 开发者_StackOverflow社区get the index of a local variable.[详细]
2023-01-28 13:07 分类:问答java.lang.VerifyError: (class: Main, method: main signature: ([Ljava/lang/String;)V) Stack size too large
I\'ve been looking into the ASM library.First I wrote a program to build a hello world class and then I thought I\'d try something a little more involved,build a class that creates a PythonInterpreter[详细]
2023-01-28 05:08 分类:问答Visiting arrays access using ASM
I\'d like to know if it\'s possible to trace access to an array using ASM API. My goal is to determine which index of an array is accessed, and when (this part is easy - usin开发者_JS百科g System.Nan[详细]
2023-01-28 03:14 分类:问答Static Initializer in asm
I want to initialize a static field which I added to a class using asm. If I could access the static initializer then I could to the initializat开发者_如何学编程ion.[详细]
2023-01-24 18:27 分类:问答Java: Getting Bytecode of Class at Runtime from within the Same JVM
Related to:Is there a way to obtain the bytecode for a class at runtime? I\'m adding durability to Clojure, and I\'m finally at the point where I\'m ready to add functions.In Clojure, functions are b[详细]
2023-01-24 16:36 分类:问答Error using ASMifierClassVisitor
I wanted to use ASMifierClassVisitor tool to get the asm code of creating a class but when I use it I get the error[详细]
2023-01-23 14:54 分类:问答