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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
  
     | 
    
      // REQUIRES: x86
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
// RUN: ld.lld %t -o %tout
// RUN: llvm-readobj -S %tout | FileCheck --check-prefixes=CHECK,CHECK1 %s
// RUN: echo "SECTIONS { \
// RUN:   . = 0x201000; \
// RUN:   .text : { *(.text) } \
// RUN:   . = 0x202000; \
// RUN:   .tdata : { *(.tdata) } \
// RUN:   .tbss : { *(.tbss) } \
// RUN:   .data.rel.ro : { *(.data.rel.ro) } \
// RUN: }" > %t.script
// RUN: ld.lld -T %t.script %t -o %tout2
// RUN: llvm-readobj -S %tout2 | FileCheck --check-prefixes=CHECK,CHECK2 %s
        .global _start
_start:
        retq
        .section        .tdata,"awT",@progbits
        .align  4
        .long   42
        .section        .tbss,"awT",@nobits
        .align  16
        .zero 16
        .section        .data.rel.ro,"aw",@progbits
        .long 1
// Test that .tbss doesn't show up in the offset or in the address. If this
// gets out of sync what we get a runtime is different from what the section
// table says.
// CHECK:       Name: .tdata
// CHECK-NEXT:  Type: SHT_PROGBITS
// CHECK-NEXT:  Flags [
// CHECK-NEXT:    SHF_ALLOC
// CHECK-NEXT:    SHF_TLS
// CHECK-NEXT:    SHF_WRITE
// CHECK-NEXT:  ]
// CHECK1-NEXT: Address: 0x2021D0
// CHECK1-NEXT: Offset: 0x1D0
// CHECK2-NEXT: Address: 0x202000
// CHECK2-NEXT: Offset: 0x2000
// CHECK-NEXT:  Size: 4
// CHECK:       Name: .tbss
// CHECK-NEXT:  Type: SHT_NOBITS
// CHECK-NEXT:  Flags [
// CHECK-NEXT:    SHF_ALLOC
// CHECK-NEXT:    SHF_TLS
// CHECK-NEXT:    SHF_WRITE
// CHECK-NEXT:  ]
// CHECK1-NEXT: Address: 0x2021E0
// CHECK1-NEXT: Offset: 0x1D4
// CHECK2-NEXT: Address: 0x202010
// CHECK2-NEXT: Offset: 0x2004
// CHECK-NEXT:  Size: 16
// CHECK:       Name: .data.rel.ro
// CHECK-NEXT:  Type: SHT_PROGBITS
// CHECK-NEXT:  Flags [
// CHECK-NEXT:    SHF_ALLOC
// CHECK-NEXT:    SHF_WRITE
// CHECK-NEXT:  ]
// CHECK1-NEXT: Address: 0x2021D4
// CHECK1-NEXT: Offset: 0x1D4
// CHECK2-NEXT: Address: 0x202004
// CHECK2-NEXT: Offset: 0x2004
// CHECK-NEXT:  Size: 4
 
     |