Re: Maven coordinates going forward

2017-04-06 Thread Paul King
Thanks everyone for the feedback. I was mostly interested in feedback on the maven coordinates rather than package names, but it was good to get views on both. We have already started creating new classes using the org.apache package prefix rather than org.codehaus and I presume that we can continu

Re: Potential Bytecode Optimization

2017-04-06 Thread Cédric Champeau
Hi Jenn! I think a good way to test this is to use JMH. And for this particular scenario, find a method that would exceed the maximum bytecode size for inlining, and would go below that limit with your optimization. 2017-04-06 11:12 GMT+02:00 Jennifer Strater : > Hi all, > > As part of a special

Potential Bytecode Optimization

2017-04-06 Thread Jennifer Strater
Hi all, As part of a special course on compilers, I've been looking at the groovy compiler to see how it works. One thing we noticed is that the bytecode generated by the Groovy compiler contains several instances of loading a value onto the stack immediately followed by a pop. I understand how i