Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dcoff2yaml.cpp147 COFFYAML::Section NewYAMLSection; in dumpSections() local
148 ObjSection.getName(NewYAMLSection.Name); in dumpSections()
149 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections()
150 NewYAMLSection.Header.VirtualAddress = ObjSection.getAddress(); in dumpSections()
151 NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize; in dumpSections()
152 NewYAMLSection.Header.NumberOfLineNumbers = in dumpSections()
154 NewYAMLSection.Header.NumberOfRelocations = in dumpSections()
156 NewYAMLSection.Header.PointerToLineNumbers = in dumpSections()
158 NewYAMLSection.Header.PointerToRawData = COFFSection->PointerToRawData; in dumpSections()
159 NewYAMLSection.Header.PointerToRelocations = in dumpSections()
[all …]
/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()