Home
last modified time | relevance | path

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

/freebsd/contrib/elftoolchain/elfcopy/
H A Dsegments.c82 if (seg->type == PT_TLS && ((s->flags & SHF_TLS) == 0)) in add_to_inseg_list()
88 else if (seg->type == PT_TLS) in add_to_inseg_list()
/freebsd/lib/libc/gen/
H A Ddlfcn.c198 if (phdr_info.dlpi_phdr[i].p_type == PT_TLS) { in dl_init_phdr_info()
H A Dtls.c439 if (phdr[i].p_type == PT_TLS) { in _init_tls()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux_libcdep.cpp428 if (info->dlpi_phdr[i].p_type == PT_TLS) { in CollectStaticTlsBlocks()
489 if (hdr->p_type == PT_TLS && info->dlpi_tls_modid == 1) { in GetSizeFromHdr()
/freebsd/libexec/rtld-elf/
H A Dmap_object.c152 case PT_TLS: in map_object()
H A Drtld.c1697 case PT_TLS: in digest_phdr()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp308 case ELF::PT_TLS: in printProgramHeaders()
/freebsd/sys/sys/
H A Delf_common.h551 #define PT_TLS 7 /* Thread local storage segment */ macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1917 if (PHdr.p_type != PT_LOAD && PHdr.p_type != PT_TLS) in CreateSections()
1921 PHdr.p_type == PT_TLS ? tls_provider : regular_provider; in CreateSections()
1933 Segment->SetIsThreadSpecific(PHdr.p_type == PT_TLS); in CreateSections()
3362 CASE_AND_STREAM(s, PT_TLS, kStrWidth); in DumpELFProgramHeader_p_type()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DELF.h1478 PT_TLS = 7, // The thread-local storage template. enumerator
/freebsd/contrib/llvm-project/lld/ELF/
H A DWriter.cpp1947 if (p->p_type == PT_TLS) in finalizeSections()
2276 PhdrEntry *tlsHdr = make<PhdrEntry>(PT_TLS, PF_R); in createPhdrs()
H A DScriptParser.cpp1652 .Case("PT_TLS", PT_TLS) in readPhdrType()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h198 bool IsTbssInNonTLS = IsTbss && Phdr.p_type != ELF::PT_TLS; in checkSectionVMA()
/freebsd/contrib/elftoolchain/common/
H A Delfdefinitions.h961 _ELF_DEFINE_PT(PT_TLS, 7, "thread local storage") \
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp1484 LLVM_READOBJ_ENUM_CASE(ELF, PT_TLS); in segmentTypeToString()
4658 return Phdr.p_type == ELF::PT_TLS; in checkTLSSections()
4662 return (Phdr.p_type == ELF::PT_TLS) || (Phdr.p_type == ELF::PT_LOAD) || in checkTLSSections()
4667 return Phdr.p_type != ELF::PT_TLS; in checkTLSSections()
/freebsd/contrib/elftoolchain/elfdump/
H A Delfdump.c353 case PT_TLS: return "PT_TLS"; in elf_phdr_type_str()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp68 ECase(PT_TLS); in enumeration()
/freebsd/contrib/elftoolchain/readelf/
H A Dreadelf.c698 case PT_TLS: return "TLS"; in phdr_type()
2560 if (phdr.p_type == PT_TLS && in dump_phdr()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1235 bool SegmentIsTLS = Seg.Type == PT_TLS; in sectionWithinSegment()