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

1
vote
1answer
51 views

My own Java compiler & bytecode: Problems invoking functions

I'm writing a compiler in Java for Java with the JVM as target machine and i'm trying to get function calls working. But when i try to run the class file created by my compiler, i'm getting this ...
1
vote
1answer
23 views

How is the Java bytecode executed in a Java FX self-contained application package?

It is possible to deploy self-contained Java applications. But, how is the bytecode executed? Is it interpreted or is it compiled JIT? I could not find proper documentation about this.
14
votes
3answers
120 views

java bytecode - representation of types smaller than int

In one of the projects at my university I am working directly with Java bytecode. After browsing the list of instructions available for the JVM ...
0
votes
1answer
29 views

ASM 4.1 visitLdcInsn Illegal type in constant pool

I am using ASM 4.1. I understand that the method visitLdcInsn requires version 49 or higher, however I am wondering how I could get visitLdcInsn to work with version 49 and lower. I know a solution is ...
1
vote
1answer
65 views

Bytecode in asm operators && or ||

I have a question. In my bytecode i calculate statements like if((1==1) && (2==2)){} with this code if (node.getOperator().equals(Operator.LOGICAL_AND)) { mn.instructions.add(new ...
1
vote
1answer
43 views

String equality in asm bytecode

Iam trying to do this in bytecode if("asd"=="asd"){}. But i have the following error Any ideas? Thanks in advanced.
0
votes
1answer
33 views

ASM 4.0, renaming Methods in ClassNode

Alright, so. I'm trying to rename methods in a ClassNode in ASM 4.0. This is my renaming class: public class RenameVisitor extends ClassVisitor { private String newName,oldName; public ...
1
vote
2answers
67 views

Binary expression in asm compiler

Iam trying to execute an if statement with logical and symbol '&&'. Here is what iam trying to do: Μy stack in asm byteocode has the values 0 and 1 and i want to get a result with the 'logical ...
0
votes
3answers
58 views

What if a native class/method only defined in a newer Java version?

As far as i know, during the compile time of Java, only the class/method signatures are recorded. The actual implementations are binded until the running time, in the JVM. Let's imagine there is a ...
2
votes
2answers
44 views

Compiler asm bytecode expression

How can I calculate the expression 2==2 in asm bytecode without using the new JumpInsNode(Opcodes.IF_ICMPEQ)? Also I want to store the result in a variable. e.x print (2==2) the result must be 1 ...
6
votes
3answers
79 views

Creating an unconstructed object instance

In Java, is there any way to separate the steps that happen during object creation: memory allocation object construction In other words, are there high level constructs (maybe using refection?) ...
0
votes
3answers
42 views

Compiler asm bytecode

I want to see the bytecode of this code if (3 < 5) { } using javap -c . But for some reason it doesn't show the steps. e.x int a; works fine. Any ideas how to see this in bytecode?
0
votes
1answer
43 views

Create an array in asm java compiler

Iam trying to create an array of integers using bytecode instructions http://en.wikipedia.org/wiki/Java_bytecode_instruction_listings Any ideas how to do it? Thanks in advanced
0
votes
0answers
22 views

Compile custom bytecode to native

I've implemented a virtual machine & bytecode compiler for a toy language I designed. Currently I'm making statistics about which parts of the code are used the most. So is there a way I can ...
0
votes
2answers
74 views

Java asm compiler

im building a complier in java using asm library.So far i can print to the output only integers I want to do the same thing with strings. Any ideas? Thanks in advanced
1
vote
1answer
67 views

Bytecode compilation errors

I am using the program JBE (Java Bytecode Editor) http://set.ee/jbe I have the following bytecode but it keeps outputting errors due to Error: Argument type error at line 53, instruction "ldc" Error: ...
4
votes
1answer
56 views

java bytecode - no ipush instruction

As part of one of my school project I need to dig into java bytecode. I started to write simple programs and use javap utility to view generated bytecode and I have one question concerning *ipush ...
0
votes
1answer
46 views

HHVM possible to recover source code from authoritative repo?

Is it possible to recover sourcecode from an HHVM authoritative repo file? I'd like to use HHVM for basic tamper-proofing when doing local installs of my commercial SaaS product. I imagine (haven't ...
0
votes
0answers
22 views

cusum tomcat webappclassloader to decrypt classes

I want to use a custom tomcat classloader to load and decrypt some encrypted classes in a "Java web application". To do so, I extended the WebappClassLoader class in tomcat and override the ...
0
votes
1answer
57 views

Where are constructors stored in class file format

I have been looking into the java class file format. I have specifically been looking into creating classes from byte-code. I have been able to find most of the info that i need from the oracle ...
0
votes
1answer
39 views

Writing fields to bytecode not working(solved)

I am working on writing a class in bytecode but i am confused on how to add fields to the class. I have tried adding a field like this dout.writeShort(1); dout.writeShort(Modifier.PUBLIC); ...
0
votes
1answer
52 views

Difficulty understanding nested collections

I am working on dynamically generating classes in java using byte-code and then loading the class. I found this code on a tutorial how to do it. private int stringConstant(String s) { ...
10
votes
1answer
160 views

What is the purpose of bytecode in Java?

Given that I can compile 300 classes in seconds, an implementation of Java could just compile and cache any new source it sees (e.g python does this, and lots of language implementations do the same ...
2
votes
4answers
95 views

Is it possible to view a Java class files bytecode

I am working on a bytecode manipulation/generation in Java and I was just wondering if there is an easy way I could check the bytecode. I do not want to decompile the file, I would like to actually ...
0
votes
0answers
15 views

How to change rules for byteman at runtime

I have running remoted test server where I want to make some modifications with existing code using byteman. Is it possible to attach byteman at runtime with custom rules files (While starting we ...
2
votes
1answer
36 views

Search bytecode for calls to System.exit

I have a Java batch which is mysteriously calling System.exit. Is there a way to statically analyse all bytecode in the classpath to see where calls to System.exit could come from? I don't have ...
0
votes
2answers
43 views

Does nodejs/V8 store compiled machine code anywhere on disk?

Edit: as @dystroy notes below, node uses machine code directly, not bytecode. I do a lot of Python coding, and there's always bytecode lying around in .pyc files. I was wondering if node stores ...
-1
votes
0answers
33 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 ...
2
votes
1answer
45 views

What strategies are used for annotation scanning in practice?

I am aware of the below mentioned ways in which annotations could be detected and used: Annotation processors (compile time code generation) Runtime annotation scanning (e.g. ASM and other byte-code ...
0
votes
0answers
35 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 ...
1
vote
3answers
42 views

How to easily create Java bytecode dependent regression tests?

I have identified a bug in my application (which processes bytecode using soot) that only arises on specific bytecode instructions. I want to create a test for that specific case. However, I'm not ...
0
votes
1answer
70 views

Java annotation processing with ASM

I want to do some annotation processing (serialization): What I want: I dont want to subclass the classes in question I want to insert a method into an existing class I want to use ASM to add these ...
0
votes
2answers
44 views

Java equivalent of Mono.Cecil or .NET's reflection with access to MSIL code

I thought I'd automate error detection in future code, provided some of our code needs to explicitly release connection objects because of what we think is a bug in the Java HTTP API we use (not ...
4
votes
1answer
99 views

Incomplete java byte code

Hi I have follwoing java code, public class A{ private String B="test_string"; private int AA; public int C; private int method1() { int a; a=0; return a; } private int method1(int c, ...
0
votes
2answers
15 views

How to handle struct variables in byte code and stack-based VMs?

I am writing a compiler that compiles a language that has similar concepts to C to byte code which should then be interpreted by a corresponding stack-based VM. I am stuck at the moment when it comes ...
5
votes
1answer
137 views

Where does Scala store information that cannot be represented in Java?

There are some constructs that don't have equivalents in java. Examples would be named parameters instance private members Where/How does Scala store the information necessary for this stuff (some ...
6
votes
1answer
265 views

Why does Scala compiler for .NET ignore the meaning of val?

I am playing around with Scala. And I found 3 interesting things(the title is the third one ). 1 a local variable declared as val is not interpreted as final. class HowAreVarAndValImplementedInScala ...
0
votes
2answers
78 views

Passing dynamic parameters to an annotation

I wonder if there is a possiblity to pass dynamically values to an annotation attribute. I know that annotation are not designed to be modified but I'm using Hibernate Filters and condition to be put ...
13
votes
2answers
91 views

JVM bytecode limitations on class-class interactions

I was looking through the JVM bytecode instructions and was surprised to see that all the interactions between classes (e.g. casting, new, etc.) rely upon constant pool lookups for identity of the ...
3
votes
1answer
66 views

Why is there a call to “String.valueOf(Object)” in my string concatenation bytecode?

I have the following two methods in a small microbenchmark app (running JDK 1.6): public static String testStringBuilder3(String str1, String str2, String str3, String str4, String str5) { return ...
0
votes
2answers
53 views

Byte Code File for Python [closed]

I am unable to see Compiled Python File (Byte Code) on my hard drive. I can only see script file with py extension but no Compiled file with pyc extension I have Windows 7 OS installed.
0
votes
0answers
45 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, ...
1
vote
1answer
48 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 ...
0
votes
0answers
35 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
1answer
40 views

Detect if the method in an invoke instruction is native, or not, in ASM/java bytecode

Is there a way to know if the method in an invoke instruction in bytecode is a native method or not? I am looking for an ASM specific solution. The visitMethodInsn(int opcode, ...
-2
votes
2answers
93 views

Is list join really faster than string concatenation in python?

I find that string concatenation seems to have less python bytecode than list join. This is an example. test.py: a = ''.join(['a', 'b', 'c']) b = 'a' + 'b' + 'c' Then I execute python -m dis ...
0
votes
1answer
142 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
115 views

How to create a code object in python?

I'd like to create a new code object with the function types.CodeType() . There is almost no documentation about this and the existing one says "not for faint of heart" Tell me what i need and give me ...
6
votes
1answer
86 views

JUMP_FORWARD or JUMP_ABSOLUTE with IF statement ? Python 2.5

I have been using 'dis' module in order to re-write some compiled script (.pyc). I understand the difference between JUMP_FORWARD and JUMP_ABSOLUTE. To my knowledge an IF statement will be closed by a ...
2
votes
2answers
83 views

Invisible java bytecode lines

I am wondering why the line numbers of Java Bytecode are not consecutive. What happens for example in the (not listed) lines 2 and 3 of the following getter? public java.lang.String getX(); Code: ...

1 2 3 4 5 15