Home
last modified time | relevance | path

Searched refs:getChunk (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/llvm/lld/COFF/
DSymbols.h169 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
362 Chunk *getChunk() { return file->location; } in getChunk() function
394 Chunk *getChunk() { return data; } in getChunk() function
418 Chunk *getChunk() { return data; } in getChunk() function
449 inline Chunk *Defined::getChunk() { in getChunk() function
452 return cast<DefinedRegular>(this)->getChunk(); in getChunk()
456 return cast<DefinedSynthetic>(this)->getChunk(); in getChunk()
[all …]
DMinGW.cpp136 if (!sym || !sym->getChunk()) in shouldExport()
185 if (def && def->getChunk() && in writeDefFile()
186 !(def->getChunk()->getOutputCharacteristics() & IMAGE_SCN_MEM_EXECUTE)) in writeDefFile()
264 ctx.symtab.localImportChunks.push_back(wrapimp->getChunk()); in wrapSymbols()
DICF.cpp165 d1->getChunk()->eqClass[cnt % 2] == d2->getChunk()->eqClass[cnt % 2]; in equalsConstant()
190 return d1->getChunk()->eqClass[cnt % 2] == d2->getChunk()->eqClass[cnt % 2]; in equalsVariable()
281 hash += sym->getChunk()->eqClass[cnt % 2]; in run()
DMarkLive.cpp46 enqueue(sym->getChunk()); in markLive()
DSymbolTable.cpp108 if (!d || !d->data || d->file != sc->file || d->getChunk() != sc || in getSymbol()
362 if (refptr && refptr->getChunk()->getSize() == ctx.config.wordsize) { in handleMinGWAutomaticImport()
363 SectionChunk *sc = dyn_cast_or_null<SectionChunk>(refptr->getChunk()); in handleMinGWAutomaticImport()
366 refptr->getChunk()->live = false; in handleMinGWAutomaticImport()
497 localImportChunks.push_back(cast<DefinedLocalImport>(sym)->getChunk()); in resolveRemainingUndefines()
651 os << getSourceLocation(d->getFile(), d->getChunk(), d->getValue(), in reportDuplicate()
DWriter.cpp474 Chunk *thunkChunk = thunk->getChunk(); in createThunks()
1112 textSec->addChunk(thunk->getChunk()); in appendImportThunks()
1216 Chunk *c = def->getChunk(); in createSymbol()
1568 SectionChunk *sc = b->getChunk(); in writeHeader()
1642 Chunk *c = s->getChunk(); in addSymbolToRVASet()
1688 SectionChunk *sc = dyn_cast<SectionChunk>(d->getChunk()); in maybeAddAddressTakenFunction()
2165 OutputSection *sec = ctx.getOutputSection(tlsSym->getChunk()); in fixTlsAlignment()
2198 OutputSection *sec = ctx.getOutputSection(b->getChunk()); in checkLoadConfig()
2203 if (b->getChunk()->getAlignment() < expectedAlign) in checkLoadConfig()
2206 Twine(b->getChunk()->getAlignment()) + " instead)"); in checkLoadConfig()
DMapFile.cpp160 } else if (Chunk *chunk = sym->getChunk()) { in getSymbolStrings()
303 Chunk *chunk = entry->getChunk(); in writeMapFile()
DLLDMapFile.cpp62 ret[s->getChunk()].push_back(s); in getSectionSyms()
DSymbols.cpp83 return r->getChunk()->live; in isLive()
DCallGraphSort.cpp230 sc == d->getChunk()) in run()
DPDB.cpp1141 OutputSection *os = ctx.getOutputSection(def->getChunk()); in createPublic()
1202 if (def && def->isLive() && def->getChunk()) { in addPublicsToPDB()
1541 Chunk *thunkChunk = thunk->getChunk(); in addImportFilesToPDB()
1585 createSectionContrib(ctx, thunk->getChunk(), mod->getModuleIndex()); in addImportFilesToPDB()
1735 if (s->getChunk() == c) in findLineTable()
DDriver.cpp1128 return dyn_cast_or_null<SectionChunk>(dr->getChunk()); in parseCallGraphFile()
1171 auto *from = dyn_cast_or_null<SectionChunk>(fromSym->getChunk()); in readCallGraphsFromObjectFiles()
1172 auto *to = dyn_cast_or_null<SectionChunk>(toSym->getChunk()); in readCallGraphsFromObjectFiles()
1182 if (SectionChunk *c = dyn_cast_or_null<SectionChunk>(d->getChunk())) in markAddrsig()
1352 if (Chunk *c = def->getChunk()) in maybeExportMinGWSymbols()
2393 CommonChunk *c = dc->getChunk(); in linkerMain()
DChunks.cpp421 Chunk *c = sym ? sym->getChunk() : nullptr; in applyRelocation()
DInputFiles.cpp475 SectionChunk *leaderChunk = leader->getChunk(); in handleComdatSelection()
/openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/
DAArch64ExpandImm.cpp22 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()
/openbsd/src/gnu/llvm/lld/wasm/
DSymbols.cpp129 InputChunk *Symbol::getChunk() const { in getChunk() function in lld::wasm::Symbol
141 if (InputChunk *c = getChunk()) in isDiscarded()
153 if (InputChunk *c = getChunk()) in isLive()
169 if (InputChunk *c = getChunk()) { in markLive()
DMapFile.cpp67 ret[dr->getChunk()].push_back(dr); in getSectionSyms()
79 auto *chunk = syms[i]->getChunk(); in getSymbolStrings()
DMarkLive.cpp71 if (InputChunk *chunk = sym->getChunk()) in enqueue()
DSymbols.h99 InputChunk *getChunk() const;