This is a two part question, but wouldn't make sense by the individual pieces. Is a large number of dup instructions within the bytecode output an indicator of poorly written code? Where large is defined by some percentage of all bytecode instructions. Further how does one go about rewriting code that generates a dup instruction?
|
|
|||
| show 3 more comments |
|
Are we talking about If you are generating bytecode yourself, excessive number of
In other words suboptimal bytecode is translated into "more optimal" assembly on the fly. Just... don't bother. |
|||||||||||||||||
|
|
The One of the most common cases where you see
Running
In English: the Here's a case where where the Oracle Java Compiler (1.6) didn't use
I'd expect the compiler to
I would have expected the |
|||||||||||
|
|
If you're worried about the impact of As far as quality of code, there are two main things that will cause Javac to generate The other versions of If the code isn't compiled from Java, all bets are off. The presence or absence of instructions doesn't really tell you much, especially in the languages whose compilers perform compile time optimization. |
|||
dupinstructions in said bytecode output which screams to me that something is greatly amiss. However, even after rewriting it in a less procedural way there are still manydupinstructions. – Woot4Moo Feb 15 at 20:14dupjust means a value is re-used, I don't see how that says anything about code-quality – harold Feb 15 at 20:19