Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jul 2019 15:34:09 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org
Subject:   svn commit: r349785 - in vendor/lld/dist-release_80: ELF/Arch test/ELF
Message-ID:  <201907061534.x66FY9CB014373@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sat Jul  6 15:34:09 2019
New Revision: 349785
URL: https://svnweb.freebsd.org/changeset/base/349785

Log:
  Vendor import of lld release_80 branch r364487:
  https://llvm.org/svn/llvm-project/lld/branches/release_80@364487

Added:
  vendor/lld/dist-release_80/test/ELF/ppc64-long-branch-localentry-offset.s
Modified:
  vendor/lld/dist-release_80/ELF/Arch/PPC64.cpp

Modified: vendor/lld/dist-release_80/ELF/Arch/PPC64.cpp
==============================================================================
--- vendor/lld/dist-release_80/ELF/Arch/PPC64.cpp	Sat Jul  6 15:34:07 2019	(r349784)
+++ vendor/lld/dist-release_80/ELF/Arch/PPC64.cpp	Sat Jul  6 15:34:09 2019	(r349785)
@@ -757,7 +757,10 @@ bool PPC64::needsThunk(RelExpr Expr, RelType Type, con
 
   // If the offset exceeds the range of the branch type then it will need
   // a range-extending thunk.
-  return !inBranchRange(Type, BranchAddr, S.getVA());
+  // See the comment in getRelocTargetVA() about R_PPC64_CALL.
+  return !inBranchRange(Type, BranchAddr,
+                        S.getVA() +
+                            getPPC64GlobalEntryToLocalEntryOffset(S.StOther));
 }
 
 uint32_t PPC64::getThunkSectionSpacing() const {

Added: vendor/lld/dist-release_80/test/ELF/ppc64-long-branch-localentry-offset.s
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ vendor/lld/dist-release_80/test/ELF/ppc64-long-branch-localentry-offset.s	Sat Jul  6 15:34:09 2019	(r349785)
@@ -0,0 +1,30 @@
+# REQUIRES: ppc
+
+# RUN: llvm-mc -filetype=obj -triple=ppc64le %s -o %t.o
+# RUN: ld.lld %t.o -o %t
+# RUN: llvm-nm %t | FileCheck %s
+
+# CHECK-DAG: 0000000010010000 t __long_branch_callee
+# CHECK-DAG: 0000000010010010 T _start
+# CHECK-DAG: 0000000012010008 T callee
+
+# The bl instruction jumps to the local entry. The distance requires a long branch stub:
+# localentry(callee) - _start = 0x12010008+8 - 0x10010010 = 0x2000000
+
+# We used to compute globalentry(callee) - _start and caused a "R_PPC64_REL24
+# out of range" error because we didn't create the stub.
+
+.globl _start
+_start:
+  bl callee
+
+.space 0x1fffff4
+
+.globl callee
+callee:
+.Lgep0:
+  addis 2, 12, .TOC.-.Lgep0@ha
+  addi 2, 2, .TOC.-.Lgep0@l
+.Llep0:
+  .localentry callee, .Llep0-.Lgep0
+  blr



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907061534.x66FY9CB014373>