Home
last modified time | relevance | path

Searched refs:sect (Results 1 – 25 of 25) sorted by relevance

/aosp12/frameworks/compile/mclinker/lib/Core/
H A DModule.cpp39 iterator sect, sectEnd = end(); in getSection() local
40 for (sect = begin(); sect != sectEnd; ++sect) { in getSection()
41 if ((*sect)->name() == pName) in getSection()
42 return *sect; in getSection()
48 const_iterator sect, sectEnd = end(); in getSection() local
49 for (sect = begin(); sect != sectEnd; ++sect) { in getSection()
50 if ((*sect)->name() == pName) in getSection()
51 return *sect; in getSection()
/aosp12/frameworks/compile/mclinker/lib/Script/
H A DUnaryOp.cpp73 const LDSection* sect = NULL; in eval() local
79 sect = in eval()
86 assert(sect != NULL); in eval()
87 res->setValue(sect->addr()); in eval()
95 const LDSection* sect = NULL; in eval() local
101 sect = in eval()
108 assert(sect != NULL); in eval()
109 res->setValue(sect->align()); in eval()
172 sect = in eval()
179 assert(sect != NULL); in eval()
[all …]
H A DBinaryOp.cpp228 SectOperand* sect = llvm::cast<SectOperand>(m_pOperand[0]); in eval() local
231 if (sect->name().compare("text-segment") == 0) in eval()
233 else if (sect->name().compare("data-segment") == 0) in eval()
235 else if (sect->name().compare("bss-segment") == 0) in eval()
238 addr = addressMap.find(sect->name()); in eval()
/aosp12/frameworks/compile/mclinker/lib/LD/
H A DIdenticalCodeFolding.cpp81 LDSection* sect = (*kept).first; in foldIdenticalCode() local
85 sect->setKind(LDFileFormat::Folded); in foldIdenticalCode()
107 LDSection* sect = &(frag_ref->frag()->getParent()->getSection()); in foldIdenticalCode() local
108 if (sect->kind() == LDFileFormat::Folded) { in foldIdenticalCode()
109 size_t kept_index = m_KeptSections[sect].second; in foldIdenticalCode()
126 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in findCandidates()
127 switch ((*sect)->kind()) { in findCandidates()
134 LDSection* target = (*sect)->getLink(); in findCandidates()
136 candidate_map[target] = *sect; in findCandidates()
217 assert(sect != NULL && sect->hasSectionData()); in initConstantContent()
[all …]
H A DGarbageCollection.cpp189 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in getEntrySections()
190 LDSection* section = *sect; in getEntrySections()
220 const LDSection* sect = in getEntrySections() local
222 if (!mayProcessGC(*sect)) in getEntrySections()
224 pEntry.push_back(sect); in getEntrySections()
258 const LDSection* sect = in getEntrySections() local
260 if (!mayProcessGC(*sect)) in getEntrySections()
263 pEntry.push_back(sect); in getEntrySections()
281 if (!mayProcessGC(*sect)) in getEntrySections()
283 pEntry.push_back(sect); in getEntrySections()
[all …]
H A DELFSegmentFactory.cpp52 ELFSegment::iterator sect, sectEnd = (*segment)->end(); in find() local
53 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) { in find()
54 if (*sect == pSection) in find()
68 ELFSegment::const_iterator sect, sectEnd = (*segment)->end(); in find() local
69 for (sect = (*segment)->begin(); sect != sectEnd; ++sect) { in find()
70 if (*sect == pSection) in find()
H A DBranchIslandFactory.cpp41 for (Module::iterator sect = pModule.begin(), sectEnd = pModule.end(); in group() local
42 sect != sectEnd; ++sect) { in group()
43 if (((*sect)->kind() == LDFileFormat::TEXT) && (*sect)->hasSectionData()) { in group()
44 SectionData& sd = *((*sect)->getSectionData()); in group()
H A DELFObjectWriter.cpp150 ELFSegment::iterator sect, sectEnd = (*seg)->end(); in writeObject() local
151 for (sect = (*seg)->begin(); sect != sectEnd; ++sect) in writeObject()
152 writeSection(pModule, pOutput, *sect); in writeObject()
157 Module::iterator sect, sectEnd = pModule.end(); in writeObject() local
158 for (sect = pModule.begin(); sect != sectEnd; ++sect) in writeObject()
159 writeSection(pModule, pOutput, *sect); in writeObject()
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp69 LDSection* sect = *it; in create() local
70 if (sect->type() == llvm::ELF::SHT_ARM_EXIDX) { in create()
71 ARMExSectionTuple* exTuple = exMap->getOrCreateByExSection(*sect); in create()
72 exTuple->setExIdxSection(sect); in create()
73 exTuple->setTextSection(sect->getLink()); in create()
74 if (sect->getLink() == NULL) { in create()
75 fatal(diag::eh_missing_text_section) << sect->name() << pInput.name(); in create()
/aosp12/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp342 for (sect = (*obj)->context()->sectBegin(); sect != sectEnd; ++sect) { in mergeSections()
343 switch ((*sect)->kind()) { in mergeSections()
354 if (!(*sect)->hasRelocData()) in mergeSections()
358 (*sect)->getLink()->kind() == LDFileFormat::Folded) in mergeSections()
359 (*sect)->setKind(LDFileFormat::Ignore); in mergeSections()
369 if (!(*sect)->hasEhFrame()) in mergeSections()
385 (*sect)->setKind(LDFileFormat::Debug); in mergeSections()
389 if (!(*sect)->hasSectionData()) in mergeSections()
647 Module::iterator sect, sEnd = m_pModule->end(); in prelayout() local
648 for (sect = m_pModule->begin(); sect != sEnd; ++sect) { in prelayout()
[all …]
H A DSectionMap.cpp313 StringList::const_iterator sect, sectEnd = pInput.spec().sections().end(); in matched() local
314 for (sect = pInput.spec().sections().begin(); sect != sectEnd; ++sect) { in matched()
315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) { in matched()
/aosp12/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp703 for (sect = pModule.begin(); sect != sectEnd; ++sect) { in sizeShstrtab()
1805 load_seg->append(sect); in createProgramHdrs()
1831 ++sect) { in createProgramHdrs()
1869 for (sect = sectBegin; sect != sectEnd; ++sect) { in createProgramHdrs()
1917 for (sect = (*seg)->rbegin(); sect != sectREnd; ++sect) { in setupProgramHdrs()
1922 (*seg)->setFilesz((*sect)->offset() + (*sect)->size() - (*seg)->offset()); in setupProgramHdrs()
1953 for (sect = (*seg)->begin(); sect != sectEnd; ++sect) { in setupProgramHdrs()
1955 --sect; in setupProgramHdrs()
1963 --sect; in setupProgramHdrs()
1964 (*seg)->setFilesz((*sect)->offset() + (*sect)->size() - in setupProgramHdrs()
[all …]
/aosp12/frameworks/compile/mclinker/include/mcld/LD/
H A DIdenticalCodeFolding.h39 FoldingCandidate() : sect(NULL), reloc_sect(NULL), obj(NULL) {} in FoldingCandidate()
41 : sect(pCode), reloc_sect(pReloc), obj(pInput) {} in FoldingCandidate()
50 LDSection* sect; variable
/aosp12/bionic/libc/dns/nameser/
H A Dns_parse.c47 static void setsection(ns_msg *msg, ns_sect sect);
268 setsection(ns_msg *msg, ns_sect sect) { in setsection() argument
269 msg->_sect = sect; in setsection()
270 if (sect == ns_s_max) { in setsection()
275 msg->_msg_ptr = msg->_sections[(int)sect]; in setsection()
/aosp12/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp317 for (Module::iterator sect = pModule.begin(), sectEnd = pModule.end(); in scanErrata() local
318 sect != sectEnd; ++sect) { in scanErrata()
319 if (((*sect)->kind() == LDFileFormat::TEXT) && (*sect)->hasSectionData()) { in scanErrata()
320 SectionData* sd = (*sect)->getSectionData(); in scanErrata()
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dfd.h24 unsigned int size, sect, head, track, stretch; member
/aosp12/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp1154 LDSection* sect = *it; in saveTPOffset() local
1155 if (sect->flag() & llvm::ELF::SHF_TLS) { in saveTPOffset()
1156 m_TpOffsetMap[&pInput] = sect->addr() + 0x7000; in saveTPOffset()
1157 m_DtpOffsetMap[&pInput] = sect->addr() + 0x8000; in saveTPOffset()
/aosp12/packages/apps/TV/libs/m2/
H A Djavac-shaded-9-dev-r4023-3.jarorg/openjdk/tools/sjavac/server/log/LoggingOutputStream.class LoggingOutputStream.java package ...
/aosp12/packages/apps/TV/libs/
H A Dgoogle-java-format-1.7-all-deps.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
H A Dpt_PT_wordlist.combined.gz1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ...
H A Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
H A Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
H A Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
H A Dro_wordlist.combined.gz1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ...