[lld] r280070 - [ELF] - Linkerscript: implemented ADDR command.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 30 02:54:02 PDT 2016
Author: grimar
Date: Tue Aug 30 04:54:01 2016
New Revision: 280070
URL: http://llvm.org/viewvc/llvm-project?rev=280070&view=rev
Log:
[ELF] - Linkerscript: implemented ADDR command.
ADDR(section)
Return the absolute address (the VMA) of the named section.
Used in the wild, eg.: https://searchcode.com/file/53617342/arch/x86/kernel/vmlinux.lds.S
Differential revision: https://reviews.llvm.org/D23913
Added:
lld/trunk/test/ELF/linkerscript/linkerscript-addr.s
Modified:
lld/trunk/ELF/LinkerScript.cpp
lld/trunk/ELF/LinkerScript.h
Modified: lld/trunk/ELF/LinkerScript.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.cpp?rev=280070&r1=280069&r2=280070&view=diff
==============================================================================
--- lld/trunk/ELF/LinkerScript.cpp (original)
+++ lld/trunk/ELF/LinkerScript.cpp Tue Aug 30 04:54:01 2016
@@ -533,6 +533,16 @@ template <class ELFT> bool LinkerScript<
}
template <class ELFT>
+typename ELFT::uint
+LinkerScript<ELFT>::getOutputSectionAddress(StringRef Name) {
+ for (OutputSectionBase<ELFT> *Sec : *OutputSections)
+ if (Sec->getName() == Name)
+ return Sec->getVA();
+ error("undefined section " + Name);
+ return 0;
+}
+
+template <class ELFT>
typename ELFT::uint LinkerScript<ELFT>::getOutputSectionSize(StringRef Name) {
for (OutputSectionBase<ELFT> *Sec : *OutputSections)
if (Sec->getName() == Name)
@@ -1044,6 +1054,21 @@ static uint64_t getSectionSize(StringRef
}
}
+static uint64_t getSectionAddress(StringRef Name) {
+ switch (Config->EKind) {
+ case ELF32LEKind:
+ return Script<ELF32LE>::X->getOutputSectionAddress(Name);
+ case ELF32BEKind:
+ return Script<ELF32BE>::X->getOutputSectionAddress(Name);
+ case ELF64LEKind:
+ return Script<ELF64LE>::X->getOutputSectionAddress(Name);
+ case ELF64BEKind:
+ return Script<ELF64BE>::X->getOutputSectionAddress(Name);
+ default:
+ llvm_unreachable("unsupported target");
+ }
+}
+
static uint64_t getHeaderSize() {
switch (Config->EKind) {
case ELF32LEKind:
@@ -1154,6 +1179,12 @@ Expr ScriptParser::readPrimary() {
// Built-in functions are parsed here.
// https://sourceware.org/binutils/docs/ld/Builtin-Functions.html.
+ if (Tok == "ADDR") {
+ expect("(");
+ StringRef Name = next();
+ expect(")");
+ return [=](uint64_t Dot) { return getSectionAddress(Name); };
+ }
if (Tok == "ASSERT")
return readAssert();
if (Tok == "ALIGN") {
Modified: lld/trunk/ELF/LinkerScript.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.h?rev=280070&r1=280069&r2=280070&view=diff
==============================================================================
--- lld/trunk/ELF/LinkerScript.h (original)
+++ lld/trunk/ELF/LinkerScript.h Tue Aug 30 04:54:01 2016
@@ -151,6 +151,7 @@ public:
void assignAddresses();
int compareSections(StringRef A, StringRef B);
bool hasPhdrsCommands();
+ uintX_t getOutputSectionAddress(StringRef Name);
uintX_t getOutputSectionSize(StringRef Name);
uintX_t getHeaderSize();
Added: lld/trunk/test/ELF/linkerscript/linkerscript-addr.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/linkerscript/linkerscript-addr.s?rev=280070&view=auto
==============================================================================
--- lld/trunk/test/ELF/linkerscript/linkerscript-addr.s (added)
+++ lld/trunk/test/ELF/linkerscript/linkerscript-addr.s Tue Aug 30 04:54:01 2016
@@ -0,0 +1,32 @@
+# REQUIRES: x86
+# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
+# RUN: echo "SECTIONS { \
+# RUN: . = 0x1000; \
+# RUN: .text : { *(.text*) } \
+# RUN: .foo.1 : { *(.foo.1) } \
+# RUN: .foo.2 ADDR(.foo.1) + 0x100 : { *(.foo.2) } \
+# RUN: .foo.3 : { *(.foo.3) } \
+# RUN: }" > %t.script
+# RUN: ld.lld %t --script %t.script -o %t1
+# RUN: llvm-objdump -section-headers %t1 | FileCheck %s
+
+# CHECK: Sections:
+# CHECK-NEXT: Idx Name Size Address Type
+# CHECK-NEXT: 0 00000000 0000000000000000
+# CHECK-NEXT: 1 .text 00000000 0000000000001000 TEXT DATA
+# CHECK-NEXT: 2 .foo.1 00000008 0000000000001000 DATA
+# CHECK-NEXT: 3 .foo.2 00000008 0000000000001100 DATA
+# CHECK-NEXT: 4 .foo.3 00000008 0000000000001108 DATA
+
+.text
+.globl _start
+_start:
+
+.section .foo.1,"a"
+ .quad 1
+
+.section .foo.2,"a"
+ .quad 2
+
+.section .foo.3,"a"
+ .quad 3
More information about the llvm-commits
mailing list