6
votes
5answers
117 views
What is the use of Python’s basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. …
25
votes
13answers
795 views
+100
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable …
3
votes
4answers
44 views
What are some interesting, free, open-source Dynamic Analysis tools for Java?
I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be:
Open-source (so I can learn from them)
Free (both as in …
1
vote
1answer
60 views
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 some kind of catalog, maybe a summary, of various simple peephole …
0
votes
4answers
66 views
Resolve class name from bytecode
Is it possible to dig up a classes name from bytecode which is formed from the class' source code?
The situation is this: I get a classes bytecode remotely from somewhere, it doe …
2
votes
2answers
126 views
CPython is bytecode interpreter?
I don't really get the concept of "bytecode interpreter" in the context of CPython. Can someone shed some light over the whole picture?
Does it mean that CPython will compile and …
1
vote
3answers
130 views
Did OCaml get any Serious Promotion last few Years?
Did you hear something about any corporate investments or enlargement of OCaml community? (not F# please)
1
vote
6answers
182 views
Understanding Java Byte Code
Often I am stuck with a java class file with no source and I am trying to understand the problem I have at hand.
Note a decompiler is useful but not sufficient in all situation... …
1
vote
1answer
68 views
unboxing using the ASM Java library
I'm using the ASM Java library to replace some reflection. I generate the body of this method:
void set(Object object, int fieldIndex, Object value);
With this generated method, …
3
votes
8answers
143 views
Disabling compile-time dependency checking when compiling Java classes
Consider the following two Java classes:
a.) class Test { void foo(Object foobar) { } }
b.) class Test { void foo(pkg.not.in.classpath.FooBar foobar) { } }
Furthermore, assume …
2
votes
4answers
244 views
Lua’s bytecode specification
Can anyone tell me where to find Lua's bytecode specification? I've been searching for 15 minutes, and I can't find anything.
29
votes
22answers
4k views
C++ performance vs. Java/C#
My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run atop a virtual machine which abstracts …
3
votes
1answer
110 views
Scala in java code : $colon
Hi,
I read some java source code which including Scala source code.
I found Nil.$colon$colon(Object arg)
What does keywords $colon mean?
And what does this line mean?
1
vote
3answers
72 views
Switching between bytecode versions for a Java class file
Given a Java class file (ClassName.class) with bytecode version X is there a general way to convert this class file from being represented in bytecode version X to being represente …
1
vote
6answers
212 views
Fail-safe way of round-tripping JVM byte-code to text-representation and back
I'm looking for a fail-safe way to round-trip between a JVM class file and a text representation and back again.
One strict requirement is that the resulting round-tripped JVM cla …
