HomeSort by: relevance | last modified time | path
    Searched defs:SectionType (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
Object.h 25 uint8_t SectionType;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmYAML.cpp 165 WasmYAML::SectionType SectionType;
167 SectionType = Section->Type;
169 IO.mapRequired("Type", SectionType);
171 switch (SectionType) {
277 void ScalarEnumerationTraits<WasmYAML::SectionType>::enumeration(
278 IO &IO, WasmYAML::SectionType &Type) {
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSectionMachO.cpp 110 MachO::SectionType SectionType = getType();
111 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE &&
112 "Invalid SectionType specified!");
114 if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) {
116 OS << SectionTypeDescriptors[SectionType].AssemblerName;
193 StringRef SectionType = GetEmptyOrTrim(2);
212 if (SectionType.empty())
219 return SectionType == Descriptor.AssemblerName;
270 // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
MachOLinkGraphBuilder.cpp 158 unsigned SectionType = NSec.Flags & MachO::SECTION_TYPE;
159 if (SectionType != MachO::S_ZEROFILL &&
160 SectionType != MachO::S_GB_ZEROFILL) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
XCOFFDumper.cpp 483 uint16_t SectionType = Sec.getSectionType();
484 switch (SectionType) {
500 W.printHex("Flags", "Reserved", SectionType);
502 W.printEnum("Type", SectionType, makeArrayRef(SectionTypeFlagsNames));
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 518 unsigned SectionType = MachO->getSectionType(Section);
519 return SectionType == MachO::S_ZEROFILL ||
520 SectionType == MachO::S_GB_ZEROFILL;
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 555 MachO::SectionType SectionType = Current->getType();
556 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
557 SectionType != MachO::S_LAZY_SYMBOL_POINTERS &&
558 SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS &&
559 SectionType != MachO::S_SYMBOL_STUBS)
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 53 enum SectionType {
75 MBBSectionID(SectionType T) : Type(T), Number(0) {}
578 return ((unsigned)MBBSectionID::SectionType::Cold) -
  /src/external/apache2/llvm/dist/llvm/tools/sancov/
sancov.cpp 616 uint32_t SectionType = Sec.flags & MachO::SECTION_TYPE;
617 if (SectionType == MachO::S_SYMBOL_STUBS) {
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 2024 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2026 !(SectionType == MachO::S_ZEROFILL ||
2027 SectionType == MachO::S_GB_ZEROFILL);
2032 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2034 (SectionType == MachO::S_ZEROFILL ||
2035 SectionType == MachO::S_GB_ZEROFILL);
2051 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2052 return SectionType == MachO::S_ZEROFILL ||
2053 SectionType == MachO::S_GB_ZEROFILL;
  /src/sys/external/bsd/acpica/dist/include/
actbl1.h 2315 UINT8 SectionType[16];
2330 UINT8 SectionType[16];

Completed in 34 milliseconds