/llvm-project/llvm/test/tools/llvm-readobj/COFF/ |
H A D | imports.test | 6 X86-NEXT: ImportLookupTableRVA: 0x2108 7 X86-NEXT: ImportAddressTableRVA: 0x2000 17 X86-NEXT: ImportLookupTableRVA: 0x2124 18 X86-NEXT: ImportAddressTableRVA: 0x201C 23 X86-NEXT: ImportLookupTableRVA: 0x212C 24 X86-NEXT: ImportAddressTableRVA: 0x2024 25 X86-NEXT: Symbol: Func1 (0) 31 X86-NEXT: Attributes: 0x1 32 X86-NEXT: ModuleHandle: 0x301C 33 X86-NEXT: ImportAddressTable: 0x3010 [all …]
|
/llvm-project/lld/test/COFF/ |
H A D | delayimports-armnt.yaml | 16 # IMPORT-NEXT: Attributes: 0x1 17 # IMPORT-NEXT: ModuleHandle: 0x3008 18 # IMPORT-NEXT: ImportAddressTable: 0x3010 19 # IMPORT-NEXT: ImportNameTable: 0x2044 20 # IMPORT-NEXT: BoundDelayImportTable: 0x0 21 # IMPORT-NEXT: UnloadDelayImportTable: 0x0 23 # IMPORT-NEXT: Symbol: function (0) 24 # IMPORT-NEXT: Address: 0x40100D 31 # BASEREL-NEXT: Address: 0x1000 35 # BASEREL-NEXT: Address: 0x100C [all …]
|
H A D | delayimporttables.yaml | 14 # CHECK-NEXT: Attributes: 0x1 15 # CHECK-NEXT: ModuleHandle: 0x3000 16 # CHECK-NEXT: ImportAddressTable: 0x3010 17 # CHECK-NEXT: ImportNameTable: 0x2070 18 # CHECK-NEXT: BoundDelayImportTable: 0x0 19 # CHECK-NEXT: UnloadDelayImportTable: 0x0 21 # CHECK-NEXT: Symbol: one (0) 22 # CHECK-NEXT: Address: 0x14000104D 25 # CHECK-NEXT: Symbol: two (0) 26 # CHECK-NEXT: Address: 0x140001059 [all …]
|
/llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
H A D | preserve-segment-contents.test | 16 # RUN: od -t x1 -j 0x2000 -N 28 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK1 -DPA… 17 # RUN: od -t x1 -j 0x2100 -N 12 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK2 -DPA… 18 # RUN: od -t x1 -j 0x2200 -N 4 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK3 -DPA… 19 # RUN: od -t x1 -j 0x2300 -N 12 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK4 -DPA… 20 # RUN: od -t x1 -j 0x3000 -N 68 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK5 -DPA… 21 # RUN: od -t x1 -j 0x4000 -N 60 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK6 -DPA… 22 # RUN: od -t x1 -j 0x5000 -N 60 %t.stripped | FileCheck %s --ignore-case --check-prefix=CHECK7 -DPA… 27 # RUN: echo " 0x2000, 0x2008, 0x200C, 0x2018, 0x2104, 0x2300," >> %t.py 28 # RUN: echo " 0x3008, 0x3010, 0x3018, 0x3020, 0x3028, 0x302C, 0x3034, 0x303C," >> %t.py 29 # RUN: echo " 0x4000, 0x4008, 0x4010, 0x4014, 0x401C, 0x4024, 0x4034," >> %t.py [all …]
|
/llvm-project/lld/test/ELF/ |
H A D | i386-plt.s | 20 // CHECK-NEXT: Address: 0x4011E0 23 // CHECK-NEXT: Link: 0 24 // CHECK-NEXT: Info: 0 33 // CHECK-NEXT: Address: 0x403278 34 // CHECK-NEXT: Offset: 0x278 36 // CHECK-NEXT: Link: 0 37 // CHECK-NEXT: Info: 0 39 // CHECK-NEXT: EntrySize: 0 42 // &.got.plt[3] = 0x403278 + 12 = 0x403284 43 // &.got.plt[4] = 0x403278 + 16 = 0x403288 [all …]
|
/llvm-project/llvm/unittests/DebugInfo/LogicalView/ |
H A D | LogicalElementsTest.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 68 uint32_t LineNumber = 0, LVElement *Type = nullptr); 184 EXPECT_EQ(Root->lineCount(), 0u); in addElements() 186 EXPECT_EQ(Root->symbolCount(), 0u); in addElements() 187 EXPECT_EQ(Root->typeCount(), 0u); in addElements() 197 EXPECT_EQ(CompileUnit->lineCount(), 0u); in addElements() 207 EXPECT_EQ(Namespace->lineCount(), 0u); in addElements() 209 EXPECT_EQ(Namespace->symbolCount(), 0u); in addElements() 231 EXPECT_EQ(NestedScope->scopeCount(), 0u); in addElements() 238 EXPECT_EQ(Enumeration->lineCount(), 0u); in addElements() [all …]
|
H A D | CompareElementsTest.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 71 uint32_t LineNumber = 0, LVElement *Type = nullptr); 236 set(IntegerType, "int", 0x1000); in initElements() 237 set(UnsignedType, "unsigned", 0x1010); in initElements() 238 set(GlobalType, "GlobalType", 0x1020, 1020); in initElements() 239 set(LocalType, "LocalType", 0x1030, 1030); in initElements() 240 set(NestedType, "NestedType", 0x1040, 1040); in initElements() 242 set(TypeDefinitionOne, "INTEGER", 0x1050, 1050, IntegerType); in initElements() 243 set(TypeDefinitionTwo, "INT", 0x1060, 1060, TypeDefinitionOne); in initElements() 245 set(EnumeratorOne, "One", 0x1070, 1070); in initElements() [all …]
|
H A D | WarningInternalTest.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 111 uint32_t LineNumber = 0, LVElement *Type = nullptr); 211 /*SectionOffset=*/0, /*LocDesOffset=*/0); in add() 337 set(IntegerType, "int", 0x1000); in initElements() 340 set(CompileUnit, "foo.cpp", 0x2000); in initElements() 341 set(Function, "foo", 0x2010, 100, IntegerType); in initElements() 342 set(NestedScope, "", 0x2020, 300); in initElements() 345 set(Parameter, "Param", 0x3000, 110, IntegerType); in initElements() 346 set(LocalVariable, "LocalVariable", 0x3020, 120, IntegerType); in initElements() 347 set(NestedVariable, "NestedVariable", 0x3010, 310, IntegerType); in initElements() [all …]
|
H A D | LocationRangesTest.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 30 uint32_t LineNumber = 0, LVElement *Type = nullptr); 78 /*SectionOffset=*/0, /*LocDesOffset=*/0); in add() 210 set(IntegerType, "int", 0x1000); in initElements() 213 set(CompileUnit, "foo.cpp", 0x2000); in initElements() 214 set(Function, "foo", 0x2010, 100, IntegerType); in initElements() 215 set(NestedScope, "", 0x2020, 300); in initElements() 218 set(Parameter, "Param", 0x3000, 110, IntegerType); in initElements() 219 set(LocalVariable, "LocalVariable", 0x3000, 120, IntegerType); in initElements() 220 set(NestedVariable, "NestedVariable", 0x3010, 310, IntegerType); in initElements() [all …]
|
/llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Crashlog/Inputs/interactive_crashlog/ |
H A D | multithread-test.yaml | 3 magic: 0xFEEDFACF 4 cputype: 0x100000C 5 cpusubtype: 0x0 6 filetype: 0x2 9 flags: 0x218085 10 reserved: 0x0 15 vmaddr: 0 17 fileoff: 0 18 filesize: 0 19 maxprot: 0 [all …]
|