java Programming Glossary: optimizer
What is the reason for these PMD rules? http://stackoverflow.com/questions/1615419/what-is-the-reason-for-these-pmd-rules final on a local variable should be very useful to an optimizer but I don't have any concrete examples of current JITs taking..
Compiler optimization: Java bytecode http://stackoverflow.com/questions/1680024/compiler-optimization-java-bytecode http proguard.sourceforge.net This is a great bytecode optimizer which implements a lot of optimizations. See the FAQ for a list..
is it possible to disable javac's inlining of static final variables? http://stackoverflow.com/questions/3524150/is-it-possible-to-disable-javacs-inlining-of-static-final-variables
How to optimize for-comprehensions and loops in Scala? http://stackoverflow.com/questions/6146182/how-to-optimize-for-comprehensions-and-loops-in-scala which is caught at the enclosing method. The optimizer can eliminate the foreach but cannot yet eliminate the throw.. since such nested returns are rare in Scala programs the optimizer did not yet address this case. There is work going on to improve.. address this case. There is work going on to improve the optimizer which hopefully will solve this issue soon. share improve this..
How serious is the Java7 “Solr/Lucene” bug? http://stackoverflow.com/questions/6894104/how-serious-is-the-java7-solr-lucene-bug I'd say this bug is much sneakier than previous loop optimizer hotspot bugs we have hit e.g. sign flip stuff https issues.apache.org..
|