"bytecode" is a blanket term for opcodes that are consumed by a virtual machine. For example, the JVM runs bytecode stored in .class files and the CPython interpreter runs bytecode stored in .pyc files.

learn more… | top users | synonyms (1)

0
votes
2answers
131 views

Catching an error from byte-compile-file in batch mode

I'm trying to write a makefile snippet to compile .el files to .elc files. I have the following snippet: .el.elc: $(EMACS) -q -Q --batch \ --eval "(progn ...
0
votes
0answers
81 views

How is the INNERCLASS field in java classes used?

I looked at some java bytecode using ASM, and was very surprised when I saw these lines public class C1 { // compiled from: C1.java // access flags 0x9 public static INNERCLASS C2$C3 C2 C3 ...
2
votes
2answers
119 views

Are there any libraries for extracting class, method, member and field dependency names from a .class file (bytecode)?

As the title says, are there any libraries for extracting class, method, member and field dependency names from a .class file (bytecode)? For example, if I a compiled Scala .class file uses something ...
1
vote
1answer
128 views

How many bytes of bytecode has a particular method in Java?

I recently read on Jon Masamitsu's Weblog that huge methods (8000 bytes of bytecode) are not JIT compiled with HotSpot. So my question is: how do I find out (as a programmer) how many bytes of ...
0
votes
1answer
162 views

ASM find offset with code

I would like to find the offsets of different methods in test cases I work with. I can find where methods start and end, I look for opcodes RETURN and ARETURN (Im doing so in a class that extends a ...
2
votes
1answer
76 views

Odd pattern in Java bytecode

I've been looking at some Java bytecode, and I keep finding an odd pattern in it that I can't seem to translate into any reasonable Java construct: if ( <cond1> ) goto Label; ...
1
vote
1answer
137 views

Getting name and type of local variables from a Java program

This is the code which I am trying out: JavaCompiler compilerA = ToolProvider.getSystemJavaCompiler(); int resultA = compilerA.run(null,null,null,"/Users/a/Documents/Java/a.java"); ...
1
vote
5answers
575 views

How can I search .class file in jar file on the fly?

I have a URL list of jar files, also I have whole path classname like com.mycompany.myproject.Test, how can I search in these jar files and get the .class file in it? I use it for decompiling. ...
4
votes
2answers
1k views

Bad local variable type in method

I'm using ASM 4 to generate some classes on the fly. Everything went quite well until I got to generating code to do exception handling. The generated bytecode is at the bottom. Here is the error I'm ...
4
votes
2answers
167 views

How to add JSR-045 SMAP information to Java stacktraces at runtime?

When working with JSP or with other languages that are converted to Java source code (or to stubs), there is often a SMAP file generated which can be later embedded to the Class file for debuggers to ...
3
votes
1answer
412 views

Native code in C#?

I was watching the Microsoft build conference from October last year and I noticed they announced that for building the new Metro style apps, developers can write native code in C#. How is this ...
2
votes
1answer
67 views

Using ASM to detect possible synchronization deadlock

consider the following code snippet synchronized (A.class) { foo(); synchronized (B.class) { bar(); } } And another code where A and B are swapped. This is might cause deadlock, and I'm ...
2
votes
1answer
396 views

Given a python .pyc file, is there a tool that let me view the bytecode?

A Python module is automatically compiled into a .pyc file by CPython interpreter. The .pyc file, which contains the bytecode, is in binary format (marshaled code?). Is there a GUI (or command line) ...
2
votes
1answer
133 views

code objects in python - passing parameters [duplicate]

Possible Duplicate: Python: How to pass arguments to the __code__ of a function? I have a code object representing a function. When I call exec on the code object, how do I specify a value ...
1
vote
1answer
128 views

How to add static final field with initializer using ASM?

I want to add static final field into .class file using ASM, and the source file is public class Example { public Example(int code) { this.code = code; } public int getCode() { ...
0
votes
1answer
72 views

How can I get the generic information of class using BCEL?

I would like to get the generic information (Counter class) of my CounterPersistence class using BCEL 6.0-SNAPSHOT. The signature is like this: public interface CounterPersistence extends ...
1
vote
6answers
403 views

java constant against bytecode reverse engineering

I would like to know if I can encrypt a string inside a compiled java file. For example, i need to decode a zip file with symmetric key and I need to store that key in a java class in a private ...
0
votes
2answers
153 views

Accessing symbol table in .class files

For an arbitrary code base in Java, I want to create a table (conceptually) of USES and USED-BY relations between symbols and types. A symbol table has the information I need. However, writing a front ...
0
votes
1answer
171 views

How to determine the Method invoked by an InvokeInstruction (BCEL)?

I am trying to determine the MethodGen of the callee for a given InvokeInstruction in the BCEL library. The problem is that I don't know how to use the InvokeInstruction to get to the MethodGen that ...
0
votes
2answers
312 views

Get all the Class dependencies of a class (including generics)?

I want to extract all Class dependencies from a given Class (in order to create an Arquillian test with my Class and all its dependencies). I'm neerly managing to do so (using CtClass.getRefClasses() ...
1
vote
1answer
152 views

Do you know of any Java bytecode interpreters?

i am looking for a Java interpreter not a JVM (no JIT) till now i have checked llvm vmkit gij (from gcj) jikesrvm (JVM) Kaffe (JVM) However, as i only need an interpreter i would prefer to find ...
3
votes
2answers
179 views

Instantiate class in Jasmin

I'm trying to instantiate a class in Jasmin like this: new Ljava/lang/Object; dup invokespecial java/lang/Object/<init>()V This does compile but the class vierifier complains: "VerifyError: ...
5
votes
3answers
2k views

Is there a llvm java front end that converts java source to llvm's intermediate form?

From what I've read, there is a llvm program that converts java bytecode to llvm's intermediate form called class2llvm. My question is, how do I access this. What front end do I have to install in ...
9
votes
2answers
380 views

How to prevent python from using orphaned .pyc files? (ones with no matching .py files)

Once in a while I run into a very difficult-to-debug problem: there's a leftover .pyc file somewhere in my $PYTHONPATH, and the matching .py file has been moved to somewhere else that's later in ...
1
vote
2answers
226 views

How does Python run module code when there's no matching .pyc file?

If I import a module1.py from the python command line in windows 7 I see the corresponding module1.pyc file appear in the Python32/pycache/ folder. My understanding was that it is this bytecode which ...
1
vote
1answer
116 views

dynamic generate byte with asm

I use the asm to implements a proxy patterns. for example: the original class is test.service.Service public class ProxyFactory{ public static Object generateProxy(Class<?> argument){ ...
4
votes
2answers
365 views

How do I compile JVM assembly code into bytecode?

If I ran javap -c ASM.class > ASM.java to get the assembly code, how would I recompile this back into JVM bytecode?
0
votes
1answer
300 views

Read Bytecode classic asp from URL

http://www.jiemai.com/imagesupload/1582/middle/0858-1-001.jpg I Want to save the above image URL as a file with the name '0858-1-001.jpg' in classic ASP. I really appreciate if anyone help me. I was ...
1
vote
1answer
143 views

ASM transformation to find concrete class type

I'm working on a project that will trace method calls from a class within a package to any other class. It's important that I can identify concrete types, and I'd prefer to have a minimum tracing ...
5
votes
4answers
203 views

Is it possible to add custom metadata to .class files?

We have used liquibase at our company for a while, and we've had a continuous integration environment set up for the database migrations that would break a job when a patch had an error. An ...
2
votes
1answer
125 views

Why this modified assembly does not run? (JIT Compiler encountered an internal limitation.)

I've modified the bytecode of an assembly to get rid off of an error and now when I try to use it I get a InvalidProgramException. All I've done is replace this code with NOPS: catch (Exception ...
0
votes
1answer
194 views

C code for interpreting Java HelloWorld byte code

What is a simple C/C++ code which can interpret a java class file (byte code) which only contains System.out.print() statements.(I had a look at simple opensource JVMs but they are bit complex because ...
2
votes
3answers
442 views

Extract source code lines from given bytecode lines

I am experimenting with a tool that does static analysis. The tool works on bytecode rather than source code. (However, I have the source code as well). The tool outputs some line numbers from the ...
-4
votes
3answers
322 views

Byte code in java [closed]

How the byte code is generated at the time of compilation. What's the Use of interpreter?
2
votes
5answers
339 views

Cross Platform/Architecture Assembly Language

I know that assembly language is typically not cross-platform. And even with things like NASM you would still need different code for different architectures and platforms which have different ...
1
vote
1answer
51 views

Indicating when the JVM Verifier Verifies classes

When running a java program using the java command you can specify the verbose option with -verbose which allows you to inspect when classes are loaded. For example: java -verbose Test | grep "file:" ...
5
votes
2answers
200 views

Java Byte Code ordering of this and parameters on the stack

In java bytecode why is the receiver is pushed onto the stack first followed by all the parameters? I seem to remember it being something to do with efficiency. This is true for both method calls and ...
2
votes
2answers
141 views

Bytecode sequence decompilation

I have byte[] array which I know is a bytecode sequence for a method inside a class file. Is there some way to perform selective decompilation of this byte[] array? I do not have access to the ...
5
votes
1answer
202 views

Python 2 and 3, are the bytecode (pyo & pyc) backward compatible?

Python 2 and 3, are the bytecode (pyo & pyc) backward compatible? can i execute python 2 pyo & pyc file with python 3?
0
votes
1answer
345 views

What are the difference between byte code and bit code [duplicate]

Possible Duplicate: What are the differences between LLVM and java bytecode? For example, in LLVM, it said.. What is commonly known as the LLVM bitcode file format (also, sometimes ...
1
vote
1answer
139 views

About *-bearing registers in Dalvik bytecode

I am a little new to the format of Dalvik bytecode, I am wonering what do these *-bearing register mean, e.g. object-bearing, exception-bearing, etc. At the same time, the generated bytecode is using ...
2
votes
3answers
223 views

How many objects are created

I was having a discussion about usage of Strings and StringBuffers in Java. How many objects are created in each of these two examples? Ex 1: String s = "a"; s = s + "b"; s = s + "c"; Ex ...
0
votes
0answers
94 views

Linq like expressions library for java with the ability to compile expression trees to executable JVM bytecode

The System.Linq.Expressions namespace contains a lot of Expression classes for all the constructs that are used in .Net languages. You can build expression trees using objects of these classes which ...
10
votes
2answers
512 views

What is the NOP in JVM bytecode used for?

Are there any practical uses of the Java Virtual Machine's NOP opcode in today's JVM? If so, what are some scenarios in which NOPs would be generated in bytecode? I would even be interested to see an ...
0
votes
2answers
99 views

Interpreter semantics: clarifying the steps an interpreter makes

This question is about definitions, semantics. I understand the general concept of interpretation, translating source to machine code in real-time, or into an intermediate cache which is later ...
1
vote
2answers
817 views

Is there any IL editor to change the bytecode of an assembly?

I've detected some defects on legacy third party assemblies that we're using on our code decompilind them. I would like to fix them but as I don't have the source code I need to directly modify the ...
7
votes
4answers
158 views

Will we still have the performance gain of Java 6 if the bytecode was compiled in 1.4

I'm assuming there is vast performance difference between Java 1.4 and Java 6 after skimming this document. My question, will Java 6 runtime still got its magic when the bytecode it has to run was ...
0
votes
1answer
227 views

Compiling python for ubuntu linux, cx_python

I need to be able to distribute my python script, preferably in linux byte code. It has several dependencies that are located in directories as such: extensions python >> run.py python ...
2
votes
2answers
153 views

Is there any advantage of building bytecode than regular actionscript?

Im very curious , is there any advantage of building SWF using bytecode than regular actionscript ? As i read there are some ways to speed up code a little , but are there some things that as3code ...
6
votes
3answers
598 views

Difference between JVM'a LookupSwitch and TableSwitch?

I have some difficulty to understand LookUpSwitch and TableSwitch in Java bytecode. If I understand well, both LookUpSwitch and TableSwitch correspond to the "switch" statement of Java source? Why ...

1 3 4 5 6 7 14