Let's say I have a custom Java compiler or bytecode agent.
Is it possible to pass call site bytecode to my bootstrapping handler in a way that won't require me to generate an anonymous class to "host" the bytecode inside a synthetic method?
I.e once I have passed the bytecode I want to execute it with as little overhead as possible (assuming I have already got the stack and local variable array just right for the bytecode to work)