Tagged Questions

Jasmin is an assembler for the Java Virtual Machine. It takes ASCII descriptions of Java classes, written in a simple assembler-like syntax using the Java Virtual Machine instruction set. It converts them into binary Java class files, suitable for loading by a Java runtime system.

learn more… | top users | synonyms

5
votes
3answers
117 views

Dealing with Try/Catch Exceptions in Java bytecode? (“stack height inconsistent”)

I am trying to do some error handling in java bytecode. I first tried to implement some catch-like subroutines, where I would check for the error condition, and jump to the appropriate subroutine, a ...
4
votes
1answer
331 views

JVM instruction ALOAD_0 in the 'main' method points to 'args' instead of 'this'?

I am trying to implement a subset of Java for an academic study. Well, I'm in the last stages (code generation) and I wrote a rather simple program to see how method arguments are handled: class Main ...
2
votes
1answer
57 views

Jasmin Assembler: 'l2d' Instruction Giving “java.lang.VerifyError: … Attempt to split long or double on the stack”

I'm writing a compiler to compile a subset of Java to Java bytecode using the Jasmin assembler I'm having trouble with the 'l2d' instruction (and related ones - but I think they will all work once I ...
2
votes
1answer
98 views

How to Create a Data Pool in Jasmin?

Does Jasmin have the ability to specify a constant pool? I need to be able to create a descriptor area of thousands of bytes. The area will contain arbitrary byte data including nulls. Here's an ...
2
votes
0answers
119 views

jasmin IDE plugin or editor

Greetings, I have a .class file I need to edit and jasmin would be a viable way to do it, though I fond jasclipse plugin, but that's apparently too old and I cannot install it into newer eclipse IDE. ...
1
vote
1answer
60 views

Java Bytecode Subroutines - Cannot load return address

I have been trying to write some Java bytecode and assemble it using Jasmin. I am trying to get my head around subroutines, and am not sure why I obtain the following error message when running my ...
1
vote
1answer
53 views

Jasmin Assembler: Documentation of Method Invocation

I'm writing a compiler to compile a subset of Java to Java bytecode using the Jasmin assembler. I'm wandering if there is any documentation explaining precisely the way to pass in parameters on ...
1
vote
2answers
181 views

Jasmin Assembler VerifyError : Expecting to find object/array on stack

i get this error after "java testphase": C:\jasmin-2.4>java testphase Exception in thread "main" java.lang.VerifyError: (class: testphase, method: main signature: ([Ljava/lang/String;)V) ...
1
vote
0answers
105 views

Soot version of Jasmin failing to assemble Jasmin assembly files

I have both the version of Jasmin 2.4 from the Jasmin SourceForge and the version of Jasmin 2.4 from the Soot project (at sable.mcgill.ca, labeled "jasminclasses"), and the Soot version (which I need) ...
0
votes
2answers
121 views

Is it possible to integrate the JVM's assembly language into standard high level Java code?

I am trying to merge the Java assembly code (using Jasmin (an assembler interface in java)) with standard Java code.Like this public class SomeClass{ public void testPrinting(){ ...
0
votes
1answer
263 views

Jasmin HelloWorld Example Failing

I'm having a problem executing a newly compiled HelloWorld.j from the jasmin-2.4 distribution. I downloaded jasmin-2.4. I can compile ok using: java -jar jasmin.jar examples\HelloWorld.j the output ...
0
votes
1answer
237 views

Java recursion using jsr instruction

I am using the Jasmin Java assembler to compile a toy language. But when I use the jsr instruction to recurse back into a subroutine, and run the output of Jasmin using java, I get the error ...
0
votes
1answer
960 views

How to avoid “Illegal type in constant pool” using “ldc_w <classname>” in Jasmin?

I'm writing a compiler that generates Jasmin code and want to invoke a method that takes a Class as a parameter. public class CTest { public static void main(String[] args) throws ...
0
votes
3answers
1k views

Jasmin in CLASSPATH

I have download jasmin.jar from http://sourceforge.net/project/showfiles.php?group_id=100746 I have changed my CLASSPATH to the following: echo %CLASSPATH% C:\Program ...