| /llvm-project-15.0.7/lld/COFF/ |
| H A D | Symbols.h | 169 Chunk *getChunk(); 214 SectionChunk *getChunk() const { return *data; } in getChunk() function 234 CommonChunk *getChunk() { return data; } in getChunk() function 285 Chunk *getChunk() { return c; } in getChunk() function 365 Chunk *getChunk() { return file->location; } in getChunk() function 396 Chunk *getChunk() { return data; } in getChunk() function 419 Chunk *getChunk() { return data; } in getChunk() function 450 inline Chunk *Defined::getChunk() { in getChunk() function 453 return cast<DefinedRegular>(this)->getChunk(); in getChunk() 457 return cast<DefinedSynthetic>(this)->getChunk(); in getChunk() [all …]
|
| H A D | MinGW.cpp | 133 if (!sym || !sym->getChunk()) in shouldExport() 181 if (def && def->getChunk() && in writeDefFile() 182 !(def->getChunk()->getOutputCharacteristics() & IMAGE_SCN_MEM_EXECUTE)) in writeDefFile() 258 ctx.symtab.localImportChunks.push_back(wrapimp->getChunk()); in wrapSymbols()
|
| H A D | ICF.cpp | 167 d1->getChunk()->eqClass[cnt % 2] == d2->getChunk()->eqClass[cnt % 2]; in equalsConstant() 192 return d1->getChunk()->eqClass[cnt % 2] == d2->getChunk()->eqClass[cnt % 2]; in equalsVariable() 283 hash += sym->getChunk()->eqClass[cnt % 2]; in run()
|
| H A D | MarkLive.cpp | 47 enqueue(sym->getChunk()); in markLive()
|
| H A D | SymbolTable.cpp | 109 if (!d || !d->data || d->file != sc->file || d->getChunk() != sc || in getSymbol() 364 if (refptr && refptr->getChunk()->getSize() == config->wordsize) { in handleMinGWAutomaticImport() 365 SectionChunk *sc = dyn_cast_or_null<SectionChunk>(refptr->getChunk()); in handleMinGWAutomaticImport() 368 refptr->getChunk()->live = false; in handleMinGWAutomaticImport() 498 localImportChunks.push_back(cast<DefinedLocalImport>(sym)->getChunk()); in resolveRemainingUndefines() 660 os << getSourceLocation(d->getFile(), d->getChunk(), d->getValue(), in reportDuplicate()
|
| H A D | MapFile.cpp | 159 } else if (Chunk *chunk = sym->getChunk()) { in getSymbolStrings() 301 Chunk *chunk = entry->getChunk(); in writeMapFile()
|
| H A D | LLDMapFile.cpp | 62 ret[s->getChunk()].push_back(s); in getSectionSyms()
|
| H A D | Symbols.cpp | 80 return r->getChunk()->live; in isLive()
|
| H A D | Writer.cpp | 460 Chunk *thunkChunk = thunk->getChunk(); in createThunks() 1054 textSec->addChunk(thunk->getChunk()); in appendImportThunks() 1150 Chunk *c = def->getChunk(); in createSymbol() 1486 SectionChunk *sc = b->getChunk(); in writeHeader() 1560 Chunk *c = s->getChunk(); in addSymbolToRVASet() 1606 SectionChunk *sc = dyn_cast<SectionChunk>(d->getChunk()); in maybeAddAddressTakenFunction() 2082 OutputSection *sec = ctx.getOutputSection(tlsSym->getChunk()); in fixTlsAlignment()
|
| H A D | CallGraphSort.cpp | 228 sc == d->getChunk()) in run()
|
| H A D | PDB.cpp | 1128 OutputSection *os = ctx.getOutputSection(def->getChunk()); in createPublic() 1188 if (def && def->isLive() && def->getChunk()) { in addPublicsToPDB() 1525 Chunk *thunkChunk = thunk->getChunk(); in addImportFilesToPDB() 1569 createSectionContrib(ctx, thunk->getChunk(), mod->getModuleIndex()); in addImportFilesToPDB() 1717 if (s->getChunk() == c) in findLineTable()
|
| H A D | Driver.cpp | 1122 return dyn_cast_or_null<SectionChunk>(dr->getChunk()); in parseCallGraphFile() 1165 auto *from = dyn_cast_or_null<SectionChunk>(fromSym->getChunk()); in readCallGraphsFromObjectFiles() 1166 auto *to = dyn_cast_or_null<SectionChunk>(toSym->getChunk()); in readCallGraphsFromObjectFiles() 1176 if (SectionChunk *c = dyn_cast_or_null<SectionChunk>(d->getChunk())) in markAddrsig() 1343 if (Chunk *c = def->getChunk()) in maybeExportMinGWSymbols() 2360 CommonChunk *c = dc->getChunk(); in linkerMain()
|
| H A D | Chunks.cpp | 389 Chunk *c = sym ? sym->getChunk() : nullptr; in applyRelocation()
|
| H A D | InputFiles.cpp | 474 SectionChunk *leaderChunk = leader->getChunk(); in handleComdatSelection()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64ExpandImm.cpp | 22 static uint64_t getChunk(uint64_t Imm, unsigned ChunkIdx) { in getChunk() function 51 ++Counts[getChunk(UImm, Idx)]; in tryToreplicateChunks() 159 int64_t Chunk = getChunk(UImm, Idx); in trySequenceOfOnes() 193 const uint64_t Chunk = getChunk(UImm, Idx); in trySequenceOfOnes() 226 Insn.push_back({ AArch64::MOVKXi, getChunk(UImm, FirstMovkIdx), in trySequenceOfOnes() 235 Insn.push_back({ AArch64::MOVKXi, getChunk(UImm, SecondMovkIdx), in trySequenceOfOnes() 368 const unsigned Imm16 = getChunk(UImm, Shift / 16); in expandMOVImm()
|
| /llvm-project-15.0.7/lld/wasm/ |
| H A D | Symbols.cpp | 126 InputChunk *Symbol::getChunk() const { in getChunk() function in lld::wasm::Symbol 138 if (InputChunk *c = getChunk()) in isDiscarded() 150 if (InputChunk *c = getChunk()) in isLive() 166 if (InputChunk *c = getChunk()) { in markLive()
|
| H A D | MapFile.cpp | 68 ret[dr->getChunk()].push_back(dr); in getSectionSyms() 80 auto *chunk = syms[i]->getChunk(); in getSymbolStrings()
|
| H A D | MarkLive.cpp | 71 if (InputChunk *chunk = sym->getChunk()) in enqueue()
|
| H A D | Symbols.h | 96 InputChunk *getChunk() const;
|