HomeSort by relevance Sort by last modified time
    Searched defs:CustomSection (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
WasmYAML.cpp 67 static void sectionMapping(IO &IO, WasmYAML::CustomSection &Section) {
140 auto CustomSection = cast<WasmYAML::CustomSection>(Section.get());
141 SectionName = CustomSection->Name;
155 Section.reset(new WasmYAML::CustomSection(SectionName));
156 sectionMapping(IO, *cast<WasmYAML::CustomSection>(Section.get()));
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
yaml2wasm.cpp 33 int writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
240 WasmYAML::CustomSection &Section) {
438 auto CustomSection = dyn_cast<WasmYAML::CustomSection>(&Sec);
439 if (!CustomSection->Name.startswith(".debug_")) {
444 writeStringRef(("reloc." + CustomSection->Name).str(), OS);
492 if (auto S = dyn_cast<WasmYAML::CustomSection>(Sec.get())) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
WasmYAML.h 167 struct CustomSection : Section {
168 explicit CustomSection(StringRef Name)
179 struct NameSection : CustomSection {
180 NameSection() : CustomSection("name") {}
183 auto C = dyn_cast<CustomSection>(S);
190 struct LinkingSection : CustomSection {
191 LinkingSection() : CustomSection("linking") {}
194 auto C = dyn_cast<CustomSection>(S);

Completed in 484 milliseconds