"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.
8
votes
4answers
448 views
Can Java Classloader's rewrite the bytecode of (only their copy of) System classes?
So I have a classloader (MyClassLoader) that maintains a set of "special" classes in memory. These special classes are dynamically compiled and stored in a byte array inside MyClassLoader. When the ...
0
votes
2answers
402 views
pycompile for python3.2
I am running mint 13 and have python 3.2 installed using the apt-get package management system. I also have python 2.7 installed along with 3.2 The pycompile seems to be the one that packages python ...
1
vote
1answer
152 views
Visual Basic 6 Bytecode Specification
Where can I find a list of official and unofficial Visual Basic 6 specifications that can allow me to, say, fully interpret the contents of a VB6 EXE file and analyze them, or interpret them on my ...
6
votes
3answers
288 views
Generating JVM bytecode for a unary not expression
Let's say you're writing a Java (or subset-of-Java) compiler and you want to generate bytecode for a unary not expression, !E. You're past type checking so you know E has type boolean, i.e. it will ...
5
votes
1answer
116 views
Can Lua bytecode for 'if' statments jump backwards?
I'm writing some Lua code that can read the bytecode produces by the string.dump() function. I'm assuming (because it allows for a few optimizations and less coding) that all OP_JMP instructions ...
0
votes
2answers
165 views
Taking a user input in LLVM assembly code
Just a quick question about taking a user input in LLVM assembly code. Would it be in the arguments of the main function? Currently my main function looks like this:
define i32 @main() nounwind {
...
1
vote
1answer
79 views
How to handle scope when generating bytecode with a handwritten compiler
I have written a small compiler for a simple stack machine. It can assemble and handle scope/functions through a number of virtual machine hacks only. That is I have it define scope and in scope ...
7
votes
2answers
337 views
.NET IL ByteCode Optimizer [closed]
I'm trying to write optimized code in C# .NET and Mono that will be used for games. (Yes I have valid reasons for using C# and not C++).
I notice C# does not seem to optimize its operators ...
2
votes
5answers
280 views
Is C# code compiled to native binaries?
I know that Java code is compiled into byte-code, that is executed by the JVM.
What is the case with C# ? I have noticed that applications written in C# have the .exe extension what would suggest ...
4
votes
2answers
444 views
Java ArrayIndexOutOfBoundsException: null and no stack trace
We have the problem that in our logfiles there is the following error:
[2012-09-24 00:09:32.590 +0000UTC] ERROR host server1 [] [] somepackage.someclass [] [Unknown] [V3rAqPaDvvAAAAExEXhdWGyh] ...
3
votes
1answer
230 views
Is it possible to get python bytecode without using co_code?
Say I am in the python interpreter and define a function as follows:
def h(a):
return a
If I want to look at the bytecode (not a disassembly using dis), I can typically use h.func_code.co_code. ...
1
vote
0answers
75 views
how to obtain a convenient representation of the structure of a Java method in a compiled class? [closed]
I need to gather certain information from a method in a (compiled) Java class.
Specifically, I would like to query all the existing method calls and who is the receiver of each method invocation, ...
0
votes
1answer
25 views
Instrumenting bytecode at method level
if(iHandles[f].getInstruction() instanceof IFEQ ) {
getFieldInstruction = iHandles[f+1].getInstruction();
System.out.println("found IF");
InstructionList iprint = ...
2
votes
1answer
199 views
Why are there local variables in stack-based IL bytecode
In a stack-based intermediate language, such as CIL or Java bytecode, why are there local variables? One could just use only the stack. May not be so easy for hand-crafted IL, but a compiler can ...
2
votes
2answers
147 views
Java Bytecode DUP
I am wondering why the Exception in the following bytecode (used to throw an Exception) is duplicated.
NEW java/lang/IllegalArgumentException
DUP
INVOKESPECIAL java/lang/IllegalArgumentException ...
0
votes
1answer
60 views
Given the execution of some method in java, is there a way to determine the number of byte-code operations used for that method?
Now I realize JIT could throw this for a loop. What I'm looking for is a way to count the number of instructions for some set of code being executed.
What I have in mind for this is automated ...
0
votes
1answer
111 views
No default bytecode compilation of Python code on Windows?
I just ran into this SO question and I'm baffled. I'd say I have a fair experience with Python, but only on *nux(-like) OSes and I thought bytecode compilation was a given.
I'm obviously missing ...
5
votes
1answer
98 views
how is java annotation represented in java bytecode
I tried to decompile a .class file that contains JUnit tests.
I read the byte code, but I did not see any clue of the @Test annotation(it's used in the java source code).
As metadata, how are ...
2
votes
1answer
227 views
Extended-width dalvik bytecodes missing on Jellybean
When ICS came out, there were several new extended-width bytecodes introduced. Most of these were for instructions to support jumbo ids. Here are some of these new instructions, taken from my ...
9
votes
2answers
153 views
How do I create a perl sub by specifying its parse tree?
Given a CODE ref, is it possible to:
Access the parse tree of that CODE ref
Create a new CODE ref by specifying the parse tree of the CODE ref which can contain elements of the parse tree returned ...
0
votes
2answers
92 views
IndexError when appending to a list (no index used) in Python
I'm appending an object to list images (initialized as empty) at every iteration of a for loop. I'm not explicitly accessing the list by index, I'm just appending an object to it, which is why to me ...
0
votes
1answer
81 views
ASM method execution listener
Is it possible to implement an adapter capable to intercept all inner method invocations inside main method? If we have this class...
class Zombie {
private Grave grave = new Grave();
public ...
2
votes
1answer
163 views
Run Java byte code
//bytecode of <init>
0: aload_0
1: invokespecial java.lang.Object.<init> ()V (8)
4: return
//bytecode of <main>
0: getstatic java.lang.System.out ...
0
votes
1answer
44 views
What information contains in gap between method table and method body in java bytecode
Hy, i'm trying to figure out structure of java bytecode. and till the method table it all flows as described in http://en.wikipedia.org/wiki/Java_class_file but after that, there is a huge gap between ...
1
vote
1answer
424 views
Executing Java bytecode in Android
I am trying to execute Java program in Android. Used the link How to execute the dex file in android with command? as reference. My question is, can I run the Java program on the emulator from ...
0
votes
1answer
142 views
obtaining the signature of a Java Type as a String
I need to obtain (as a String) the type signatures of certain Java types.
For example, this is the type signature of certain ParameterizedType:
Lorg/mapackage/MyClass<Ljava/lang/String;>;
I ...
0
votes
2answers
632 views
differences in byte code and machine code executables
What are the differences between the byte code binary executables such as Java class files, Parrot bytecode files or CLR files and machine code executables such as ELF, Mach-O and PE
what are the ...
0
votes
2answers
174 views
How to modify an executable without corrupting it?
Is there a specific null char or a sequence of bytes which would not corrupt the executable if added in FRONT of the file? I tried adding NUL (00 hex) but it corrupts the executable every time. Is ...
3
votes
2answers
225 views
Generating pure machine code with LLVM
Is there a way to generate "pure" machine code from a Module with LLVM?
I mean, I have a Module and want to get only the x86 opcodes without any MachO or Darwin object headers, just the opcodes(and ...
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
1answer
102 views
Java bytecode to class
I get byte code from network. I transform byte array to class
package l2soft.utils;
public final class CustomClassLoader extends ClassLoader {
public static CustomClassLoader _instance;
public ...
1
vote
1answer
160 views
Java ASM4: super(ASM4);?
Well I was reading the PDF tutorial/documentation/book(if you will) on the ASM4 Bytecode library. I was trying out the examples and learn as I went by, by reading, and actually typing out the code, ...
2
votes
1answer
87 views
SpiderMonkey js shell won't bump bytecode?
I downloaded the nightly js-shell for mac from mozilla's ftp site.
If I run:
~/Downloads/jsshell-mac/js -D --execute="var a = '100'"
I assume I would get bytecode output. Instead, I get nothing.
...
6
votes
3answers
102 views
What's the cause of this strange Java behavior?
I wanted to test the '==' operator on Longs and this is what I've found: the following code:
public static void main(final String[] args) {
final Long n = 0L;
final Long m = 0L;
...
2
votes
3answers
81 views
Is it faster to set a reference to a local variable of a nested object in ActionScript or the same?
I have an object that is nested several levels deep which I'm referencing multiple times. Is it faster to create and set a reference to that object or does it matter?
Context
I heard that it is ...
4
votes
4answers
412 views
Why does Java code need to be compiled but JavaScript code does not
How come code written in Java needs to be compiled in byte-code that is interpreted by the JVM, but code written in a language like JavaScript does not need to be compiled and can run directly in a ...
3
votes
1answer
346 views
Adding a field to Java class
Looked at using CGLib, ASM, BCEL (aspect) and Javassist to add a field to a class during runtime....
Just to get my head straight it looks like these bytecode manipulators don't update the actual ...
3
votes
2answers
117 views
Why do StringBuilders pop up when debugging String concatenation?
I am aware that String are immutable, and on when to use a StringBuilder or a StringBuffer. I also read that the bytecode for these two snippets would end up being the same:
//Snippet 1
String ...
10
votes
4answers
310 views
Different behaviour of java bytecode
I am a newbee in Java Bytecode. I was understanding the bytecode through some examples but I got stuck in an example.
These are my java and bytecode file
class SimpleAdd{
public static void ...
0
votes
1answer
112 views
Implementation of MSIL as pure assembly?
Recently, I got interest in assembly language in general. In doing so, I have also grown interested in the concept of bytecode. So I was rather interested when I looked into Microsoft's .NET, and ...
0
votes
2answers
335 views
Dynamically create java bytecode and runnable jar
I am making software that will need to dynamically create java bytecode, and possibly even make it a runnable jar.
My current idea is to create a new .java file and compile it at runtime. I can ...
4
votes
1answer
2k views
Java ASM Bytecode Modification-Changing method bodies
[EDIT] SOLVED[/EDIT]
The java bytecode was never the problem. It is the way I was loading the jar which made it impossible to instrument the code.
Thanks to Ame for helping me tackle it.
The ...
0
votes
1answer
169 views
build function at runtime c++ from number of functions that built at compilation
I am creating scripting language that first parse the code
and then copy functions (To execute the code) to one buffer\memory as the parsed code.
There is a way to copy function's binary code to ...
1
vote
3answers
194 views
How to find an empty local variable in a method for instrumenting using asm library
While instrumenting a class for its different methods In order to make a method do a write operation in a text file. I first stored the string in a local variable 3160 explicitly defined. How to ...
1
vote
1answer
153 views
How to handle the unsigned types (especially u4) of a Java class file in a Java program?
From the Java Virtual Machine specification:
A class file consists of a stream of 8-bit bytes. All 16-bit, 32-bit, and 64-bit quantities are constructed by reading in two, four, and eight ...
2
votes
2answers
209 views
Bad <init> method call in method?
I'm receiving this error:
java.lang.VerifyError: Bad <init> method call in method FooBar.<init>(I)V at offset 2
at java.lang.Class.getDeclaredConstructors0(Native Method)
at ...
0
votes
2answers
108 views
Java find out what imports a .class has
Is there a way to find out what imports a class has?
In this question: Jon Skeet says that you can't do this using reflection, but
If you want to find all the types used within the compiled code,
...
5
votes
3answers
400 views
Java double precision with constant multiplication/division [duplicate]
Possible Duplicate:
Retain precision with Doubles in java
Do you know the difference between these two operations in Java.
final double m1 = 11d / 1e9; // gives 1.1e-8
final double m2 = ...
1
vote
2answers
126 views
What are motivations behind compiling to byte-code?
I'm working on my own toy programming language. For now I'm interpreting the source language from AST and I'm wondering what advantages compiling to a byte-code and then interpreting it could provide ...
0
votes
1answer
134 views
ClassNotFound error during class verification with ASM's Class Verifier (org.objectweb.asm.util.CheckClassAdapter)
So here is a snippet of bytecode which i am trying to verify using ASM's class Verifier:
public <init>(Ljava/io/InputStream;)V
ALOAD 0
ALOAD 1
SIPUSH 2048
NEW ...