Searched refs:SectionDefinition (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp286 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
572 writeLE32(i.Aux.SectionDefinition.Length);
573 writeLE16(i.Aux.SectionDefinition.NumberOfRelocations);
574 writeLE16(i.Aux.SectionDefinition.NumberOfLinenumbers);
575 writeLE32(i.Aux.SectionDefinition.CheckSum);
576 writeLE16(static_cast<int16_t>(i.Aux.SectionDefinition.Number));
577 write8(i.Aux.SectionDefinition.Selection);
578 WriteZeros(sizeof(i.Aux.SectionDefinition.unused));
579 writeLE16(static_cast<int16_t>(i.Aux.SectionDefinition.Number >> 16));
820 Section->Symbol->Aux[0].Aux.SectionDefinition
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DWinCOFFObjectWriter.cpp382 coff_symbol->Aux[0].Aux.SectionDefinition.Selection = Sec.getSelection();
499 S.Symbol->Aux[0].Aux.SectionDefinition.Number = S.Number;
585 WriteLE32(i->Aux.SectionDefinition.Length);
586 WriteLE16(i->Aux.SectionDefinition.NumberOfRelocations);
587 WriteLE16(i->Aux.SectionDefinition.NumberOfLinenumbers);
588 WriteLE32(i->Aux.SectionDefinition.CheckSum);
589 WriteLE16(i->Aux.SectionDefinition.Number);
590 Write8(i->Aux.SectionDefinition.Selection);
591 WriteZeros(sizeof(i->Aux.SectionDefinition.unused));
825 Aux.Aux.SectionDefinition
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp222 if (i->SectionDefinition)
511 if (i->SectionDefinition)
512 OS << binary_le(i->SectionDefinition->Length)
513 << binary_le(i->SectionDefinition->NumberOfRelocations)
514 << binary_le(i->SectionDefinition->NumberOfLinenumbers)
515 << binary_le(i->SectionDefinition->CheckSum)
516 << binary_le(static_cast<int16_t>(i->SectionDefinition->Number))
517 << binary_le(i->SectionDefinition->Selection)
518 << zeros(i->SectionDefinition->unused)
519 << binary_le(static_cast<int16_t>(i->SectionDefinition
[all...]
/external/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h72 Optional<COFF::AuxiliarySectionDefinition> SectionDefinition; member in struct:llvm::COFFYAML::Symbol
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCOFF.h292 AuxiliarySectionDefinition SectionDefinition; member in union:llvm::COFF::Auxiliary
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp186 Sym->SectionDefinition = YAMLASD;
/external/llvm/include/llvm/Support/
H A DCOFF.h407 AuxiliarySectionDefinition SectionDefinition; member in union:llvm::COFF::Auxiliary
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCOFF.h412 AuxiliarySectionDefinition SectionDefinition; member in union:llvm::COFF::Auxiliary
/external/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp479 IO.mapOptional("SectionDefinition", S.SectionDefinition);

Completed in 249 milliseconds