Home
last modified time | relevance | path

Searched refs:SecName (Results 1 – 8 of 8) sorted by relevance

/NextBSD/contrib/llvm/lib/MC/
HDMCMachOStreamer.cpp126 StringRef SecName = MSec.getSectionName(); in canGoAfterDWARF() local
128 if (SegName == "__LD" && SecName == "__compact_unwind") in canGoAfterDWARF()
132 if (SecName == "__jump_table") in canGoAfterDWARF()
135 if (SecName == "__pointers") in canGoAfterDWARF()
139 if (SegName == "__TEXT" && SecName == "__eh_frame") in canGoAfterDWARF()
142 if (SegName == "__DATA" && SecName == "__nl_symbol_ptr") in canGoAfterDWARF()
HDMCWinEH.cpp28 static MCSection *getUnwindInfoSection(StringRef SecName, in getUnwindInfoSection() argument
53 (SecName + Twine('$') + CodeSecName).str(), in getUnwindInfoSection()
/NextBSD/contrib/llvm/lib/Object/
HDIRObjectFile.cpp262 StringRef SecName; in findBitcodeInObject() local
263 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject()
265 if (SecName == ".llvmbc") { in findBitcodeInObject()
/NextBSD/contrib/llvm/tools/llvm-rtdyld/
HDllvm-rtdyld.cpp308 StringRef SecName; in printLineInfoForInput() local
309 Sec->getName(SecName); in printLineInfoForInput()
311 LoadedObjInfo->getSectionLoadAddress(SecName); in printLineInfoForInput()
/NextBSD/contrib/llvm/lib/DebugInfo/DWARF/
HDDWARFContext.cpp705 StringRef SecName; in DWARFContextInMemory() local
706 RSec->getName(SecName); in DWARFContextInMemory()
707 SectionLoadAddress = L->getSectionLoadAddress(SecName); in DWARFContextInMemory()
/NextBSD/contrib/llvm/tools/llvm-objdump/
HDllvm-objdump.cpp359 ErrorOr<StringRef> SecName = EF.getSectionName(*SymSec); in getRelocationValueString() local
360 if (std::error_code EC = SecName.getError()) in getRelocationValueString()
362 Target = *SecName; in getRelocationValueString()
/NextBSD/contrib/llvm/tools/llvm-readobj/
HDELFDumper.cpp756 ErrorOr<StringRef> SecName = Obj->getSectionName(*Sec); in printRelocation() local
757 if (SecName) in printRelocation()
758 TargetName = SecName.get(); in printRelocation()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDeclAttr.cpp2367 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { in checkSectionName() argument
2368 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); in checkSectionName()