I'm trying to JIT the llvm trampoline intrinsics, but I can't find the functionality for that in the llvm::IRBuilder class
. Does anyone know if it's possible to do with the current JIT engine?
I'm not looking for the semantics of the trampoline intrinsic, but how to generate the llvm ir for it. I assumed I would find it in the llvm::IRBuilder
class because it can generate some other intrinsics, but, alas, it isn't there.