Searched refs:SecName (Results 1 – 8 of 8) sorted by relevance
126 StringRef SecName = MSec.getSectionName(); in canGoAfterDWARF() local128 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()
28 static MCSection *getUnwindInfoSection(StringRef SecName, in getUnwindInfoSection() argument53 (SecName + Twine('$') + CodeSecName).str(), in getUnwindInfoSection()
262 StringRef SecName; in findBitcodeInObject() local263 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject()265 if (SecName == ".llvmbc") { in findBitcodeInObject()
308 StringRef SecName; in printLineInfoForInput() local309 Sec->getName(SecName); in printLineInfoForInput()311 LoadedObjInfo->getSectionLoadAddress(SecName); in printLineInfoForInput()
705 StringRef SecName; in DWARFContextInMemory() local706 RSec->getName(SecName); in DWARFContextInMemory()707 SectionLoadAddress = L->getSectionLoadAddress(SecName); in DWARFContextInMemory()
359 ErrorOr<StringRef> SecName = EF.getSectionName(*SymSec); in getRelocationValueString() local360 if (std::error_code EC = SecName.getError()) in getRelocationValueString()362 Target = *SecName; in getRelocationValueString()
756 ErrorOr<StringRef> SecName = Obj->getSectionName(*Sec); in printRelocation() local757 if (SecName) in printRelocation()758 TargetName = SecName.get(); in printRelocation()
2367 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { in checkSectionName() argument2368 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); in checkSectionName()