active questions tagged bytecode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:51:47Z http://stackoverflow.com/feeds/tag/bytecode http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1873916/is-it-possible-to-have-the-system-classloader-load-class-files-specified-at-run 0 Is it possible to have the System ClassLoader load .class files specified at run time? Grundlefleck 2009-12-09T13:31:43Z 2009-12-09T14:16:58Z <p>I am writing a static analysis tool for an assignment, it analyses Java bytecode using the ASM library. One of the parts of ASM that we use requires (or at least, appears to require) that the class be loaded from the ClassLoader.</p> <p>We were hoping the tool would be able to analyse .class files without requiring them on the classpath. We already load the .classes from a specified directory at run time and read them in using an InputStream. This is acceptable for ASM in most cases. There are some classes, such as <code>SimpleVerifier</code>, which attempt to load the classes though.</p> <p>Is it possible, under this scenario, to register the .class files to be loaded so that calls to <code>Class.forName()</code> will load them? Or is there an easy way to extend the ClassLoader to allow this?</p> http://stackoverflow.com/questions/1857065/compiling-for-the-java-virtual-machine 3 Compiling for the Java Virtual Machine namin 2009-12-06T23:49:57Z 2009-12-08T21:10:14Z <p>Are there any good resources, particularly books and tutorials, on learning how to write a compiler targeting the Java Virtual Machine? Can you give some tips on how to get started in producing Java bytecode programmatically?</p> http://stackoverflow.com/questions/1858052/infering-number-of-bytecodes-interpreted-by-java-runtime 0 Infering number of bytecodes interpreted by Java runtime? Xepoch 2009-12-07T05:50:03Z 2009-12-07T05:50:03Z <p>I'm trying to infer the number of bytecodes that the JVM "interprets"; In quotes because surely they are also compiled. Is there any way or JVMTI/JVMPI interface or instrumentation which can provide some sort of inferred metric on this?</p> http://stackoverflow.com/questions/1280100/exec-bytecode-with-arbitrary-locals 2 exec() bytecode with arbitrary locals? ilya n. 2009-08-14T20:41:10Z 2009-12-06T17:25:52Z <p>Suppose I want to execute code, for example</p> <pre><code> value += 5 </code></pre> <p>inside a namespace of my own (so the result is essentially <code>mydict['value'] += 5</code>). There's a function <code>exec()</code>, but I have to pass a string there:</p> <pre><code> exec('value += 5', mydict) </code></pre> <p>and passing statements as strings seems strange (e.g. it's not colorized that way). Can it be done like:</p> <pre><code> def block(): value += 5 ???(block, mydict) </code></pre> <p>? The obvious candidate for last line was <code>exec(block.__code__, mydict)</code>, but no luck: it raises <code>UnboundLocalError</code> about <code>value</code>. I believe it basically executes <code>block()</code>, not <em>the code inside block</em>, so assignments aren't easy – is that correct?</p> <p>Of course, another possible solution would be to disassembly <code>block.__code__</code>...</p> <p>FYI, I got the question because of <a href="http://mail.python.org/pipermail/python-ideas/2009-August/005552.html" rel="nofollow">this thread</a>. Also, this is why some (me undecided) call for new syntax </p> <pre><code> using mydict: value += 5 </code></pre> <p><hr /></p> <p>Note how this doesn't throw error but doesn't change <code>mydict</code> either:</p> <pre><code> def block(value = 0): value += 5 block(**mydict) </code></pre> http://stackoverflow.com/questions/1852758/how-to-inspect-the-stack-using-an-asm-visitor 0 How to inspect the stack using an ASM visitor? Grundlefleck 2009-12-05T17:08:28Z 2009-12-05T19:16:10Z <p>I am attempting to use the Java byte code engineering library <a href="http://asm.ow2.org/index.html" rel="nofollow">ASM</a> to perform static analysis. I have the situation where I would like to inspect the variables being assigned to a field.</p> <p>I have <code>MethodVisitor</code> which implements the <code>visitFieldInsn()</code> method. I am specifically looking for the <code>putfield</code> command. That is no problem. The problem is that when I encounter <code>putfield</code>, I want to be able to access the variable that's going to be assigned to the field. Specifically I want to access information about the <em>type</em> of the variable.</p> <p>At the moment I really only need to look at what's at the top of the stack, but if there's a more general way to inspect it that's even better.</p> <p>Is there a way using ASM to inspect the variables on the stack? </p> http://stackoverflow.com/questions/145110/c-performance-vs-java-c 30 C++ performance vs. Java/C# pomeranian 2008-09-28T03:16:54Z 2009-12-04T03:32:56Z <p>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 away the native architecture. Logically it would seem impossible for Java or C# to match the speed of C++ because of this intermediate step, however I've been told that the latest compilers ("hot spot") can attain this speed or even exceed it.</p> <p>Perhaps this is more of a compiler question than a language question, but can anyone explain in plain English how it is possible for one of these virtual machine languages to perform better than a native language?</p> http://stackoverflow.com/questions/1797996/generating-class-file-for-jvm 3 Generating .class file for JVM Raghav Bali 2009-11-25T16:07:40Z 2009-12-03T23:46:41Z <p>Hello Everybody, I am working on a project that requires me to generate a java ".class" file on the go that can be later on compiled on the JVM. After learning and working with MSIL (Microsoft IL) which is also a stack based intermediate programming language, the following are the problems I am facing :</p> <ol> <li>As compared to the IL (for C# or VB) the java bytecode in ".class" file contains information in a structured manner and as far as i could understand the file, it contains the metadata apart from the program data, is it true?? Can i generate the same in a template form for every class file??</li> <li>Is it compulsory to generate the class file in binary??</li> </ol> <p>I have refered to " Programming for the Java™ Virtual Machine By Joshua Engel " but it has not served my purpose as I have already learned about the JVm instruction set.</p> <p>Can anybody please help me with this?? All help will be highly appreciated. An example for generating a simple class file would be really helpful as i could not locate a single 1 yet.</p> http://stackoverflow.com/questions/1832000/byte-code-to-java 2 Byte code to java Sachin Chourasiya 2009-12-02T10:26:33Z 2009-12-02T10:52:38Z <p>Is it possible to convert a .class file to .java file. If yes then how? What about the correctness of the code extracted from this option?</p> http://stackoverflow.com/questions/634293/flash-app-depends-on-flex-are-there-any-swf-bytecode-size-optimizers 1 Flash app depends on Flex. Are there any SWF bytecode size optimizers? stepancheg 2009-03-11T12:24:16Z 2009-11-27T19:54:30Z <p>Hello world application that uses Flex, compiled with optimize=true has size 178K. How to reduce application size?</p> <p>We do not like to use RSL, we don't like to avoid Flex.</p> <p>Largest part of resulting SWF is unused bytecode. Are there any tools to optimize bytecode — drop unused methods, classes, give methods shorter names and so on?</p> <p>I know some such tools for Java bytecode. Any there any for SWF?</p> http://stackoverflow.com/questions/1792573/localy-execute-actionscript-bytecode 0 localy execute actionscript bytecode Aaike 2009-11-24T20:03:32Z 2009-11-25T05:06:25Z <p>i want to execute a piece of bytecode so that it will run in a specific scope ?</p> <p>for example i want to be able to run this code</p> <pre><code>label.x = 100+label.width </code></pre> <p>and have it react to a label instance that is somewhere inside the compiled swf. i want the code have the 'this' keyword of my abc code to point to the parent of the label instance.</p> <p>as i understand the eval library at eval.hurlant.com will convert AS3 code to abc, which has to be loaded in as if it were an external swf. so the this keyword would always point to "global"</p> <p>in the examples at hurlant the only way to access anything in the loading swf is to create a top-level class without packages</p> <p>i also found this page <a href="http://danielmclaren.net/2008/09/21/eval-in-as3-tips-for-executing-dynamic-actionscript" rel="nofollow">http://danielmclaren.net/2008/09/21/eval-in-as3-tips-for-executing-dynamic-actionscript</a> to be usefull. it has a class that allows you to pass data from the scope of the evaluation.</p> <p>that is something, but what i really wanted is to actually execute it 'directly at' the scope of evaluation</p> <p>anybody know if this is possible ?</p> <p>i just want to create a command line from where i can execute code and also trace properties of the running swf. for example i want trace(label.x) to work, and set properties by doing label.text = "bla" etc...</p> http://stackoverflow.com/questions/1782415/what-is-the-difference-between-assembly-code-and-bytecode 3 What is the difference between assembly code and bytecode? Aaron Gusman 2009-11-23T11:01:36Z 2009-11-23T15:24:05Z <p>While in the search for the various differences in the meanings of source code, bytecode, assembly code, machine code, compilers, linkers, interpreters, assemblers and all the rest, I only got confused on the difference between bytcode and assembly code. </p> <p>Particularly the introduction this <a href="http://en.wikipedia.org/wiki/Common%5FIntermediate%5FLanguage" rel="nofollow">wikipedia article</a> to describe CIL confused me since it seems to use both terms (assembly code and bytecode) interchangeably making me think they might mean exactly the same.</p> http://stackoverflow.com/questions/1774996/local-variables-in-java-bytecode 3 Local variables in java bytecode HH 2009-11-21T09:12:39Z 2009-11-21T09:27:33Z <p>I am trying to learn java bytecode and I stumbled on this: I compiled this very simple code with the -g option:</p> <pre><code>public class Test { public static void main(String args[]) { double a = 1.0; int b = (int)a; } } </code></pre> <p>The main code turned out to be:</p> <pre><code>0 dconst_1 1 dstore_1 2 dload_1 3 d2i 4 istore_3 5 return </code></pre> <p>In addition, main's maximum local variables is 4, and the LocalVariableTable has only 3 entries (args, a, b). I am curious to know why the compiler reserved 4 local variables while there is clearly only 3, and localvariable[2] is no used. Is there something I'm missing? Thank you</p> http://stackoverflow.com/questions/1502433/switching-between-bytecode-versions-for-a-java-class-file 1 Switching between bytecode versions for a Java class file knorv 2009-10-01T07:38:03Z 2009-11-19T16:33:35Z <p>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 represented in bytecode version Y?</p> <p>Assumptions:</p> <ul> <li>The source code is not available. The class file is the only available representation of the class.</li> <li>The class file is heavily obfuscated, so decompiling the class with say jad or similar program and then recompiling it with "-target ..." does not work.</li> </ul> <p>Updates after initial post:</p> <ul> <li>Update #1: Futhermore, assume that bytecode version X and bytecode version Y are sufficiently close so that all instructions used by the class (currently in bytecode version X) also exists in version Y.</li> </ul> http://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm 8 How does bytecode get verified in the JVM? Thomman Yacob 2009-04-16T06:42:37Z 2009-11-17T13:57:46Z <p>How does bytecode get verified in the JVM?</p> http://stackoverflow.com/questions/1746990/what-is-illegal-byte-code 3 What is ILLegal Byte code ? Geek 2009-11-17T06:35:07Z 2009-11-17T07:31:53Z <p>While reading Java Security I came across the below sentences but could not get any satisfactory explanation on the Internet. Can anyone please explain</p> <ul> <li>Prevents loading of classes with bytecode</li> <li>Prevents loading of in illegal packages</li> </ul> http://stackoverflow.com/questions/459822/from-c-source-to-java-bytecode 1 From C Source to Java Bytecode? Rich Apodaca 2009-01-20T01:10:51Z 2009-11-12T16:59:01Z <p>I'm looking for a way to compile C source code into high-performance Java bytecode. I've successfully used <a href="http://wiki.brianweb.net/NestedVM/NestedVM" rel="nofollow">NestedVM</a>, but the performance hit is not acceptable for a project I'm working on. I've also seen various open source projects aimed at this problem and a couple of commercial products. <a href="http://stackoverflow.com/questions/46758/tools-for-converting-non-java-into-java-source">This SO question</a> deals with general problem of converting non-Java into Java source, but I only want to go from C to Java bytecode.</p> <p>What's the best way to compile C source code into high-performance, pure Java bytecode?</p> http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat 4 How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer? Chris Pietschmann 2008-10-30T22:39:03Z 2009-11-10T23:09:40Z <p>Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.</p> <p>So...</p> <p>How would you describe the difference between Managed Code (or Java Byte Code) and Unmanaged/Native Code to a Non-Programmer?</p> http://stackoverflow.com/questions/1707139/how-to-determine-the-java-byte-code-version-of-the-current-class-programatically 1 How to determine the Java byte code version of the current class programatically? Thorbjørn Ravn Andersen 2009-11-10T11:00:08Z 2009-11-10T11:55:20Z <p>I have a situation where the deployment platform is Java 5 and the development happens with Eclipse under Java 6 where we have established a procedure of having a new workspace created when beginning work on a given project. One of the required steps is therefore setting the compiler level to Java 5, which is frequently forgotten.</p> <p>We have a test machine running the deployment platform where we can run the code we build and do initial testing on our PC's, but if we forget to switch the compiler level the program cannot run. We have a build server for creating what goes to the customer, which works well, but this is for development where the build server is not needed and would add unnecessary waits.</p> <p>The question is: <em>CAN</em> I programmatically determine the byte code version of the current class, so my code can print out a warning already while testing on my local PC?</p> <p><hr></p> <p>EDIT: Please note the requirement was for the current class. Is this available through the classloadeer? Or must I locate the class file for the current class, and then investigate that?</p> http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac 27 In the 13 years that Java has been around, are there any specific examples of backward incompatibilities? knorv 2009-10-31T16:55:04Z 2009-11-09T21:12:53Z <p>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).</p> <p>During those thirteen years the following notable releases have been made:</p> <ul> <li>JDK 1.0 (January, 1996)</li> <li>JDK 1.1 (February, 1997)</li> <li>J2SE 1.2 (December, 1998)</li> <li>J2SE 1.3 (May, 2000)</li> <li>J2SE 1.4 (February, 2002)</li> <li>J2SE 5.0 (September, 2004)</li> <li>Java SE 6 (December, 2006)</li> </ul> <p>I'm looking for specific examples of backwards incompatibilities during the history of the Java platform. </p> <p>Question: </p> <ul> <li><b>In the thirteen year history of the Java platform, is there any examples of Java backwards incompatibility where Java source code/Java class files targeting Java version X won't compile/run under version Y (where Y > X)?</b></li> </ul> <p>House rules:</p> <ul> <li>Please include references and code examples where possible. </li> <li>Please try to be very specific/concrete in your answer.</li> <li>A class that is being marked as @Deprecated does not count as a backwards incompatibility.</li> </ul> http://stackoverflow.com/questions/1693088/what-is-the-use-of-pythons-basic-optimizations-mode-python-o 7 What is the use of Python's basic optimizations mode? (`python -O`) kaizer.se 2009-11-07T13:51:35Z 2009-11-08T22:35:40Z <p>Python has a flag <code>-O</code> that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. From Python's man page:</p> <pre><code> -O Turn on basic optimizations. This changes the filename exten‐ sion for compiled (bytecode) files from .pyc to .pyo. Given twice, causes docstrings to be discarded. </code></pre> <p>This option's two major features as I see it are:</p> <ul> <li><p>Strip all assert statements. This trades defense against corrupt program state for speed. But don't you need a ton of assert statements for this to make a difference? Do you have any code where this is worthwhile (and sane?)</p></li> <li><p>Strip all docstrings. In what application is the memory usage so critical, that this is a win? Why not push everything into modules written in C?</p></li> </ul> <p>What is the use of this option? Does it have a real-world value?</p> http://stackoverflow.com/questions/1686711/what-are-some-interesting-free-open-source-dynamic-analysis-tools-for-java 3 What are some interesting, free, open-source Dynamic Analysis tools for Java? Grundlefleck 2009-11-06T10:25:30Z 2009-11-06T11:02:58Z <p>I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be:</p> <ul> <li>Open-source (so I can learn from them)</li> <li>Free (both as in speech and beer, because I want to be able to share the results, and I'm tight-fisted, respectively)</li> <li>Intended for Java (source or bytecode)</li> </ul> <p>This includes, but is not limited to, performance profilers. They can perform any kind of analysis, as long as it's dynamic, for example, code coverage, multi-threaded correctness.</p> <p>The results generated should be useful in some way, but they do not have to be <em>industrial strength</em>.</p> <p>Similar question:</p> <ul> <li><a href="http://stackoverflow.com/questions/948549/open-source-java-profilers">Open Source Java Profilers</a> </li> </ul> <p>So what are some interesting, free, open-source Dynamic Analysis tools for Java?</p> http://stackoverflow.com/questions/1680024/compiler-optimization-java-bytecode 1 Compiler optimization: Java bytecode Giuliano Vilela 2009-11-05T11:41:22Z 2009-11-05T12:21:53Z <p>I'm currently writing a toy compiler targeting Java bytecode in the translation.</p> <p>I would like to know if there is some kind of catalog, maybe a summary, of various simple peephole optimizations that can be made in the emitted bytecode before writing the .class file. I actually am aware of some libraries that have this functionality, but I'd like to implement that myself.</p> http://stackoverflow.com/questions/378127/pyc-to-py-files 3 pyc to py files Golovko 2008-12-18T15:13:23Z 2009-11-03T12:13:50Z <p>hello, I wrote a lot of important python code for my project. unfortunately, I ran sed with wrong options and lost my files :( In repo these files are very old, but I have the pyc files.</p> <p>How can I convert pyc files to py?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1649674/resolve-class-name-from-bytecode 0 Resolve class name from bytecode JHollanti 2009-10-30T12:56:01Z 2009-10-30T15:20:28Z <p>Is it possible to dig up a classes name from bytecode which is formed from the class' source code? </p> <p>The situation is this: I get a classes bytecode remotely from somewhere, it doesn't matter where it comes from. To effectively load that class with a classloader i would need to have the class name as well... right? </p> http://stackoverflow.com/questions/1644619/cpython-is-bytecode-interpreter 2 CPython is bytecode interpreter? huy 2009-10-29T15:39:57Z 2009-10-29T16:03:35Z <p>I don't really get the concept of "bytecode interpreter" in the context of CPython. Can someone shed some light over the whole picture?</p> <p>Does it mean that CPython will compile and execute pyc file (bytecode file?). Then what compile py file to pyc file? And how is Jython different from CPython (except they are implemented in different languages).</p> <p>I also read somewhere that Python is C++ interpretation. Is this correct? And what does that mean?</p> <p>I'm still very new to Python, so forgive me if I ask the dumb questions... Thank you so much!</p> http://stackoverflow.com/questions/638491/translating-java-bytecode-into-other-representations-and-programming-languages 5 Translating Java bytecode into other representations and programming languages Tim Bunce 2009-03-12T12:54:46Z 2009-10-17T19:52:49Z <p>I'm looking for ways/tools/projects to translate Java bytecode into other programming languages or, failing that, at least into a structured representation (like XML). Ideally open source, naturally.</p> <p>I've looked at <a href="http://asm.objectweb.org/" rel="nofollow">ASM</a>, the "bytecode manipulation and analysis framework". It doesn't support translation to other representations, but looks like a good foundation for such a project. Sadly, none of the projects listed on their <a href="http://asm.objectweb.org/users.html" rel="nofollow">users page</a> comes close.</p> http://stackoverflow.com/questions/1566185/unboxing-using-the-asm-java-library 1 unboxing using the ASM Java library NateS 2009-10-14T13:20:13Z 2009-10-17T19:51:11Z <p>I'm using the ASM Java library to replace some reflection. I generate the body of this method:</p> <pre><code>void set(Object object, int fieldIndex, Object value); </code></pre> <p>With this generated method, I can set fields on an object at runtime without using reflection. It works great. However, I found it fails for primitive fields. Here is the relevant part of my set method:</p> <pre><code>for (int i = 0, n = cachedFields.length; i &lt; n; i++) { mv.visitLabel(labels[i]); mv.visitFrame(Opcodes.F_SAME, 0, null, 0, null); mv.visitVarInsn(ALOAD, 1); mv.visitTypeInsn(CHECKCAST, targetClassName); mv.visitVarInsn(ALOAD, 3); Field field = cachedFields[i].field; Type fieldType = Type.getType(field.getType()); mv.visitFieldInsn(PUTFIELD, targetClassName, field.getName(), fieldType.getDescriptor()); mv.visitInsn(RETURN); } </code></pre> <p>This code is generating case labels for a select. It works great for objects but for primitives I get this error:</p> <blockquote> <p>Expecting to find float on stack</p> </blockquote> <p>Ok, that makes sense, I need to do the unboxing myself. I implemented the following:</p> <pre><code>for (int i = 0, n = cachedFields.length; i &lt; n; i++) { mv.visitLabel(labels[i]); mv.visitFrame(Opcodes.F_SAME, 0, null, 0, null); mv.visitVarInsn(ALOAD, 1); mv.visitTypeInsn(CHECKCAST, targetClassName); mv.visitVarInsn(ALOAD, 3); Field field = cachedFields[i].field; Type fieldType = Type.getType(field.getType()); switch (fieldType.getSort()) { case Type.BOOLEAN: mv.visitTypeInsn(CHECKCAST, "java/lang/Boolean"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Boolean", "booleanValue", "()Z"); break; case Type.BYTE: mv.visitTypeInsn(CHECKCAST, "java/lang/Byte"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Byte", "byteValue", "()B"); break; case Type.CHAR: mv.visitTypeInsn(CHECKCAST, "java/lang/Character"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Character", "charValue", "()C"); break; case Type.SHORT: mv.visitTypeInsn(CHECKCAST, "java/lang/Short"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Short", "shortValue", "()S"); break; case Type.INT: mv.visitTypeInsn(CHECKCAST, "java/lang/Integer"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Integer", "intValue", "()I"); break; case Type.FLOAT: mv.visitTypeInsn(CHECKCAST, "java/lang/Float"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Float", "floatValue", "()F"); break; case Type.LONG: mv.visitTypeInsn(CHECKCAST, "java/lang/Long"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Long", "longValue", "()J"); break; case Type.DOUBLE: mv.visitTypeInsn(CHECKCAST, "java/lang/Double"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Double", "doubleValue", "()D"); break; case Type.ARRAY: mv.visitTypeInsn(CHECKCAST, fieldType.getDescriptor()); break; case Type.OBJECT: mv.visitTypeInsn(CHECKCAST, fieldType.getInternalName()); break; } mv.visitFieldInsn(PUTFIELD, targetClassName, field.getName(), fieldType.getDescriptor()); mv.visitInsn(RETURN); } </code></pre> <p>I have traced through and it definitely goes into "case Type.FLOAT" for the appropriate field, however, I get this error:</p> <blockquote> <p>Expecting to find object/array on stack</p> </blockquote> <p>This is where I'm stuck. For the life of me I can't figure out why the unboxing doesn't work. The "ALOAD, 3" is putting the third parameter of the set method on the stack, which should be a Float. Any ideas?</p> <p>I found the asm-commons library has a GeneratorAdapter class that has an unbox method. However, I don't really want to include yet another JAR for something that should be so simple. I looked at the GeneratorAdapter source and it is doing something very similar. I tried to modify my code to use GeneratorAdapter, just to see if it worked, but didn't find it at all easy to convert.</p> http://stackoverflow.com/questions/1572770/did-ocaml-get-any-serious-promotion-last-few-years 1 Did OCaml get any Serious Promotion last few Years? Bubba88 2009-10-15T14:34:41Z 2009-10-16T11:20:04Z <p>Did you hear something about any corporate investments or enlargement of OCaml community? (not F# please)</p> http://stackoverflow.com/questions/1552308/understanding-java-byte-code 2 Understanding Java Byte Code hhafez 2009-10-12T01:28:07Z 2009-10-12T11:39:08Z <p>Often I am stuck with a java class file with no source and I am trying to understand the problem I have at hand.</p> <p>Note a decompiler is useful but not sufficient in all situation...</p> <p>I have two question</p> <ol> <li>What tools are available to view java byte code (preferably available from the linux command line )</li> <li>What are good references to get familiar with java byte code syntax</li> </ol> http://stackoverflow.com/questions/1537714/disabling-compile-time-dependency-checking-when-compiling-java-classes 3 Disabling compile-time dependency checking when compiling Java classes knorv 2009-10-08T13:11:59Z 2009-10-08T15:03:28Z <p>Consider the following two Java classes:</p> <pre><code>a.) class Test { void foo(Object foobar) { } } b.) class Test { void foo(pkg.not.in.classpath.FooBar foobar) { } } </code></pre> <p>Furthermore, assume that <code>pkg.not.in.classpath.FooBar</code> is not found in the classpath.</p> <p>The first class will compile fine using the standard javac.</p> <p>However, the second class won't compile and javac will give you the error message <code>"package pkg.not.in.classpath does not exist"</code>.</p> <p>The error message is nice in the general case since checking your dependencies allows the compiler to tell you if you got some method argument wrong, etc.</p> <p>While nice and helpful this checking of dependencies at compile-time is AFAIK not <b>strictly</b> needed to generate the Java class file in the example above.</p> <ol> <li><p><b>Can you give any example for which it would be technically impossible to generate a valid Java class file without performing compile time dependency checking?</b></p></li> <li><p><b>Do you know of any way to instruct javac or any other Java compiler to skip the compile time dependency checking?</b></p></li> </ol> <p>Please make sure your answer addresses both questions.</p>