Home
last modified time | relevance | path

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

/external/llvm/test/MC/COFF/
Dsection-comdat.s17 .section SecName, "dr", same_size, "Symbol3"
22 .section SecName, "dr", same_contents, "Symbol4"
27 .section SecName, "dr", associative, "assocSym"
32 .section SecName, "dr", largest, "Symbol6"
37 .section SecName, "dr", newest, "Symbol7"
/external/llvm/lib/MC/
DMCWinEH.cpp28 static MCSection *getUnwindInfoSection(StringRef SecName, in getUnwindInfoSection() argument
52 return Context.getCOFFSection((SecName + Twine('$') + CodeSecName).str(), in getUnwindInfoSection()
DMCMachOStreamer.cpp127 StringRef SecName = MSec.getSectionName(); in canGoAfterDWARF() local
129 if (SegName == "__LD" && SecName == "__compact_unwind") in canGoAfterDWARF()
133 if (SecName == "__jump_table") in canGoAfterDWARF()
136 if (SecName == "__pointers") in canGoAfterDWARF()
140 if (SegName == "__TEXT" && SecName == "__eh_frame") in canGoAfterDWARF()
143 if (SegName == "__DATA" && SecName == "__nl_symbol_ptr") in canGoAfterDWARF()
/external/llvm/lib/Object/
DFunctionIndexObjectFile.cpp38 StringRef SecName; in findBitcodeInObject() local
39 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject()
41 if (SecName == ".llvmbc") { in findBitcodeInObject()
DIRObjectFile.cpp268 StringRef SecName; in findBitcodeInObject() local
269 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject()
271 if (SecName == ".llvmbc") { in findBitcodeInObject()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp348 StringRef SecName; in printLineInfoForInput() local
349 Sec->getName(SecName); in printLineInfoForInput()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp773 StringRef SecName; in DWARFContextInMemory() local
774 RSec->getName(SecName); in DWARFContextInMemory()
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp480 StringRef SecName; in printCodeViewDebugInfo() local
481 error(S.getName(SecName)); in printCodeViewDebugInfo()
482 if (SecName == ".debug$S") in printCodeViewDebugInfo()
DELFDumper.cpp1221 ErrorOr<StringRef> SecName = Obj->getSectionName(*Sec); in printRelocation() local
1222 if (SecName) in printRelocation()
1223 TargetName = SecName.get(); in printRelocation()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp430 ErrorOr<StringRef> SecName = EF.getSectionName(SymSec); in getRelocationValueString() local
431 if (std::error_code EC = SecName.getError()) in getRelocationValueString()
433 Target = *SecName; in getRelocationValueString()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp1028 MCSection *Sec, StringRef SecName, const CompileUnit &Unit, in emitPubSectionForUnit() argument
1035 MCSymbol *BeginLabel = Asm->createTempSymbol("pub" + SecName + "_begin"); in emitPubSectionForUnit()
1036 MCSymbol *EndLabel = Asm->createTempSymbol("pub" + SecName + "_end"); in emitPubSectionForUnit()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp2557 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { in checkSectionName() argument
2558 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); in checkSectionName()