Top "Bytecode" questions

"bytecode" is a blanket term for opcodes that are consumed by a virtual machine.

Can compiled bytecode files (.pyc) get generated in different directory?

Possible Duplicate: Way to have compiled python files in a separate folder? When python compiles modules to bytecode, it produces .…

python bytecode
Identify loops in java byte code

I am trying to instrument java byte code. I want to recognize the entry and exit of a java loop, …

java loops bytecode instrumentation
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 …

.net bytecode il disassembly
Is it possible to inject code in an android application?

I would like to inject code in an android application at runtime. I have tried to use dx tool to …

android bytecode dalvik bytecode-manipulation
Compiler optimization: Java bytecode

I'm currently writing a toy compiler targeting Java bytecode in the translation. I would like to know if there is …

java optimization compiler-construction bytecode
Can I modify the byte code of a Java method in the runtime?

I am writing a plugin of another large java program . I want to modify some byte code of some java …

java proxy hook bytecode javassist
What are alternatives to the Java VM?

As Oracle sues Google over the Dalvik VM it becomes clear, that you cannot implement a Java VM without license …

jvm bytecode portability vm-implementation
is it possible to disable javac's inlining of static final variables?

The Java static compiler (javac) inlines some static final variables and brings the values directly to the constant pool. Consider …

java dependencies bytecode javac
Pretty printing a method in ASM Bytecode

I am trying (with no success) to print only the contents of a given method. The following code almost does …

java bytecode java-bytecode-asm
How can I strip Python logging calls without commenting them out?

Today I was thinking about a Python project I wrote about a year back where I used logging pretty extensively. …

python optimization logging bytecode