"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)

6
votes
1answer
265 views

Good tools for debugging VerifyError?

I find bytecode VerifyErrors notoriously hard to debug. The JVM gives very little feedback, typically just the current class and sometimes the method. Some examples of errors I typically encounter ...
5
votes
1answer
87 views

Why does the JVM have both `invokespecial` and `invokestatic` opcodes?

Both instructions use static rather than dynamic dispatch. It seems like the only substantial difference is that invokespecial will always have, as its first argument, an object that is an instance of ...
4
votes
1answer
146 views

Incompatible argument to function with ASM bytecode instrumentation

I am having some troubles running a simple main program with Guava libraries. I have instrumented the classes to get the methods parameters using my code from here : Java method parameters values in ...
4
votes
1answer
212 views

Is is possible to instrument with javassist java core classes? Classes loaded by the bootstrap classloader

I want to add an "insertBefore" on a method of a core JDK 5 class. For some reason it´s not working. Here's an example of the code: ClassPool pool = ClassPool.getDefault(); CtClass ctClass = ...
4
votes
1answer
207 views

Getting the arrayref for stack operand in Java bytecode

I work with ASM API for Java bytecode instrumantation, and I'd like to be able to determine which array is accessed (by the array's name) in each access to any array. I have two problems with it: - ...
3
votes
1answer
39 views

IJVM ILOAD instruction does not load proper value

I am writing a simple program to compute the absolute value of a few integers in IJVM for the MIC1 architecture. I am using the emulator located here. Here is the code: BIPUSH 0xC0 DUP ISTORE i1 ...
3
votes
1answer
96 views

Java debugging with byte codes

I would like to know if there is any IDE or Eclipse Plugin that supports mixed mode debugging. As I searched the term mixed mode, found lot of references debugging VM languages alongside with native ...
3
votes
1answer
85 views

Debugging reversed Android application

Let's assumed I have a malware application I got from a device and reversing it using smali or dedexter or dex2jar is ok, but I want to actually debug it and not just perform static analysis. Is it ...
3
votes
1answer
75 views

are STORE_NAME and STORE_GLOBAL equivalent in main scope?

I guess I am a bit confused about the module namespace in Python. I played with Byteplay and that's what I have tried : I built a list of opcodes equivalent to : (byteplay's printcodelist) -> 0 ...
3
votes
1answer
175 views

Programmatic interface to Rhino compiler?

I've found Rhino JS Compiler documentation, which says how to compile JS -> JVM, but the only documented interface I've found is for the command-line tool. Also, it seems to be built for the "script ...
2
votes
1answer
754 views

pydev: undefined variable error when importing compiled modules

I want to switch my python-IDE from idle to pydev (eclipse). I am using a couple of modules which I have as compiled bytecode (*.pyc) only. In idle that was never a problem and it even offers code ...
2
votes
1answer
333 views

Classpath of classes compiled with Javassist

As the title suggests, what is the classpath of classes compiled with Javassist? My scenario is: Class A is compiled with Javassist. Class B is compiled with Java Compiler API and references Class A. ...
2
votes
1answer
300 views

How make Eclipse instrument classes at build time?

Sometimes I have to perform some custom bytecode transformation. I have used mainly asm and javaassit. Inside eclipse usually I run my code with the -javaagent jvm parameter. Outside eclipse I use ...
1
vote
1answer
35 views

Soot Java bytecode framework: How to compile a single class file to Jimple/Shimple

I'm trying to figure out how to use Soot in an existing project (a metacircular interpreter). Specifically, I want to use Soot to convert java bytecode into a convenient 3-address code (either Jimple ...
1
vote
1answer
49 views

Remove LineNumberTable and filter LocalVariableTable?

Some frameworks read method argument names using debug information from the bytecode. But debug information contains much more. In order to minimize class size (just wondering), we might remove all ...
1
vote
1answer
129 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() { ...
1
vote
1answer
134 views

Intercept private field access to do lazy loading

I have a framework that load instances of arbitrary classes on behalf of a client and would like fields (specifically private fields) to initialize/load lazily only when fields are first accessed. ...
1
vote
1answer
184 views

Java ASM Instruction Searching

I've been using BCEL InstructionFinder so I am kind of spoiled. The way I've seen ASM instruction find isn't really suiting my needs. So, as I've seen so far I've only been able to search single ...
1
vote
1answer
136 views

Are there a specification of an API or samples for the DX tool for Android!

I'd like to use DX Tool API for triying to generate ad-hoc a dexfile invoking this library. Are there any sample or any specification of this library? Thanks for all Greetings!
1
vote
1answer
517 views

How to generate bytecode in Ruby 1.9?

How can I generate byetcode from Ruby 1.9?? My intent is to generate bytecode not the source code and ship it along with my application package. I am aware of the JRuby approach but I am facing ...
1
vote
1answer
813 views

localy execute actionscript bytecode

i want to execute a piece of bytecode so that it will run in a specific scope ? for example i want to be able to run this code label.x = 100+label.width and have it react to a label instance that ...
0
votes
1answer
96 views

using flex and bison combo or generating parse tree from java bytecode

I am intending to generate parse trees from java byte codes. A typical byte code is of the following, public class org.scandroid.testing.InvokeCallArgTest extends org.scandroid.testing.SourceSink{ ...
0
votes
1answer
104 views

Trace every instruction in java bytecode using BCEL

I am using BCEL for ByteCode generation, I just want to print out (println) before every line in the static methods of the input class. I tried instrumentation using BCEL but it result in different ...
0
votes
1answer
47 views

Java bytecode libraries

Could anybody explain what is the bytecode libraries? For example, some Hibernate 3.5 book tells me that Hibernate uses javaassit or CGLib bytecode libraries. For what this libraries exists? Thank ...
0
votes
1answer
231 views

ASM Tree API insert into InsnList giving StackOverflowError?

I'm trying to follow the delegation example on page 112 of the ASM user manual (http://download.forge.objectweb.org/asm/asm4-guide.pdf). So far I have something that looks like this: class ...
2
votes
0answers
76 views

How to automatically find similarities in Java bytecode?

Not sure if the title is the most descriptive way of putting it, but it's about as descriptive as I could think of. Anyway, onto the question. I want to know how I can find similarities in bytecode. ...
2
votes
0answers
68 views

Java Virtual Machine Specification (JVMS): Bug in “5.4.5 Method overriding”

I filed the following bug on September 28th, 2009. Sadly, I still did not get any response and the final version of the specification still is incorrect. Is this really a bug? If not, why not? If yes, ...
2
votes
0answers
81 views

Tomcat class load exception after bytecode injection

I inject a invoke statement(cajolingMe.cajoleMe();) to One of the webgoat's class(HammerHead.class). This method is a static method that called from a jar file which crated by fat-jar. I copy that jar ...
1
vote
0answers
37 views

Video game animation format

I want to read some video game animations (The game is Bully by Rockstar, similar to the GTA series. It uses the Gamebryo game engine. And was released throughout 2006/2008). The animations are saved ...
1
vote
0answers
32 views

Agent loading fine but instrumentation not occuring

In order to load and attach my agent to a process the following statement vm.loadAgent("pathToAgent",""); executes properly as no exception is thrown. But the class files responsible for ...
1
vote
0answers
247 views

Compiler optimization: CIL assembly

I'm currently writing some kind of optimizing compiler. I'd like to know if there are any optimizations that can be implemented on CIL (or java bytecode) level? PS i've met ProGuard project ...
0
votes
0answers
25 views

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform?

Is there a Java bytecode debugging tool which seems like OllyDbg on windows platform? I have a bunch of java bytecode instructions at hand and I want to know how to debug them efficiently. I wonder ...
0
votes
0answers
39 views

Python exec statement binary code

I'm loading the contents of a .pyc file and need to execute it in a specific scope using the exec statement. For a string containing normal Python code, I could do exec compile(string, filename, ...
0
votes
0answers
28 views

Getting an error using Krakatau disassembler/assembler

I'm getting this error when trying to run my modified class http://oi43.tinypic.com/sbmw5g.jpg I changed a string from "www." to "wwwh7." so from what I've read on bytecode editing sites, this ...
0
votes
0answers
48 views

Invalid string constant pool indexs in ActionScript ByteCode

Not many people seem to really know about the insides of the AVM (ActionScript Virtual Machine) as represented by the lack of information about it on the internet as well as the utter-crap that Adobe ...
0
votes
0answers
26 views

is there any actionscript bytecode debugger?

is there any known tool for debugging action script bytecode just like debugging x86 binary code with IDA or olly debugger?? I have no source code. and I want to debug the ABC bytecode line by line. ...
0
votes
0answers
143 views

How is Java Byte Code converted to machine code in Jikes RVM?

I was going through the Jikes RVM open source project which is written in Java. Downloaded the zip file of the RVM Source which has all the Java Source Code.I was not perfectly sure of the path for ...
0
votes
0answers
26 views

Does every defined AVM class and method have a corresponding trait in an abcFile

The AVM file spec defines that a class as constituent of method_info and their corresponding method_body (except in cases of native methods) and class_info and their corresponding instance_info ...
0
votes
0answers
110 views

What are limitations of LuaJIT string.dump?

I have quite a big file (200Mb) that is mostly plain data with several short inline functions in structure and I want to pre-process it to bytecode for faster loading later. Original luac from Lua 5.1 ...
0
votes
0answers
98 views

Why bytecode calls Object->getClass() at a direct field access

I decompiled Java (actually Dalvik) bytecode. In the beginning of a method, I access a field of an instance member directly (i.e. not through a getter). It seems tha Java calls Object.getClass() on ...
0
votes
0answers
80 views

There is open-source generates machine code project from byte-code at run-time interpreter?

There is open-source generates machine code project from byte-code at run-time interpreter? (By mean byte-code I mean other byte-code type like IL and etc) I would like to learn a little how machine ...
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 ...
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 ...
0
votes
0answers
59 views

About keeping the instrumented version of bytecode using javaagent

The issue is like this: 1> I have an java agent JA that does some instrumentation to a file F. 2> What I need is that after full instrumentation I can keep the instrumented codes. 3> The reason ...
0
votes
0answers
156 views

How and where can I access the .ec files that EMMA generates?

"Emma uses a feature called bytecode manipulation during its instrumentation phase. If you open up the instrumented class files in a decompiler, you'll notice that it would've introduced several ...
0
votes
0answers
273 views

How do I upload and use .pyc files on Google App Engine?

According to the documentation, the Python 2.7 GAE runtime no longer restricts access to bytecode: The Python 2.7 runtime no longer restricts access to Python bytecode. Libraries that generate or ...
0
votes
0answers
71 views

Wanted: Verify that each method can be resolved at runtime

My scenario is this: I have a large application, consisting of about 100 .jar files. Each of these archives exists in several versions, which might be binary incompatible. Now I want a tool that ...
0
votes
0answers
140 views

Generic algorithms for data serialization for purpose of designing bytecode

I've designed an intermediate language, which is parsed to form a series of structs. Just to communicate what I mean, I will include the top level structure. struct a_file { bool hasMainFunction; ...
-1
votes
0answers
19 views

Extract strings from inside ActionScript bytecode inside SWF file using Java?

I'm trying to extract text from a Flash movie, and I have successfully got Transform running. Unfortuantely the SWF file contains no DefineTag elements, so I figure the text must be inside the ...
-5
votes
0answers
21 views

what the result is from? (ActionScript, ByteCode)

While google search, i found below result. which SWF dump tool result in? Sorry my poor english. =============================================== a bcFile{ minor_version (17): 16 ...

1 2