Searched refs:getChunk (Results 1 – 15 of 15) sorted by relevance
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Symbols.h | 169 Chunk *getChunk(); 215 SectionChunk *getChunk() const { return *data; } in getChunk() function 235 CommonChunk *getChunk() { return data; } in getChunk() function 282 Chunk *getChunk() { return c; } in getChunk() function 363 Chunk *getChunk() { return file->location; } in getChunk() function 395 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 | 136 if (!sym || !sym->getChunk()) in shouldExport() 186 if (def && def->getChunk() && in writeDefFile() 187 !(def->getChunk()->getOutputCharacteristics() & IMAGE_SCN_MEM_EXECUTE)) in writeDefFile() 265 ctx.symtab.localImportChunks.push_back(wrapimp->getChunk()); in wrapSymbols()
|
H A D | ICF.cpp | 169 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() 295 hash += sym->getChunk()->eqClass[cnt % 2]; in run()
|
H A D | SymbolTable.cpp | 127 if (!d || !d->data || d->file != sc->file || d->getChunk() != sc || in getSymbol() 381 if (refptr && refptr->getChunk()->getSize() == ctx.config.wordsize) { in handleMinGWAutomaticImport() 382 SectionChunk *sc = dyn_cast_or_null<SectionChunk>(refptr->getChunk()); in handleMinGWAutomaticImport() 385 refptr->getChunk()->live = false; in handleMinGWAutomaticImport() 519 localImportChunks.push_back(cast<DefinedLocalImport>(sym)->getChunk()); in resolveRemainingUndefines() 578 if (!from || !from->getChunk()->isCOMDAT() || in initializeEntryThunks() 583 from->getChunk()->setEntryThunk(to); in initializeEntryThunks() 695 os << getSourceLocation(d->getFile(), d->getChunk(), d->getValue(), in reportDuplicate()
|
H A D | MarkLive.cpp | 48 enqueue(sym->getChunk()); in markLive()
|
H A D | MapFile.cpp | 161 } else if (Chunk *chunk = sym->getChunk()) { in getSymbolStrings() 305 Chunk *chunk = entry->getChunk(); in writeMapFile()
|
H A D | Writer.cpp | 501 Chunk *thunkChunk = thunk->getChunk(); in createThunks() 1206 textSec->addChunk(thunk->getChunk()); in appendImportThunks() 1314 Chunk *c = def->getChunk(); in createSymbol() 1734 SectionChunk *sc = b->getChunk(); in writeHeader() 1808 Chunk *c = s->getChunk(); in addSymbolToRVASet() 1856 SectionChunk *sc = dyn_cast<SectionChunk>(d->getChunk()); in maybeAddAddressTakenFunction() 2403 OutputSection *sec = ctx.getOutputSection(tlsSym->getChunk()); in fixTlsAlignment() 2436 OutputSection *sec = ctx.getOutputSection(b->getChunk()); in prepareLoadConfig() 2441 if (b->getChunk()->getAlignment() < expectedAlign) in prepareLoadConfig() 2444 Twine(b->getChunk()->getAlignment()) + " instead)"); in prepareLoadConfig()
|
H A D | LLDMapFile.cpp | 63 ret[s->getChunk()].push_back(s); in getSectionSyms()
|
H A D | Symbols.cpp | 83 return r->getChunk()->live; in isLive()
|
H A D | CallGraphSort.cpp | 230 sc == d->getChunk()) in run()
|
H A D | PDB.cpp | 1142 OutputSection *os = ctx.getOutputSection(def->getChunk()); in createPublic() 1214 if (def && def->isLive() && def->getChunk()) { in addPublicsToPDB() 1556 Chunk *thunkChunk = thunk->getChunk(); in addImportFilesToPDB() 1600 createSectionContrib(ctx, thunk->getChunk(), mod->getModuleIndex()); in addImportFilesToPDB() 1769 if (s->getChunk() == c) in findLineTable()
|
H A D | Driver.cpp | 1136 return dyn_cast_or_null<SectionChunk>(dr->getChunk()); in parseCallGraphFile() 1179 auto *from = dyn_cast_or_null<SectionChunk>(fromSym->getChunk()); in readCallGraphsFromObjectFiles() 1180 auto *to = dyn_cast_or_null<SectionChunk>(toSym->getChunk()); in readCallGraphsFromObjectFiles() 1190 if (SectionChunk *c = dyn_cast_or_null<SectionChunk>(d->getChunk())) in markAddrsig() 1363 if (Chunk *c = def->getChunk()) in maybeExportMinGWSymbols() 2578 CommonChunk *c = dc->getChunk(); in linkerMain()
|
H A D | Chunks.cpp | 428 Chunk *c = sym ? sym->getChunk() : nullptr; in applyRelocation() 662 if (!target->getChunk()) in getRuntimePseudoRelocs()
|
H A D | InputFiles.cpp | 514 SectionChunk *leaderChunk = leader->getChunk(); in handleComdatSelection()
|
/freebsd/contrib/llvm-project/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() 598 const unsigned Imm16 = getChunk(UImm, Shift / 16); in expandMOVImm()
|