JIT: handle general indir case for GT_JMP address
authorAndy Ayers <andya@microsoft.com>
Tue, 27 Nov 2018 21:11:02 +0000 (13:11 -0800)
committerAndy Ayers <andya@microsoft.com>
Tue, 27 Nov 2018 21:11:02 +0000 (13:11 -0800)
commit8c6a9e003feffbd798d6cdbbb5f89b170d75e05d
treee29dfd10f2f9bea0b7ff3be078861898daaa9eb4
parent7f22a149708a9ad6a90b9a92b78c12a7f4ae9d41
JIT: handle general indir case for GT_JMP address

Some upcoming changes to reduce tiering overhead require that directly
invoked virtual methods be called indirectly via their slot, so that the
method body can be updated and callers patched up by patching the method
table slot.

Existing code for x64 implicitly assumes that a GT_JMP indirect target address
is near enough to the call site that a 32 bit RIP-relative displacement will
work. We can ensure this is true by always generating a reloc (and hence
potentially a jump stub) -- unless the target happens to fit in 32 bits and
so can be addressed absolutely.
src/jit/codegencommon.cpp