What is the loop unrolling policy for JIT? Or if there is no simple answer to that, then is there some way i can check where/when loop unrolling is being performed in a loop
Another way to see if loop unrolling is being performed in the loop is to specify -XX:LoopUnrollLimit=1
as an argument to the JVM when running your code.
If you have an executable jar, then an example of how you can use this is:
java -XX:LoopUnrollLimit=1 -jar your-jar.jar
This flag will
Unroll loop bodies with server compiler intermediate representation node count less than this value
And that'll directly address your question without needing to look at the generated assembly