| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | UUID.cpp | 38 UUID UUID::fromCvRecord(UUID::CvRecordPdb70 debug_info) { in fromCvRecord() argument 39 llvm::sys::swapByteOrder(debug_info.Uuid.Data1); in fromCvRecord() 40 llvm::sys::swapByteOrder(debug_info.Uuid.Data2); in fromCvRecord() 41 llvm::sys::swapByteOrder(debug_info.Uuid.Data3); in fromCvRecord() 42 llvm::sys::swapByteOrder(debug_info.Age); in fromCvRecord() 43 if (debug_info.Age) in fromCvRecord() 44 return UUID::fromOptionalData(&debug_info, sizeof(debug_info)); in fromCvRecord() 45 return UUID::fromOptionalData(&debug_info.Uuid, sizeof(debug_info.Uuid)); in fromCvRecord()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ARM/ |
| H A D | dwarfdump-rela.yaml | 22 - Name: .debug_info 30 - Name: .rela.debug_info 35 Info: .debug_info 50 Symbol: .debug_info 62 - Name: .debug_info 65 - Name: .rela.debug_info 70 - Name: .debug_info 72 Section: .debug_info 81 Section: .debug_info
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/DWARF/ |
| H A D | debug-info.yaml | 208 debug_info: 449 debug_info: 476 debug_info: 541 debug_info: 567 debug_info: 617 debug_info: 655 debug_info: 688 debug_info: 717 debug_info: 811 debug_info: [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/wasm/ |
| H A D | basic-keep.test | 3 # RUN: llvm-objcopy --strip-all --keep-section=.debug_info %t %t2 7 # CHECK: Name: .debug_info 11 # RUN: llvm-objcopy --remove-section=.debug_info --keep-section=.debug_info %t %t2 15 # KEEP: Name: .debug_info 25 Name: .debug_info
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | emit-relocs-gc.s | 4 ## Show that we emit .rela.bar, .rela.text and .rela.debug_info when GC is disabled. 9 # NOGC: .rela.debug_info 12 ## .rela.text because we keep .text. We keep .rela.debug_info because we keep 13 ## non-SHF_ALLOC .debug_info. 20 # GC-NEXT: .debug_info 21 # GC-NEXT: .rela.debug_info 34 .section .debug_info,"",@progbits
|
| H A D | compressed-input-err.s | 4 # TOO-SHORT: error: {{.*}}.o:(.debug_info): corrupted compressed section 8 # UNKNOWN: error: {{.*}}.o:(.debug_info): unsupported compression type (3) 14 # CHECK: error: {{.*}}.o:(.debug_info): uncompress failed: zlib error: Z_DATA_ERROR 24 Name: .debug_info 37 Name: .debug_info 50 Name: .debug_info
|
| H A D | compressed-input-alignment.test | 11 # CHECK: Name: .debug_info 33 ## YAML below is produced from the following code. AddressAlign of .debug_info is 8, 37 ## .section .debug_info,"",@progbits 48 - Name: .debug_info 63 - Name: .debug_info
|
| H A D | dead-reloc-in-nonalloc.s | 6 # RUN: ld.lld --icf=all -z dead-reloc-in-nonalloc=.debug_info=0xaaaaaaaa \ 10 # RUN: ld.lld --icf=all -z dead-reloc-in-nonalloc=.debug_info=2863311530 \ 16 # AA: Contents of section .debug_info: 22 # RUN: ld.lld --icf=all -z dead-reloc-in-nonalloc=.debug_info=0 %t.o -o %tzero 25 # ZERO: Contents of section .debug_info: 63 .section .debug_info
|
| H A D | x86-64-reloc-debug-overflow.s | 6 # CHECK: (.debug_info+0x0): relocation R_X86_64_32 out of range: 281474976710656 is not in [0, 4294… 8 .section .debug_info,"",@progbits 9 .long .debug_info + 0x1000000000000
|
| H A D | gdb-index-invalid-section-index.yaml | 51 - Name: .debug_info 55 - Name: .rela.debug_info 60 Info: .debug_info 126 - Name: .debug_info 128 Section: .debug_info
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/builders/ |
| H A D | builder.py | 128 def _getDebugInfoArgs(self, debug_info): argument 129 if debug_info is None: 131 if debug_info == "dwarf": 133 if debug_info == "dwo": 135 if debug_info == "gmodules": 139 def getBuildCommand(self, debug_info, architecture=None, compiler=None, argument 141 debug_info_args = self._getDebugInfoArgs(debug_info)
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/RISCV/ |
| H A D | riscv-relocs.yaml | 1 # Tests RISC-V relocations. We provide a .debug_info section with multiple 8 # .debug_info sections. To do that create a test.s which matches the assembly 29 # .section .debug_info,"",@progbits 62 - Name: .debug_info 65 - Name: .rela.debug_info 70 Info: .debug_info 174 Section: .debug_info 178 Section: .debug_info 182 Section: .debug_info 186 Section: .debug_info [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDwo.cpp | 58 DWARFDebugInfo &debug_info = DebugInfo(); in FindSingleCompileUnit() local 62 if (!debug_info.ContainsTypeUnits() && debug_info.GetNumUnits() == 1) in FindSingleCompileUnit() 63 return llvm::cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(0)); in FindSingleCompileUnit() 68 for (size_t i = 0; i < debug_info.GetNumUnits(); ++i) { in FindSingleCompileUnit() 70 llvm::dyn_cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(i))) { in FindSingleCompileUnit()
|
| /llvm-project-15.0.7/lldb/test/Shell/ObjectFile/ELF/ |
| H A D | aarch64-relocations.yaml | 4 # CHECK: Name: .debug_info 32 - Name: .debug_info 36 - Name: .rela.debug_info 40 Info: .debug_info 87 - Name: .debug_info 89 Section: .debug_info
|
| /llvm-project-15.0.7/lld/test/ELF/invalid/ |
| H A D | invalid-debug-relocations.test | 5 # CHECK: error: {{.*}}invalid-debug-relocations.test.tmp.o:(.debug_info+0x0): unknown relocation (2… 20 Name: .debug_info 25 Name: .rel.debug_info 27 Info: .debug_info
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwp/X86/ |
| H A D | compressfail.test | 7 # ERR1: error: failure while decompressing compressed section: '.debug_info.dwo', corrupted compres… 8 # ERR2: error: failure while decompressing compressed section: '.debug_info.dwo', zlib error: Z_DAT… 17 - Name: .debug_info.dwo 29 - Name: .debug_info.dwo
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | dbg-asm.s | 13 # CHECK-COFF: Section {{.*}} .debug_info { 18 # CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_info 23 # CHECK-ELF: Section {{.*}} .rel.debug_info { 28 # CHECK-ELF: 0x6 R_386_32 .debug_info
|
| H A D | split-dwarf-cross-unit-reference.ll | 36 ; * no relocations are emitted for the debug_info.dwo section no matter what 37 ; * one debug_info->debug_info relocation in debug_info no matter what (for 39 ; * debug_info uses relocations and ref_addr no matter what 40 ; * debug_info.dwo uses relocations for types as well as abstract subprograms 45 ; DWO: .debug_info.dwo contents: 46 ; CHECK-NOT: .rel{{a?}}.debug_info.dwo 47 ; CHECK: RELOCATION RECORDS FOR [.debug_info]: 49 ; Expect one relocation in debug_info, from the inlined f1 in foo to its 51 ; CHECK: R_X86_64_32 .debug_info 53 ; CHECK-NOT: .debug_info [all …]
|
| H A D | invalid-cu-length-dwp.s | 21 .section .debug_info.dwo, "e", @progbits 55 .long .LCUBegin-.debug_info.dwo # Offset in .debug_info.dwo 58 .long .LCUEnd-.LCUBegin-1 # Size of the contribution in .debug_info.dwo (invalid)
|
| H A D | dwp-dwarf64.s | 5 # CHECK: .debug_info.dwo contents: 31 .section .debug_info.dwo, "e", @progbits 66 .long .LCUBegin-.debug_info.dwo # Offset in .debug_info.dwo
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/ |
| H A D | section_sizes_elf.test | 12 # CHECK-NEXT:.debug_info 17 (1.62%) 17 # CHECK-NEXT:.debug_info.dwo 9 (0.86%) 30 - Name: .debug_info 48 - Name: .debug_info.dwo
|
| /llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/DWARF/ |
| H A D | debug-ranges.yaml | 7 ## the address_size of debug_info is 4. 14 ## address_size of debug_info is 4. 21 ## the address_size of debug_info is 8. 30 ## address_size of debug_info is 8. 38 ## the address_size of debug_info is 8. 45 ## address_size of debug_info is 8. 52 ## the address_size of debug_info is 4. 60 ## address_size of debug_info is 4. 90 ## of compilation units. We add the .debug_info section to 92 debug_info: [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/linkerscript/ |
| H A D | compress-debug-sections-custom.s | 3 ## NOTE GNU ld makes .debug_str and .debug_info SHF_ALLOC due to `. += 10`. 18 # S = 0x53 - offset of .debug_info section for this file (the size of 19 # the preceding .debug_info from the other input file is 0x43, and the 34 .section .debug_info,"",@progbits
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | decorators.py | 175 debug_info=None, argument 191 debug_info, self.getDebugInfo()) 227 (debug_info, skip_for_debug_info, "debug info format"), 275 debug_info=None, argument 285 debug_info=debug_info, 302 debug_info=None, argument 312 debug_info=debug_info, 410 debug_info=None, argument 417 debug_info=debug_info) 420 def expectedFailureDarwin(bugnumber=None, compilers=None, debug_info=None, archs=None): argument [all …]
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | invalid-relocations.test | 18 Name: .debug_info 23 Name: .rel.debug_info 25 Info: .debug_info
|