Home
last modified time | relevance | path

Searched full:sectionnumber (Results 1 – 25 of 111) sorted by relevance

12345

/aosp_15_r20/build/soong/symbol_inject/
H A Dpe_symboldata_test.go56 &pe.Symbol{Name: ".file", Value: 0x35, SectionNumber: -2, Type: 0x0, StorageClass: 0x67},
57 …&pe.Symbol{Name: "__mingw_invalidParameterHandler", Value: 0x0, SectionNumber: 1, Type: 0x20, Stor…
58 &pe.Symbol{Name: "pre_c_init", Value: 0x10, SectionNumber: 1, Type: 0x20, StorageClass: 0x3},
59 &pe.Symbol{Name: "managedapp", Value: 0x8, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
60 &pe.Symbol{Name: "pre_cpp_init", Value: 0x130, SectionNumber: 1, Type: 0x20, StorageClass: 0x3},
61 &pe.Symbol{Name: "envp", Value: 0x18, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
62 &pe.Symbol{Name: "argv", Value: 0x20, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
63 &pe.Symbol{Name: "argc", Value: 0x28, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
64 &pe.Symbol{Name: "startinfo", Value: 0x0, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
65 &pe.Symbol{Name: "argret", Value: 0x10, SectionNumber: 6, Type: 0x0, StorageClass: 0x3},
[all …]
H A Dpe_test.go58 …&pe.Symbol{Name: "_soong_build_number", Value: 0x20, SectionNumber: 2, Type: 0x0, StorageClass: 0x…
59 &pe.Symbol{Name: ".data", Value: 0x20, SectionNumber: 2, Type: 0x0, StorageClass: 0x3},
60 …&pe.Symbol{Name: "_adb_device_banner", Value: 0xa0, SectionNumber: 2, Type: 0x0, StorageClass: 0x2…
78 …&pe.Symbol{Name: "soong_build_number", Value: 0x20, SectionNumber: 2, Type: 0x0, StorageClass: 0x2…
97 …&pe.Symbol{Name: "soong_build_number", Value: 0x20, SectionNumber: 2, Type: 0x0, StorageClass: 0x2…
98 …&pe.Symbol{Name: "_adb_device_banner", Value: 0x30, SectionNumber: 3, Type: 0x0, StorageClass: 0x2…
116 …&pe.Symbol{Name: "_adb_device_banner", Value: 0xa0, SectionNumber: 2, Type: 0x0, StorageClass: 0x2…
117 …&pe.Symbol{Name: "soong_build_number", Value: 0x20, SectionNumber: 2, Type: 0x0, StorageClass: 0x2…
H A Dpe.go43 if symbols[i].SectionNumber != symbols[j].SectionNumber {
44 return symbols[i].SectionNumber < symbols[j].SectionNumber
61 if symbol.SectionNumber > 0 {
68 Section: file.Sections[symbol.SectionNumber-1],
/aosp_15_r20/external/llvm/test/Object/Inputs/COFF/
H A Dsection-aux-symbol.yaml13 SectionNumber: 1
25 SectionNumber: 1
37 SectionNumber: 1
49 SectionNumber: 1
61 SectionNumber: 1
73 SectionNumber: 1
85 SectionNumber: 1
97 SectionNumber: 1
109 SectionNumber: 1
121 SectionNumber: 1
[all …]
H A Dx86-64.yaml48 SectionNumber: 1
62 SectionNumber: 2
76 SectionNumber: 1
84 SectionNumber: 2
92 SectionNumber: 0
100 SectionNumber: 0
108 SectionNumber: 3
H A Di386.yaml39 SectionNumber: 1
53 SectionNumber: 2
67 SectionNumber: 1
75 SectionNumber: 2
83 SectionNumber: 0
91 SectionNumber: 0
H A Dweak-external.yaml17 SectionNumber: 65534
24 SectionNumber: 1
36 SectionNumber: 0
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/objfile/
Dxcoff.go39 switch s.SectionNumber {
47 if s.SectionNumber < 0 || len(f.xcoff.Sections) < int(s.SectionNumber) {
50 sect := f.xcoff.Sections[s.SectionNumber-1]
116 if s.SectionNumber <= 0 {
117 return nil, fmt.Errorf("symbol %s: invalid section number %d", name, s.SectionNumber)
119 if len(f.Sections) < int(s.SectionNumber) {
120 ….Errorf("symbol %s: section number %d is larger than max %d", name, s.SectionNumber, len(f.Section…
136 if ssym.SectionNumber != esym.SectionNumber {
139 sect := f.Sections[ssym.SectionNumber-1]
Dpe.go44 switch s.SectionNumber {
52 if s.SectionNumber < 0 || len(f.pe.Sections) < int(s.SectionNumber) {
55 sect := f.pe.Sections[s.SectionNumber-1]
139 if s.SectionNumber <= 0 {
140 return nil, fmt.Errorf("symbol %s: invalid section number %d", name, s.SectionNumber)
142 if len(f.Sections) < int(s.SectionNumber) {
143 ….Errorf("symbol %s: section number %d is larger than max %d", name, s.SectionNumber, len(f.Section…
159 if ssym.SectionNumber != esym.SectionNumber {
162 sect := f.Sections[ssym.SectionNumber-1]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/link/internal/loadpe/
Dldpe.go489 if int(pesym.SectionNumber) > len(f.Sections) {
492 if pesym.SectionNumber == IMAGE_SYM_DEBUG {
495 if pesym.SectionNumber == IMAGE_SYM_ABSOLUTE && bytes.Equal(pesym.Name[:], []byte("@feat.00")) {
503 if pesym.SectionNumber > 0 {
504 sect = f.Sections[pesym.SectionNumber-1]
515 if pesym.SectionNumber == 0 { // extern
523 } else if pesym.SectionNumber > 0 && int(pesym.SectionNumber) <= len(f.Sections) {
524 sect = f.Sections[pesym.SectionNumber-1]
537 if sz, ok1 := state.comdats[uint16(pesym.SectionNumber-1)]; ok1 {
567 if sz, ok := state.comdats[uint16(pesym.SectionNumber-1)]; ok {
[all …]
/aosp_15_r20/external/llvm/test/Object/
H A Dobj2yaml.test40 COFF-I386-NEXT: SectionNumber: 1
53 COFF-I386-NEXT: SectionNumber: 2
66 COFF-I386-NEXT: SectionNumber: 1
73 COFF-I386-NEXT: SectionNumber: 2
80 COFF-I386-NEXT: SectionNumber: 0
87 COFF-I386-NEXT: SectionNumber: 0
133 COFF-X86-64-NEXT: SectionNumber: 1
146 COFF-X86-64-NEXT: SectionNumber: 2
159 COFF-X86-64-NEXT: SectionNumber: 1
166 COFF-X86-64-NEXT: SectionNumber: 2
[all …]
H A Dyaml2obj-coff-multi-doc.test27 SectionNumber: 1
40 SectionNumber: 1
47 SectionNumber: 0
67 SectionNumber: 1
80 SectionNumber: 1
87 SectionNumber: 0
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ExecutionEngine/Orc/
DMachOBuilder.h113 return S->SectionNumber; in getSectionId()
157 size_t SectionNumber = 0; member
314 size_t SectionNumber = 0; in layout() local
317 ++SectionNumber; in layout()
318 Sec->SectionNumber = SectionNumber; in layout()
322 Sym.n_sect = SectionNumber; in layout()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ExecutionEngine/Orc/
DMachOBuilder.h188 return S->SectionNumber;
232 size_t SectionNumber = 0;
389 size_t SectionNumber = 0;
392 ++SectionNumber;
393 Sec->SectionNumber = SectionNumber;
397 Sym.n_sect = SectionNumber;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ExecutionEngine/Orc/
DMachOBuilder.h188 return S->SectionNumber;
232 size_t SectionNumber = 0;
389 size_t SectionNumber = 0;
392 ++SectionNumber;
393 Sec->SectionNumber = SectionNumber;
397 Sym.n_sect = SectionNumber;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ExecutionEngine/Orc/
DMachOBuilder.h188 return S->SectionNumber;
232 size_t SectionNumber = 0;
389 size_t SectionNumber = 0;
392 ++SectionNumber;
393 Sec->SectionNumber = SectionNumber;
397 Sym.n_sect = SectionNumber;
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
Dmpeg2structs.h80 BYTE SectionNumber; member
108 BYTE SectionNumber; member
130 BYTE SectionNumber; member
150 BYTE SectionNumber; member
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/xcoff/
Dfile.go51 SectionNumber int member
291 sym.SectionNumber = int(se.Nscnum)
311 sym.SectionNumber = int(se.Nscnum)
328 if sym.SectionNumber > int(nscns) {
331 if sym.SectionNumber == 0 {
334 sym.Value -= f.Sections[sym.SectionNumber-1].VirtualAddress
475 if i := sym.SectionNumber - 1; 0 <= i && i < len(f.Sections) {
/aosp_15_r20/external/cronet/build/toolchain/win/
H A Dml.py149 'SectionNumber', # Note: Signed!
166 # Note: sym.SectionNumber is 1-based, debug_section_index is 0-based.
167 if sym.SectionNumber - 1 == debug_section_index:
177 elif sym.SectionNumber > debug_section_index:
178 sym = Subtract(sym, SectionNumber=1)
/aosp_15_r20/external/angle/build/toolchain/win/
H A Dml.py149 'SectionNumber', # Note: Signed!
166 # Note: sym.SectionNumber is 1-based, debug_section_index is 0-based.
167 if sym.SectionNumber - 1 == debug_section_index:
177 elif sym.SectionNumber > debug_section_index:
178 sym = Subtract(sym, SectionNumber=1)
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/link/internal/loadxcoff/
Dldxcoff.go164 if s.SectionNumber == -2 {
168 return sym.Sxxx, "unrecognised StorageClass for sectionNumber = -2"
173 if s.SectionNumber == 0 {
177 sectType := f.Sections[s.SectionNumber-1].SectionHeader.Type
/aosp_15_r20/prebuilts/go/linux-x86/src/debug/pe/
Dsymbol.go22 SectionNumber int16 member
135 SectionNumber: sym.SectionNumber,
149 SectionNumber int16 member
/aosp_15_r20/external/llvm/test/tools/llvm-ar/Inputs/
H A Dcoff.yaml21 SectionNumber: 1
33 SectionNumber: 2
45 SectionNumber: 3
/aosp_15_r20/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1103 int SectionNumber = 0; in printSections() local
1105 ++SectionNumber; in printSections()
1112 W.printNumber("Number", SectionNumber); in printSections()
1155 int SectionNumber = 0; in printRelocations() local
1157 ++SectionNumber; in printRelocations()
1164 W.startLine() << "Section (" << SectionNumber << ") " << Name << " {\n"; in printRelocations()
1217 getSectionName(const llvm::object::COFFObjectFile *Obj, int32_t SectionNumber, in getSectionName() argument
1225 if (SectionNumber == llvm::COFF::IMAGE_SYM_DEBUG) in getSectionName()
1227 if (SectionNumber == llvm::COFF::IMAGE_SYM_ABSOLUTE) in getSectionName()
1229 if (SectionNumber == llvm::COFF::IMAGE_SYM_UNDEFINED) in getSectionName()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DXCOFFObjectFile.cpp218 int16_t SectNum = SymEntPtr->SectionNumber; in getSymbolSection()
444 int16_t SectionNum = SymEntPtr->SectionNumber; in getSymbolSectionName()
462 bool XCOFFObjectFile::isReservedSectionNumber(int16_t SectionNumber) { in isReservedSectionNumber() argument
463 return (SectionNumber <= 0 && SectionNumber >= -2); in isReservedSectionNumber()
747 return OwningObjectPtr->toSymbolEntry(SymEntDataRef)->SectionNumber; in getSectionNumber()

12345