this review is extracted from D86539. 1. Rename AccelTableKind to DwarfLinkerAccelTableKind (to differentiate from AccelTableKind from CodeGen/AsmPrinter/DwarfDebug.h) 2. Add None value to the DwarfLinkerAccelTableKind. 3. added 'None' value for 'accelerator' option of dsymutil. Differential Revision: https://reviews.llvm.org/D125474
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
RUN: dsymutil -accelerator=Dwarf -oso-prepend-path=%p/.. %p/../Inputs/basic.macho.x86_64 -o %t.dwarf.dSYM
|
|
RUN: dsymutil -accelerator=Apple -oso-prepend-path=%p/.. %p/../Inputs/basic.macho.x86_64 -o %t.apple.dSYM
|
|
RUN: dsymutil -accelerator=None -oso-prepend-path=%p/.. %p/../Inputs/basic.macho.x86_64 -o %t.none.dSYM
|
|
|
|
RUN: llvm-dwarfdump -verify %t.dwarf.dSYM
|
|
RUN: llvm-dwarfdump -verify %t.apple.dSYM
|
|
RUN: llvm-dwarfdump -verify %t.none.dSYM
|
|
|
|
RUN: llvm-dwarfdump -debug-names %t.dwarf.dSYM | FileCheck %s -check-prefixes=NAMES,DWARF
|
|
RUN: llvm-dwarfdump -apple-names -apple-namespaces -apple-types %t.apple.dSYM | FileCheck %s -check-prefixes=NAMES,APPLE
|
|
RUN: llvm-dwarfdump -a %t.none.dSYM | FileCheck %s -check-prefixes=NONE
|
|
|
|
RUN: dsymutil -update -accelerator=Dwarf %t.apple.dSYM
|
|
RUN: dsymutil -update -accelerator=Apple %t.dwarf.dSYM
|
|
RUN: dsymutil -update -accelerator=None %t.none.dSYM
|
|
|
|
RUN: llvm-dwarfdump -verify %t.dwarf.dSYM
|
|
RUN: llvm-dwarfdump -verify %t.apple.dSYM
|
|
RUN: llvm-dwarfdump -verify %t.none.dSYM
|
|
|
|
RUN: llvm-dwarfdump -debug-names %t.apple.dSYM | FileCheck %s -check-prefixes=NAMES,DWARF
|
|
RUN: llvm-dwarfdump -apple-names -apple-namespaces -apple-types %t.dwarf.dSYM | FileCheck %s -check-prefixes=NAMES,APPLE
|
|
RUN: llvm-dwarfdump -a %t.none.dSYM | FileCheck %s -check-prefixes=NONE
|
|
|
|
DWARF: .debug_names contents:
|
|
DWARF: Compilation Unit offsets [
|
|
DWARF: CU[0]
|
|
DWARF: CU[1]
|
|
DWARF: CU[2]
|
|
DWARF: ]
|
|
|
|
APPLE-DAG: .apple_names contents:
|
|
APPLE-DAG: .apple_types contents:
|
|
APPLE-DAG: .apple_namespaces contents:
|
|
|
|
NAMES-DAG: "private_int"
|
|
NAMES-DAG: "baz"
|
|
NAMES-DAG: "int"
|
|
NAMES-DAG: "bar"
|
|
NAMES-DAG: "foo"
|
|
NAMES-DAG: "inc"
|
|
NAMES-DAG: "val"
|
|
NAMES-DAG: "main"
|
|
NAMES-DAG: "char"
|
|
|
|
NONE-NOT: .debug_names
|
|
NONE-NOT: .apple_names
|
|
NONE-NOT: .apple_types
|
|
NONE-NOT: .apple_namespaces
|
|
NONE-NOT: .apple_objc
|
|
NONE-NOT: .debug_pubnames
|
|
NONE-NOT: .debug_types
|
|
NONE-NOT: .debug_gnu_pubnames
|
|
NONE-NOT: .debug_gnu_types
|