Searched refs:ELFSection (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFSection.h | 32 class ELFSection { 33 ELFSection() = delete; 34 ELFSection(const ELFSection &) = delete; 35 ELFSection &operator=(const ELFSection &) = delete; 38 virtual ~ELFSection() = default; 49 ELFSection(const std::string &Name, Elf64_Word ShType, Elf64_Xword ShFlags, in ELFSection() function 102 class ELFTextSection : public ELFSection { 108 using ELFSection::ELFSection; 116 class ELFDataSection : public ELFSection { 122 using ELFSection::ELFSection; [all …]
|
D | IceELFSection.cpp | 98 void ELFSymbolTableSection::createNullSymbol(ELFSection *NullSection, in createNullSymbol() 112 ELFSection *Section, in createDefinedSym() 130 ELFSection *NullSection) { in noteUndefinedSym() 159 ELFSection *Section = KeyValue.second.Section; in updateIndices() 168 ELFSection *Section = KeyValue.second.Section; in updateIndices()
|
D | IceELFObjectWriter.h | 109 using SectionList = std::vector<ELFSection *>; 122 ELFSection *NullSection; 135 createRelocationSection(const ELFSection *RelatedSection);
|
D | IceELFObjectWriter.cpp | 74 NullSection = new (Ctx.allocate<ELFSection>()) in ELFObjectWriter() 75 ELFSection(NullSectionName, SHT_NULL, 0, 0, 0); in ELFObjectWriter() 109 ELFObjectWriter::createRelocationSection(const ELFSection *RelatedSection) { in createRelocationSection() 134 for (ELFSection *UserSection : UserSections) { in assignRelSectionNumInPairs() 174 for (ELFSection *BSSSection : BSSSections) { in assignSectionNumbersInfo()
|
/third_party/node/deps/v8/src/diagnostics/ |
D | gdb-jit.cc | 45 class ELFSection; 47 using DebugSection = ELFSection; 282 class ELFSection : public DebugSectionBase<ELFSectionHeader> { class 308 ELFSection(const char* name, Type type, uintptr_t align) in ELFSection() function in v8::internal::GDBJITInterface::ELFSection 311 ~ELFSection() override = default; 373 class FullHeaderELFSection : public ELFSection { 378 : ELFSection(name, type, align), in FullHeaderELFSection() 386 ELFSection::PopulateHeader(header); in PopulateHeader() 400 class ELFStringTable : public ELFSection { 403 : ELFSection(name, TYPE_STRTAB, 1), in ELFStringTable() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 636 MCSection *ELFSection = in ParseSectionArguments() local 639 getStreamer().SwitchSection(ELFSection, Subsection); in ParseSectionArguments() 642 bool InsertResult = getContext().addGenDwarfSection(ELFSection); in ParseSectionArguments() 647 if (!ELFSection->getBeginSymbol()) { in ParseSectionArguments() 650 ELFSection->setBeginSymbol(SectionStartSymbol); in ParseSectionArguments()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 7934 MCSection *ELFSection = getContext().getELFSection( in parseRSectionDirective() local 7936 getParser().getStreamer().SwitchSection(ELFSection); in parseRSectionDirective() 7952 MCSection *ELFSection = getContext().getELFSection( in parseSSectionDirective() local 7954 getParser().getStreamer().SwitchSection(ELFSection); in parseSSectionDirective()
|