File: empty-sections.s

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (40 lines) | stat: -rw-r--r-- 1,486 bytes parent folder | download | duplicates (12)
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
## Check how the PointerToRawData field is set for empty sections.
##
## Some tools may leave it set to a nonzero value, while others
## set it to zero. Currently, the LLVM MC layer produces a .data
## section with a nonzero PointerToRawData value, even if no
## .data section needs to be emitted. Other tools, such as yaml2obj
## writes a zero field if there's no data.
##
## When llvm-objcopy copies object files, it either needs to
## update the value to a valid value (within the bounds of the
## file, even if the section is empty) or zero. Some tools
## (such as obj2yaml or llvm-objcopy) can error out if the value
## is out of bounds.
##
## Check that our input file has got a nonzero field, and that
## it is set to zero after a run with llvm-objcopy.

# REQUIRES: x86-registered-target

# RUN: llvm-mc -triple x86_64-pc-win32 -filetype=obj %s -o %t.in.obj
# RUN: llvm-readobj --sections %t.in.obj | FileCheck %s --check-prefix=INPUT
# RUN: llvm-objcopy --remove-section=.bss %t.in.obj %t.out.obj
# RUN: llvm-readobj --sections %t.out.obj | FileCheck %s --check-prefix=OUTPUT

# INPUT:          Name: .data
# INPUT-NEXT:     VirtualSize: 0x0
# INPUT-NEXT:     VirtualAddress: 0x0
# INPUT-NEXT:     RawDataSize: 0
# INPUT-NEXT:     PointerToRawData: 0x8D

# OUTPUT:         Name: .data
# OUTPUT-NEXT:    VirtualSize: 0x0
# OUTPUT-NEXT:    VirtualAddress: 0x0
# OUTPUT-NEXT:    RawDataSize: 0
# OUTPUT-NEXT:    PointerToRawData: 0x0{{$}}

    .text
    .globl func
func:
    ret