I'm just curious as to how it is possible for the Java JVM to sometimes inline methods that have the potential to throw exceptions. I assume that it's possible to inline at least some such methods (such as those that have array accesses and hence the potential to throw ArrayIndexOutOfBoundsExceptions). The problem I see is that if the exception actually occurs, how do you show the proper stack trace if you've inlined the method? Since different methods can be inlined on different machines, how does inlining not break the stack trace mechanism?
| |||||||
feedback
|
|
What is the problem you envisage? Since it is the JVM itself that does the inlining, there is nothing that prevents it from remembering what it inlined where and correct for this when it constructs a stack trace to install in a Throwable object. When an exception is However, a JVM is not required to do this. It may also choose simply to construct stack traces with mysterious breaks in them. See the javadoc for Throwable.getStackTrace(). (There is even no requirement that a JVM is able to produce stack traces at all). | ||||
|
feedback
|
|
You might want to check out this document which explains how exception handling works in the JVM:
| |||||||||
feedback
|