HomeSort by: relevance | last modified time | path
    Searched refs:SecName (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
WasmObjcopy.cpp 23 static Error dumpSectionToFile(StringRef SecName, StringRef Filename,
26 if (Sec.Name == SecName) {
40 SecName.str().c_str());
45 StringRef SecName;
47 std::tie(SecName, FileName) = Flag.split("=");
48 if (Error E = dumpSectionToFile(SecName, FileName, Obj))
59 StringRef SecName, FileName;
60 std::tie(SecName, FileName) = Flag.split("=");
67 Sec.Name = SecName;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFEmitter.h 48 getDWARFEmitterByName(StringRef SecName);
ELFYAML.h 77 StringRef SecName) {
104 if (SecName == ".debug_str")
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCMachOStreamer.cpp 126 StringRef SecName = MSec.getName();
128 if (SegName == "__LD" && SecName == "__compact_unwind")
132 if (SecName == "__jump_table")
135 if (SecName == "__pointers")
139 if (SegName == "__TEXT" && SecName == "__eh_frame")
142 if (SegName == "__DATA" && (SecName == "__nl_symbol_ptr" ||
143 SecName == "__thread_ptr"))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOObjcopy.cpp 255 static Error dumpSectionToFile(StringRef SecName, StringRef Filename,
259 if (Sec->CanonicalName == SecName) {
274 SecName.str().c_str());
277 static Error addSection(StringRef SecName, StringRef Filename, Object &Obj) {
284 std::pair<StringRef, StringRef> Pair = SecName.split(',');
360 StringRef SecName = SecPair.first;
362 if (Error E = isValidMachOCannonicalName(SecName))
364 if (Error E = addSection(SecName, File, Obj))
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.cpp 352 BTFKindDataSec::BTFKindDataSec(AsmPrinter *AsmPrt, std::string SecName)
353 : Asm(AsmPrt), Name(SecName) {
1082 // . SecName:
1143 StringRef SecName;
1145 SecName = Global.getSection();
1149 SecName = ".rodata";
1151 SecName = Global.getInitializer()->isZeroValue() ? ".bss" : ".data";
1154 if (ProcessingMapDef != SecName.startswith(".maps"))
1160 if (SecName == ".rodata" && Global.hasPrivateLinkage() &&
1161 DataSecEntries.find(std::string(SecName)) == DataSecEntries.end())
    [all...]
BTFDebug.h 186 BTFKindDataSec(AsmPrinter *AsmPrt, std::string SecName);
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
macho2yaml.cpp 134 static Error dumpDebugSection(StringRef SecName, DWARFContext &DCtx,
136 if (SecName == "__debug_abbrev") {
140 if (SecName == "__debug_aranges")
142 if (SecName == "__debug_info") {
146 if (SecName == "__debug_line") {
150 if (SecName.startswith("__debug_pub")) {
155 if (SecName == "__debug_ranges")
157 if (SecName == "__debug_str")
160 "dumping " + SecName + " section is not supported");
178 StringRef SecName(S->sectname)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
COFFObjcopy.cpp 233 StringRef SecName, FileName;
234 std::tie(SecName, FileName) = Flag.split("=");
242 Obj, SecName,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
ELFDump.cpp 103 auto SecName = EF.getSectionName(*SymSec);
104 if (!SecName)
105 return SecName.takeError();
106 Fmt << *SecName;
llvm-objdump.cpp 252 StringRef SecName = *SecNameOrErr;
256 if (!SecName.empty())
257 FoundSectionSet.insert(SecName);
261 return {/*Keep=*/is_contained(FilterSections, SecName),
1664 StringRef SecName = unwrapOrError(P.first.getName(), Obj->getFileName());
1665 outs() << "\nRELOCATION RECORDS FOR [" << SecName << "]:\n";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.cpp 177 static Error dumpSectionToFile(StringRef SecName, StringRef Filename,
180 if (Sec.Name == SecName) {
184 SecName.str().c_str());
198 SecName.str().c_str());
614 StringRef SecName = SecPair.first;
625 Obj.addSection<OwnedDataSection>(SecName, Data);
626 if (SecName.startswith(".note") && SecName != ".note.GNU-stack")
Object.h 504 OwnedDataSection(StringRef SecName, ArrayRef<uint8_t> Data)
506 Name = SecName.str();
512 OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags,
514 Name = SecName.str();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ObjDumper.cpp 71 StringRef SecName = unwrapOrError(Obj.getFileName(), SecRef.getName());
72 auto NameIt = SecNames.find(std::string(SecName));
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 211 StringRef SecName, ELFYAML::Section *YAMLSec);
373 std::string SecName = ("." + DebugSecName).str();
374 ImplicitSections.push_back(StringRef(SecName).copy(StringAlloc));
382 for (StringRef SecName : ImplicitSections) {
383 if (DocSections.count(SecName))
388 Sec->Name = SecName;
390 if (SecName == ".dynsym")
392 else if (SecName == ".symtab")
612 Elf_Shdr &Header, StringRef SecName,
618 if (SecName == ".symtab"
    [all...]
DWARFEmitter.cpp 1008 DWARFYAML::getDWARFEmitterByName(StringRef SecName) {
1011 std::function<Error(raw_ostream &, const DWARFYAML::Data &)>>(SecName)
1028 SecName + " is not supported");
1073 for (StringRef SecName : DI.getNonEmptySectionNames())
1075 emitDebugSectionImpl(DI, SecName, DebugSections));
WasmEmitter.cpp 607 StringRef SecName = "";
609 SecName = S->Name;
610 if (!Checker.isValidSectionOrder(Sec->Type, SecName)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFStreamer.h 79 /// Emit contents of section SecName From Obj.
80 void emitSectionContents(StringRef SecData, StringRef SecName) override;
DWARFLinker.h 109 /// Emit section named SecName with data SecData.
110 virtual void emitSectionContents(StringRef SecData, StringRef SecName) = 0;
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 188 /// Emit contents of section SecName From Obj.
189 void DwarfStreamer::emitSectionContents(StringRef SecData, StringRef SecName) {
191 StringSwitch<MCSection *>(SecName)
723 MCSection *Sec, StringRef SecName, const CompileUnit &Unit,
730 MCSymbol *BeginLabel = Asm->createTempSymbol("pub" + SecName + "_begin");
731 MCSymbol *EndLabel = Asm->createTempSymbol("pub" + SecName + "_end");
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
RawTypes.h 79 support::ulittle16_t SecName; // Byte index of the segment or group name
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 275 StringRef SecName) {
306 if (llvm::Error E = isValidSectionSpecifier(SecName)) {
313 if (UnifySection(SecName, SectionFlags, PragmaLoc))
317 CSec->SectionName = std::string(SecName);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiStreamBuilder.cpp 365 Entry.SecName = UINT16_MAX;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 1063 auto SecName = ".text." + SymName;
1073 getContext().getWasmSection(SecName, SectionKind::getText(), 0, Group,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 1115 // Return Posix nm class type tag (single letter), but also set SecName and
1118 StringRef &SecName) {
1123 SecName = "*ABS*";
1125 SecName = "*COM*";
1127 SecName = "*UND*";
1144 SecName = *NameOrErr;

Completed in 90 milliseconds

1 2