Completed
Details
Assignee
UnassignedUnassignedReporter
AdamClementsAdamClementsApproval
OkPatch
CodePriority
CriticalAffects versions
Fix versions
Details
Details
Assignee
Unassigned
UnassignedReporter
AdamClements
AdamClementsApproval
Ok
Patch
Code
Priority
Affects versions
Fix versions
Created July 23, 2014 at 6:39 PM
Updated March 31, 2020 at 1:11 AM
Resolved March 3, 2020 at 7:20 PM
Android ART runs compile time verification on bytecode and fails on some usages of the locking macro. Example:
Android error:
Graal fails with this error:
Cause: The locking macro emits a try block. When not in tail position, try blocks get lifted into lambdas, and closed over variables (including, importantly, the lockee) become ‘fields’ of the lambda object. Thus in that situation the monitor enter/exit calls were being made on a field. Graal doesn’t trust that the value of that field will be the same in the enter and exit calls, so it balks that they might not be a balanced pair. The solution is to get the lockee onto the stack so Graal can understand that it is the same target. The problem has nothing to do with exception handling blocks or failure to emulate javac’s infinite loop trick.
Approach: We need to get the lockee on the stack, even when lifting occurs, and use the same stack variable in try/finally. Thus we need a let around try/finally. But lifting can still happen, so that let needs to be in what’s lifted. That’s the role of the outer try. The outer try will be lifted, and the let with it, the let will put the field on the stack, Graal sees enter/exit on the same stack value and its verifier is thus happy. The inner try will always be in tail position.
Patch: clj-1472-5.patch