| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | AArch64ErrataFix.cpp | 481 InputSectionDescription &isd, std::vector<Patch843419Section *> &patches) { in insertPatches() argument 483 uint64_t prevIsecLimit = isd.sections.front()->outSecOff; in insertPatches() 486 uint64_t outSecAddr = isd.sections.front()->getParent()->addr; in insertPatches() 493 for (const InputSection *isec : isd.sections) { in insertPatches() 515 tmp.reserve(isd.sections.size() + patches.size()); in insertPatches() 521 std::merge(isd.sections.begin(), isd.sections.end(), patches.begin(), in insertPatches() 523 isd.sections = std::move(tmp); in insertPatches() 576 InputSectionDescription &isd) { in patchInputSectionDescription() argument 578 for (InputSection *isec : isd.sections) { in patchInputSectionDescription() 631 if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) { in createFixes() local [all …]
|
| H A D | ARMErrataFix.cpp | 369 InputSectionDescription &isd, std::vector<Patch657417Section *> &patches) { in insertPatches() argument 372 uint64_t prevIsecLimit = isd.sections.front()->outSecOff; in insertPatches() 374 uint64_t outSecAddr = isd.sections.front()->getParent()->addr; in insertPatches() 382 for (const InputSection *isec : isd.sections) { in insertPatches() 402 tmp.reserve(isd.sections.size() + patches.size()); in insertPatches() 408 std::merge(isd.sections.begin(), isd.sections.end(), patches.begin(), in insertPatches() 410 isd.sections = std::move(tmp); in insertPatches() 490 InputSectionDescription &isd) { in patchInputSectionDescription() argument 492 for (InputSection *isec : isd.sections) { in patchInputSectionDescription() 532 if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) { in createFixes() local [all …]
|
| H A D | OutputSections.cpp | 110 auto *isd = cast<InputSectionDescription>(commands.back()); in recordSection() local 111 isd->sectionBases.push_back(isec); in recordSection() 208 auto *isd = dyn_cast<InputSectionDescription>(cmd); in finalizeInputSections() local 209 if (!isd) in finalizeInputSections() 211 isd->sections.reserve(isd->sectionBases.size()); in finalizeInputSections() 212 for (InputSectionBase *s : isd->sectionBases) { in finalizeInputSections() 215 isd->sections.push_back(cast<InputSection>(s)); in finalizeInputSections() 244 isd->sections.push_back(syn); in finalizeInputSections() 256 isd->sectionBases.clear(); in finalizeInputSections() 259 for (InputSection *s : isd->sections) in finalizeInputSections() [all …]
|
| H A D | Relocations.cpp | 380 auto *isd = cast<InputSectionDescription>(osec->commands.back()); in addCopyRelSymbol() local 381 isd->sections.push_back(sec); in addCopyRelSymbol() 2006 if (auto *isd = dyn_cast<InputSectionDescription>(bc)) in forEachInputSectionDescription() local 2007 fn(os, isd); in forEachInputSectionDescription() 2108 outputSections, [&](OutputSection *os, InputSectionDescription *isd) { in mergeThunks() argument 2109 if (isd->thunkSections.empty()) in mergeThunks() 2113 llvm::erase_if(isd->thunkSections, in mergeThunks() 2122 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) in mergeThunks() 2132 tmp.reserve(isd->sections.size() + newThunks.size()); in mergeThunks() 2134 std::merge(isd->sections.begin(), isd->sections.end(), in mergeThunks() [all …]
|
| H A D | LinkerScript.cpp | 636 for (InputSectionDescription *isd : scd->sc.commands) { in computeInputSections() 637 for (InputSectionBase *sec : isd->sectionBases) { in computeInputSections() 697 if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) in discardSynthetic() local 698 for (InputSectionBase *s : computeInputSections(isd, secs, outCmd)) in discardSynthetic() 708 if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) { in createInputSectionList() local 709 isd->sectionBases = computeInputSections(isd, ctx.inputSections, outCmd); in createInputSectionList() 710 for (InputSectionBase *s : isd->sectionBases) in createInputSectionList() 712 ret.insert(ret.end(), isd->sectionBases.begin(), isd->sectionBases.end()); in createInputSectionList() 787 for (InputSectionDescription *isd : sc->sc.commands) { in processSectionCommands() 788 isd->sectionBases = in processSectionCommands() [all …]
|
| H A D | AArch64ErrataFix.h | 31 patchInputSectionDescription(InputSectionDescription &isd); 33 void insertPatches(InputSectionDescription &isd,
|
| H A D | ARMErrataFix.h | 31 patchInputSectionDescription(InputSectionDescription &isd); 33 void insertPatches(InputSectionDescription &isd,
|
| H A D | Writer.cpp | 526 auto *isd = dyn_cast<InputSectionDescription>(cmd); in addSectionSymbols() local 527 if (!isd) in addSectionSymbols() 529 for (InputSectionBase *s : isd->sections) { in addSectionSymbols() 1160 sortISDBySectionOrder(Ctx &ctx, InputSectionDescription *isd, in sortISDBySectionOrder() argument 1168 for (InputSection *isec : isd->sections) { in sortISDBySectionOrder() 1225 isd->sections.clear(); in sortISDBySectionOrder() 1227 isd->sections.push_back(isec); in sortISDBySectionOrder() 1229 isd->sections.push_back(p.first); in sortISDBySectionOrder() 1231 isd->sections.push_back(isec); in sortISDBySectionOrder() 1248 if (auto *isd = dyn_cast<InputSectionDescription>(b)) in sortSection() local [all …]
|
| H A D | MapFile.cpp | 181 if (auto *isd = dyn_cast<InputSectionDescription>(subCmd)) { in writeMapFile() local 182 for (InputSection *isec : isd->sections) { in writeMapFile()
|
| H A D | ScriptParser.cpp | 629 InputSectionDescription *isd = readInputSectionDescription(tok); in readSectionClassDescription() local 630 if (!isd->classRef.empty()) in readSectionClassDescription() 632 isd->classRef + "'"); in readSectionClassDescription() 633 desc->sc.commands.push_back(isd); in readSectionClassDescription() 1066 auto *isd = make<InputSectionDescription>(tok); in readOutputSectionDescription() local 1067 isd->sectionPatterns.push_back({{}, StringMatcher("*")}); in readOutputSectionDescription() 1068 osec->commands.push_back(isd); in readOutputSectionDescription()
|
| H A D | InputSection.h | 477 InputSectionDescription *isd; 483 InputSectionDescription &isd);
|
| H A D | ICF.cpp | 577 if (auto *isd = dyn_cast<InputSectionDescription>(subCmd)) in run() local 578 llvm::erase_if(isd->sections, in run()
|
| H A D | Relocations.h | 183 InputSectionDescription *isd,
|
| H A D | InputSection.cpp | 380 InputSectionDescription &isd) in PotentialSpillSection() argument 383 isd(&isd) {}
|
| /freebsd/contrib/libxo/tests/core/saved/ |
| H A D | test_05.T.out | 8 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.JPu.out | 5 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.J.out | 1 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.JP.out | 5 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.XP.out | 4 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.X.out | 1 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.E.out | 5 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| H A D | test_05.H.out | 1 …ū᷈ pākistān dā dil vī kehā jāndā ē. lahor dariāē rāvī dē kanḍē tē vasdā ē. isdī lōk giṇtī ikk karō…
|
| /freebsd/sys/dev/intpm/ |
| H A D | intpm.c | 109 const struct intsmb_device *isd; in intsmb_probe() local 115 isd = &intsmb_products[i]; in intsmb_probe() 116 if (isd->devid == devid) { in intsmb_probe() 117 device_set_desc(dev, isd->description); in intsmb_probe()
|
| /freebsd/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | SystemZ.cpp | 34 void addPltHeaderSymbols(InputSection &isd) const override;
|
| /freebsd/sys/sys/ |
| H A D | ata.h | 236 /*107*/ u_int16_t isd; member
|