| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCSectionXCOFF.cpp | 30 if (getKind().isText()) { in printSwitchToSection() 122 bool MCSectionXCOFF::useCodeAlign() const { return getKind().isText(); } in useCodeAlign()
|
| H A D | MCSectionCOFF.cpp | 107 bool MCSectionCOFF::useCodeAlign() const { return getKind().isText(); } in useCodeAlign()
|
| H A D | WasmObjectWriter.cpp | 502 if (FixupSection.getKind().isText()) { in recordRelocation() 570 if (SecA.getKind().isText()) { in recordRelocation() 630 } else if (FixupSection.getKind().isText()) { in recordRelocation() 1499 if (Section.getKind().isText()) in writeOneObject()
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyWasmObjectWriter.cpp | 132 if (Section->getKind().isText()) in getRelocType() 149 if (Section->getKind().isText()) in getRelocType()
|
| /llvm-project-15.0.7/llvm/lib/Target/XCore/ |
| H A D | XCoreTargetObjectFile.cpp | 77 if (K.isText()) in getXCoreSectionFlags() 113 if (Kind.isText()) return TextSection; in SelectSectionForGlobal()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldMachOX86_64.h | 189 bool IsCode = SecB.isText(); in processSubtractRelocation() 215 bool IsCode = SecA.isText(); in processSubtractRelocation()
|
| H A D | RuntimeDyldCOFFI386.h | 70 Obj, *Section, Section->isText(), ObjSectionToID)) in processRelocationRef()
|
| H A D | RuntimeDyldCOFFX86_64.h | 230 findOrEmitSection(Obj, *SecI, SecI->isText(), ObjSectionToID)) in processRelocationRef()
|
| H A D | RuntimeDyldMachOI386.h | 172 bool IsCode = SectionA.isText(); in processSECTDIFFRelocation()
|
| H A D | RuntimeDyldCOFFThumb.h | 116 findOrEmitSection(Obj, *Section, Section->isText(), ObjSectionToID)) in processRelocationRef()
|
| H A D | RuntimeDyldCOFFAArch64.h | 183 Obj, *Section, Section->isText(), ObjSectionToID)) in processRelocationRef()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 519 if (K.isText()) in getELFSectionFlags() 599 if (Kind.isText()) in getSectionPrefixForGlobal() 896 if (Kind.isText()) in SelectSectionForGlobal() 1301 if (Kind.isText()) in SelectSectionForGlobal() 1545 else if (K.isText()) in getCOFFSectionFlags() 1644 if (Kind.isText()) in getCOFFSectionNameForUniqueGlobal() 1660 if (Kind.isText()) in SelectSectionForGlobal() 1708 if (Kind.isText()) in SelectSectionForGlobal() 2139 if (Kind.isText()) in SelectSectionForGlobal() 2289 if (Kind.isText()) in getExplicitSectionGlobal() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMTargetObjectFile.cpp | 87 if (TM.getSubtarget<ARMSubtarget>(*F).genExecuteOnly() && SK.isText()) in isExecuteOnlyFunction()
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | SectionKind.h | 127 bool isText() const { return K == Text || K == ExecuteOnly; } in isText() function
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/MCTargetDesc/ |
| H A D | NVPTXTargetStreamer.cpp | 46 if (!Section || Section->getKind().isText() || in isDwarfSection()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldMachO.cpp | 78 bool IsCode = TargetSection.isText(); in processScatteredVANILLA() 127 bool IsCode = Sec.isText(); in getRelocationValueRef()
|
| H A D | RuntimeDyld.cpp | 335 bool IsCode = SI->isText(); in loadObjectImpl() 378 bool IsCode = RelocatedSection->isText(); in loadObjectImpl() 436 bool IsCode = SI->isText(); in loadObjectImpl() 559 bool IsCode = Section.isText(); in computeTotalAllocSize()
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | DarwinAsmParser.cpp | 482 bool isText = TAA & MachO::S_ATTR_PURE_INSTRUCTIONS; in parseSectionSwitch() local 485 isText ? SectionKind::getText() : SectionKind::getData())); in parseSectionSwitch() 721 bool isText = Segment == "__TEXT"; // FIXME: Hack. in parseDirectiveSection() local 724 isText ? SectionKind::getText() : SectionKind::getData())); in parseDirectiveSection()
|
| /llvm-project-15.0.7/bolt/include/bolt/Core/ |
| H A D | BinaryContext.h | 999 auto isText = [](const SectionIterator &Itr) { in textSections() 1000 return *Itr && Itr->isAllocatable() && Itr->isText(); in textSections() 1003 FilteredSectionIterator(isText, Sections.begin(), Sections.end()), in textSections() 1004 FilteredSectionIterator(isText, Sections.end(), Sections.end())); in textSections()
|
| H A D | BinarySection.h | 228 bool isText() const { in isText() function 231 return getSectionRef().isText(); in isText()
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 107 bool isText() const; 488 inline bool SectionRef::isText() const { in isText() function
|
| /llvm-project-15.0.7/llvm/tools/llvm-dwarfutil/ |
| H A D | DebugInfoLinker.cpp | 46 if (!Sect.isText()) in ObjFileAddressMap()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 104 } else if (ElfSection.isText()) { in fillSectionInformation()
|
| /llvm-project-15.0.7/llvm/tools/llvm-gsymutil/ |
| H A D | llvm-gsymutil.cpp | 274 if (!Sect.isText()) in handleObjectFile()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/ |
| H A D | SymbolizableObjectFile.cpp | 354 if (!Sec.isText() || Sec.isVirtual()) in getModuleSectionIndexForAddress()
|