Home
last modified time | relevance | path

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

/external/llvm/tools/obj2yaml/
Dcoff2yaml.cpp106 COFFYAML::Section NewYAMLSection; in dumpSections() local
107 ObjSection.getName(NewYAMLSection.Name); in dumpSections()
108 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections()
109 NewYAMLSection.Header.VirtualAddress = ObjSection.getAddress(); in dumpSections()
110 NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize; in dumpSections()
111 NewYAMLSection.Alignment = ObjSection.getAlignment(); in dumpSections()
112 assert(NewYAMLSection.Alignment <= 8192); in dumpSections()
117 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()
137 NewYAMLSection.Relocations = Relocations; in dumpSections()
138 YAMLSections.push_back(NewYAMLSection); in dumpSections()