llvm-project/llvm/test/tools/llvm-dwarfutil/ELF/X86/separate-debug-file.test
Alexey Lapshin 4539b44148 [Reland][Debuginfo][llvm-dwarfutil] llvm-dwarfutil dsymutil-like tool for ELF.
This patch implements proposal https://lists.llvm.org/pipermail/llvm-dev/2020-August/144579.html
llvm-dwarfutil - is a tool that is used for processing debug info(DWARF) located in built binary files to improve debug info quality, reduce debug info size. The patch currently implements smaller set of command-line options(comparing to the proposal):

```
./llvm-dwarfutil [options] <input file> <output file>

  --garbage-collection    Do garbage collection for debug info(default)
  -j <value>              Alias for --num-threads
  --no-garbage-collection Don`t do garbage collection for debug info
  --no-odr-deduplication  Don`t do ODR deduplication for debug types
  --no-odr                Alias for --no-odr-deduplication
  --no-separate-debug-file
                          Create single output file, containing debug tables(default)
  --num-threads <threads> Number of available threads for multi-threaded execution. Defaults to the number of cores on the current machine
  --odr-deduplication     Do ODR deduplication for debug types(default)
  --odr                   Alias for --odr-deduplication
  --separate-debug-file   Create two output files: file w/o debug tables and file with debug tables
  --tombstone [bfd,maxpc,exec,universal]
                          Tombstone value used as a marker of invalid address(default: universal)
    =bfd - Zero for all addresses and [1,1] for DWARF v4 (or less) address ranges and exec
    =maxpc - Minus 1 for all addresses and minus 2 for DWARF v4 (or less) address ranges
    =exec - Match with address ranges of executable sections
    =universal - Both: bfd and maxpc
```

Reviewed By: clayborg

Differential Revision: https://reviews.llvm.org/D86539
2022-07-19 15:11:36 +03:00

57 lines
2.3 KiB
Plaintext

## This test checks the --[no-]separate-debug-file option.
# RUN: yaml2obj %p/Inputs/common.yaml -o %t.o
## Check --garbage-collection --no-separate-debug-file.
# RUN: llvm-dwarfutil --garbage-collection --no-separate-debug-file %t.o %t2
# RUN: llvm-dwarfdump -a %t2 | FileCheck --check-prefix=CHECK-DEBUG %s
## Check --garbage-collection --separate-debug-file.
# RUN: llvm-dwarfutil --garbage-collection --separate-debug-file %t.o %t2
# RUN: llvm-objdump --headers %t2 | FileCheck --check-prefix=CHECK-NON-DEBUG %s
# RUN: llvm-dwarfdump -a %t2.debug | FileCheck --check-prefix=CHECK-DEBUG %s
## Check --no-garbage-collection --no-separate-debug-file.
# RUN: llvm-dwarfutil --no-garbage-collection --no-separate-debug-file %t.o %t1
# RUN: llvm-dwarfdump -a %t1 | FileCheck --check-prefix=CHECK-DEBUG %s
## Check --no-garbage-collection --separate-debug-file.
# RUN: llvm-dwarfutil --no-garbage-collection %t.o --separate-debug-file %t3
# RUN: llvm-objdump --headers %t3 | FileCheck --check-prefix=CHECK-NON-DEBUG %s
# RUN: llvm-dwarfdump -a %t3.debug | FileCheck --check-prefix=CHECK-DEBUG %s
## Copy result to compare it later.
# RUN: cp %t3 %t4
# RUN: cp %t3.debug %t4.debug
## Check that --separate-debug-file wins if last.
# RUN: llvm-dwarfutil --no-garbage-collection --no-separate-debug-file --separate-debug-file %t.o %t3
# RUN: cmp %t4 %t3
# RUN: cmp %t4.debug %t3.debug
## Check that --no-separate-debug-file wins if last.
# RUN: llvm-dwarfutil --no-garbage-collection --separate-debug-file --no-separate-debug-file %t.o %t5
# RUN: cmp %t1 %t5
# CHECK-NON-DEBUG-NOT: .debug_abbrev
# CHECK-NON-DEBUG-NOT: .debug_info
# CHECK-NON-DEBUG: .gnu_debuglink
# CHECK-NON-DEBUG-NOT: .debug_abbrev
# CHECK-NON-DEBUG-NOT: .debug_info
# CHECK-DEBUG: .debug_abbrev
# CHECK-DEBUG: DW_TAG_compile_unit
# CHECK-DEBUG: .debug_info
# CHECK-DEBUG: DW_TAG_compile_unit
# CHECK-DEBUG: DW_AT_producer{{.*}}"by_hand"
# CHECK-DEBUG: DW_AT_language{{.*}}DW_LANG_C_plus_plus
# CHECK-DEBUG: DW_AT_name{{.*}}"CU1"
# CHECK-DEBUG: DW_TAG_class_type
# CHECK-DEBUG: DW_AT_name{{.*}}"class1"
# CHECK-DEBUG: DW_TAG_base_type
# CHECK-DEBUG: DW_AT_name{{.*}}"int"
# CHECK-DEBUG: DW_AT_name{{.*}}"char"
# CHECK-DEBUG: DW_AT_name{{.*}}"float"
# CHECK-DEBUG: DW_TAG_pointer_type
# CHECK-DEBUG: DW_TAG_variable
# CHECK-DEBUG: DW_AT_name{{.*}}"var1"