Searched refs:isTLS (Results 1 - 16 of 16) sorted by relevance

/openbsd-current/gnu/llvm/lld/wasm/
H A DOutputSegment.h33 bool isTLS() const { return name == ".tdata"; } function in class:lld::wasm::OutputSegment
H A DRelocations.cpp127 if (!sym->isTLS()) {
134 if (!D->segment->outputSeg->isTLS()) {
H A DSyntheticSections.cpp94 if (sym->isExported() && sym->isTLS() && isa<DefinedData>(sym)) {
427 if (TLS != sym->isTLS())
433 if (sym->isTLS())
478 if (!config->extendedConst && config->isPic && !sym->isTLS())
482 if (config->sharedMemory && sym->isTLS())
488 if (config->extendedConst && config->isPic && !sym->isTLS() &&
H A DSyntheticSections.h295 [=](Symbol *sym) { return !sym->isTLS(); });
299 [=](Symbol *sym) { return sym->isTLS(); });
H A DSymbols.cpp212 bool Symbol::isTLS() const { return flags & WASM_SYMBOL_TLS; } function in class:lld::wasm::Symbol
314 if (isTLS() && config->sharedMemory)
H A DWriter.cpp298 if (!config->relocatable && seg->isTLS()) {
514 auto isTLS = [](InputChunk *segment) { local
515 return segment->live && segment->isTLS();
517 tlsUsed = tlsUsed || llvm::any_of(file->segments, isTLS);
894 if (seg.isTLS())
1210 if (config->sharedMemory && s->isTLS()) {
1283 if (config->sharedMemory && s->isTLS())
H A DInputChunks.h83 bool isTLS() const { return flags & llvm::wasm::WASM_SEG_FLAG_TLS; } function in class:lld::wasm::InputChunk
H A DInputFiles.cpp489 if (!seg->isTLS() &&
594 if (!(flags & WASM_SYMBOL_TLS) && seg->isTLS())
H A DSymbols.h81 bool isTLS() const;
/openbsd-current/gnu/llvm/llvm/include/llvm/MC/
H A DMCSymbolWasm.h69 bool isTLS() const { return getFlags() & wasm::WASM_SYMBOL_TLS; } function in class:llvm::MCSymbolWasm
/openbsd-current/gnu/llvm/llvm/include/llvm/Object/
H A DIRSymtab.h203 bool isTLS() const { return (Flags >> S::FB_tls) & 1; } function in struct:llvm::irsymtab::Symbol
/openbsd-current/gnu/llvm/llvm/include/llvm/LTO/
H A DLTO.h147 using irsymtab::Symbol::isTLS;
/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp526 static bool isTLS(const SectionRef Section) { function in namespace:llvm
558 bool IsTLS = isTLS(Section);
813 bool IsTLS = isTLS(Section);
/openbsd-current/gnu/llvm/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp482 PrintBool('T', Sym.isTLS());
/openbsd-current/gnu/llvm/lld/ELF/
H A DInputFiles.cpp1656 uint8_t type = objSym.isTLS() ? STT_TLS : STT_NOTYPE;
/openbsd-current/gnu/llvm/llvm/lib/MC/
H A DWasmObjectWriter.cpp1800 if (WS.isTLS())

Completed in 199 milliseconds