reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
// Test that notes (both from object files and synthetic) are duplicated into
// each partition.

// REQUIRES: x86

// RUN: llvm-mc %s -o %t.o -filetype=obj --triple=x86_64-unknown-linux
// RUN: ld.lld %t.o -o %t --shared --gc-sections --build-id=sha1

// RUN: llvm-objcopy --extract-main-partition %t %t0
// RUN: llvm-objcopy --extract-partition=part1 %t %t1

// RUN: llvm-readelf --all %t0 | FileCheck --check-prefixes=CHECK,PART0 %s
// RUN: llvm-readelf --all %t1 | FileCheck --check-prefixes=CHECK,PART1 %s

// CHECK: Program Headers:
// CHECK: NOTE 0x{{0*}}[[NOTE_OFFSET:[^ ]*]]

// CHECK: Displaying notes found at file offset 0x{{0*}}[[NOTE_OFFSET]]
// CHECK-NEXT: Owner
// CHECK-NEXT: foo                   0x00000004	NT_VERSION (version)
// CHECK-NEXT:  description data: 62 61 72 00
// CHECK-NEXT: Displaying notes
// CHECK-NEXT: Owner
// CHECK-NEXT: GNU                   0x00000014	NT_GNU_BUILD_ID (unique build ID bitstring)
// CHECK-NEXT: Build ID: 08b93eab87177a2356d1b0d1148339463f98dac2

.section .llvm_sympart,"",@llvm_sympart
.asciz "part1"
.quad p1

.section .data.p0,"aw",@progbits
.globl p0
p0:

.section .data.p1,"aw",@progbits
.globl p1
p1:

.section .note.obj,"a",@note
.align 4
.long 2f-1f
.long 3f-2f
.long 1
1: .asciz "foo"
2: .asciz "bar"
3: