/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | segments.c | 82 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 D | dlfcn.c | 198 if (phdr_info.dlpi_phdr[i].p_type == PT_TLS) { in dl_init_phdr_info()
|
H A D | tls.c | 439 if (phdr[i].p_type == PT_TLS) { in _init_tls()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_linux_libcdep.cpp | 428 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 D | map_object.c | 152 case PT_TLS: in map_object()
|
H A D | rtld.c | 1697 case PT_TLS: in digest_phdr()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ELFDump.cpp | 308 case ELF::PT_TLS: in printProgramHeaders()
|
/freebsd/sys/sys/ |
H A D | elf_common.h | 551 #define PT_TLS 7 /* Thread local storage segment */ macro
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 1917 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 D | ELF.h | 1478 PT_TLS = 7, // The thread-local storage template. enumerator
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Writer.cpp | 1947 if (p->p_type == PT_TLS) in finalizeSections() 2276 PhdrEntry *tlsHdr = make<PhdrEntry>(PT_TLS, PF_R); in createPhdrs()
|
H A D | ScriptParser.cpp | 1652 .Case("PT_TLS", PT_TLS) in readPhdrType()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELF.h | 198 bool IsTbssInNonTLS = IsTbss && Phdr.p_type != ELF::PT_TLS; in checkSectionVMA()
|
/freebsd/contrib/elftoolchain/common/ |
H A D | elfdefinitions.h | 961 _ELF_DEFINE_PT(PT_TLS, 7, "thread local storage") \
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 1484 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 D | elfdump.c | 353 case PT_TLS: return "PT_TLS"; in elf_phdr_type_str()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | ELFYAML.cpp | 68 ECase(PT_TLS); in enumeration()
|
/freebsd/contrib/elftoolchain/readelf/ |
H A D | readelf.c | 698 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 D | ELFObject.cpp | 1235 bool SegmentIsTLS = Seg.Type == PT_TLS; in sectionWithinSegment()
|