Home
last modified time | relevance | path

Searched refs:COFFSection (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp230 const auto COFFSection = m_object->getCOFFSection(SecRef); in CreateSections() local
233 StringRef SectionName = Name ? *Name : COFFSection->Name; in CreateSections()
241 SectionType(SectionName, COFFSection), in CreateSections()
242 COFFSection->VirtualAddress, in CreateSections()
243 COFFSection->VirtualSize, in CreateSections()
244 COFFSection->PointerToRawData, in CreateSections()
245 COFFSection->SizeOfRawData, in CreateSections()
246 COFFSection->getAlignment(), in CreateSections()
248 section->SetPermissions(Permissions(COFFSection)); in CreateSections()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp68 class COFFSection;
80 COFFSection *Section = nullptr;
108 class COFFSection { class
118 COFFSection(StringRef Name) : Name(std::string(Name)) {} in COFFSection() function in __anon3870acaf0111::COFFSection
129 using sections = std::vector<std::unique_ptr<COFFSection>>;
132 using section_map = DenseMap<MCSection const *, COFFSection *>;
171 COFFSection *createSection(StringRef Name);
179 void SetSectionName(COFFSection &S);
181 bool IsPhysicalSection(COFFSection *S);
190 void writeSection(MCAssembler &Asm, const COFFSection &Sec);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp237 const object::coff_section *COFFSection = COFFObj.getCOFFSection(Section); in mapVirtualAddress() local
238 VirtualAddress = COFFSection->VirtualAddress; in mapVirtualAddress()
239 bool IsComdat = (COFFSection->Characteristics & Flags) == Flags; in mapVirtualAddress()
255 const object::coff_section *COFFSection = COFFObj.getCOFFSection(Section); in mapVirtualAddress()
264 << "PointerToRawData: " << hexValue(COFFSection->PointerToRawData) in mapVirtualAddress()
266 << "SizeOfRawData: " << hexValue(COFFSection->SizeOfRawData) in mapVirtualAddress()