From: Andy Ayers Date: Tue, 27 Nov 2018 21:11:02 +0000 (-0800) Subject: JIT: handle general indir case for GT_JMP address X-Git-Tag: submit/tizen/20210909.063632~11030^2~3229^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bececa66bea22f941b321c203061afaf9d98cd02;p=platform%2Fupstream%2Fdotnet%2Fruntime.git 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. Commit migrated from https://github.com/dotnet/coreclr/commit/8c6a9e003feffbd798d6cdbbb5f89b170d75e05d --- diff --git a/src/coreclr/src/jit/codegencommon.cpp b/src/coreclr/src/jit/codegencommon.cpp index 79ca6c0..baaacaa 100644 --- a/src/coreclr/src/jit/codegencommon.cpp +++ b/src/coreclr/src/jit/codegencommon.cpp @@ -941,17 +941,17 @@ bool CodeGenInterface::genCodeIndirAddrNeedsReloc(size_t addr) } #ifdef _TARGET_AMD64_ - // If code addr could be encoded as 32-bit offset relative to IP, we need to record a relocation. - if (genCodeIndirAddrCanBeEncodedAsPCRelOffset(addr)) + // See if the code indir addr can be encoded as 32-bit displacement relative to zero. + // We don't need a relocation in that case. + if (genCodeIndirAddrCanBeEncodedAsZeroRelOffset(addr)) { - return true; + return false; } - // It could be possible that the code indir addr could be encoded as 32-bit displacement relative - // to zero. But we don't need to emit a relocation in that case. - return false; + // Else we need a relocation. + return true; #else //_TARGET_X86_ - // On x86 there is need for recording relocations during jitting, + // On x86 there is no need to record or ask for relocations during jitting, // because all addrs fit within 32-bits. return false; #endif //_TARGET_X86_