Searched refs:SecName (Results 1 – 12 of 12) sorted by relevance
/external/llvm/test/MC/COFF/ |
D | section-comdat.s | 17 .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/ |
D | MCWinEH.cpp | 28 static MCSection *getUnwindInfoSection(StringRef SecName, in getUnwindInfoSection() argument 52 return Context.getCOFFSection((SecName + Twine('$') + CodeSecName).str(), in getUnwindInfoSection()
|
D | MCMachOStreamer.cpp | 127 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/ |
D | FunctionIndexObjectFile.cpp | 38 StringRef SecName; in findBitcodeInObject() local 39 if (std::error_code EC = Sec.getName(SecName)) in findBitcodeInObject() 41 if (SecName == ".llvmbc") { in findBitcodeInObject()
|
D | IRObjectFile.cpp | 268 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/ |
D | llvm-rtdyld.cpp | 348 StringRef SecName; in printLineInfoForInput() local 349 Sec->getName(SecName); in printLineInfoForInput()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 773 StringRef SecName; in DWARFContextInMemory() local 774 RSec->getName(SecName); in DWARFContextInMemory()
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 480 StringRef SecName; in printCodeViewDebugInfo() local 481 error(S.getName(SecName)); in printCodeViewDebugInfo() 482 if (SecName == ".debug$S") in printCodeViewDebugInfo()
|
D | ELFDumper.cpp | 1221 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/ |
D | llvm-objdump.cpp | 430 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/ |
D | DwarfLinker.cpp | 1028 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/ |
D | SemaDeclAttr.cpp | 2557 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { in checkSectionName() argument 2558 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); in checkSectionName()
|