/external/llvm/lib/ObjectYAML/ |
D | COFFYAML.cpp | 193 void ScalarBitSetTraits<COFF::Characteristics>::bitset( in bitset() 194 IO &IO, COFF::Characteristics &Value) { in bitset() 266 : Characteristics(COFFYAML::WeakExternalCharacteristics(0)) {} in NWeakExternalCharacteristics() 268 : Characteristics(COFFYAML::WeakExternalCharacteristics(C)) {} in NWeakExternalCharacteristics() 269 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 270 COFFYAML::WeakExternalCharacteristics Characteristics; member 275 : Characteristics(COFF::SectionCharacteristics(0)) {} in NSectionCharacteristics() 277 : Characteristics(COFF::SectionCharacteristics(C)) {} in NSectionCharacteristics() 278 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 279 COFF::SectionCharacteristics Characteristics; member [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCSectionCOFF.h | 30 unsigned Characteristics; variable 38 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() argument 41 Characteristics(Characteristics), Selection (Selection) { in MCSectionCOFF() 42 assert ((Characteristics & 0x00F00000) == 0 && in MCSectionCOFF() 53 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics()
|
D | MCContext.h | 192 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, 195 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, in getCOFFSection() argument 197 return getCOFFSection (Section, Characteristics, 0, Kind); in getCOFFSection()
|
/external/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 33 mutable unsigned Characteristics; variable 52 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() argument 56 Characteristics(Characteristics), COMDATSymbol(COMDATSymbol), in MCSectionCOFF() 58 assert((Characteristics & 0x00F00000) == 0 && in MCSectionCOFF() 70 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 384 coff_section->Header.Characteristics = Sec.getCharacteristics(); in DefineSection() 386 uint32_t &Characteristics = coff_section->Header.Characteristics; in DefineSection() local 388 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break; in DefineSection() 389 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break; in DefineSection() 390 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break; in DefineSection() 391 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break; in DefineSection() 392 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break; in DefineSection() 393 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break; in DefineSection() 394 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break; in DefineSection() 395 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break; in DefineSection() [all …]
|
D | WinCOFFStreamer.cpp | 91 unsigned Characteristics, in SetSection() argument 93 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind)); in SetSection() 143 unsigned Characteristics = in AddCommonSymbol() local 152 SectionName, Characteristics, Selection, SectionKind::getBSS()); in AddCommonSymbol()
|
/external/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 288 coff_section->Header.Characteristics = Sec.getCharacteristics(); in defineSection() 290 uint32_t &Characteristics = coff_section->Header.Characteristics; in defineSection() local 293 Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; in defineSection() 296 Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; in defineSection() 299 Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; in defineSection() 302 Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; in defineSection() 305 Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; in defineSection() 308 Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; in defineSection() 311 Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; in defineSection() 314 Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; in defineSection() [all …]
|
D | MCContext.cpp | 388 unsigned Characteristics, in getCOFFSection() argument 413 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin); in getCOFFSection() 420 unsigned Characteristics, in getCOFFSection() argument 423 return getCOFFSection(Section, Characteristics, Kind, "", 0, GenericSectionID, in getCOFFSection() 444 unsigned Characteristics = Sec->getCharacteristics(); in getAssociativeCOFFSection() local 446 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in getAssociativeCOFFSection() 447 return getCOFFSection(Sec->getSectionName(), Characteristics, in getAssociativeCOFFSection() 452 return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(), in getAssociativeCOFFSection()
|
/external/llvm/test/Object/ |
D | yaml2obj-coff-multi-doc.test | 15 Characteristics: [ IMAGE_FILE_DEBUG_STRIPPED ] 20 Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_MEM_EXECUTE, 55 Characteristics: [ IMAGE_FILE_DEBUG_STRIPPED ] 60 Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_MEM_EXECUTE,
|
D | yaml2obj-coff-invalid-alignment.test | 8 Characteristics: [] 11 Characteristics: []
|
/external/swiftshader/third_party/LLVM/lib/Object/ |
D | COFFObjectFile.cpp | 222 uint32_t Characteristics = 0; in getSymbolNMTypeChar() local 227 Characteristics = Section->Characteristics; in getSymbolNMTypeChar() 247 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE) in getSymbolNMTypeChar() 249 else if ( Characteristics & COFF::IMAGE_SCN_MEM_READ in getSymbolNMTypeChar() 250 && ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only. in getSymbolNMTypeChar() 252 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in getSymbolNMTypeChar() 254 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in getSymbolNMTypeChar() 256 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO) in getSymbolNMTypeChar() 344 Res = uint64_t(1) << (((sec->Characteristics & 0x00F00000) >> 20) - 1); in getSectionAlignment() 351 Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; in isSectionText() [all …]
|
/external/llvm/include/llvm/ObjectYAML/ |
D | COFFYAML.h | 24 inline Characteristics operator|(Characteristics a, Characteristics b) { 26 return static_cast<Characteristics>(Ret); 151 struct ScalarBitSetTraits<COFF::Characteristics> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 152 static void bitset(IO &IO, COFF::Characteristics &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/llvm/test/MC/ARM/Windows/ |
D | multiple-text-sections.s | 32 @ CHECK: Characteristics [ 41 @ CHECK: Characteristics [ 50 @ CHECK: Characteristics [
|
/external/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 99 YAMLObj.Header.Characteristics = Obj.getCharacteristics(); in dumpHeader() 108 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections() 168 YAMLWE.Characteristics = ObjWE->Characteristics; in dumpWeakExternal()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | COFF.h | 48 uint16_t Characteristics; member 155 uint32_t Characteristics; member 262 uint32_t Characteristics; member
|
/external/llvm/include/llvm/Object/ |
D | COFF.h | 69 support::ulittle16_t Characteristics; member 173 support::ulittle32_t Characteristics; member 429 support::ulittle32_t Characteristics; member 434 return (Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) && in hasExtendedRelocations() 440 if (Characteristics & COFF::IMAGE_SCN_TYPE_NO_PAD) in getAlignment() 444 uint32_t Shift = (Characteristics >> 20) & 0xF; in getAlignment() 481 support::ulittle32_t Characteristics; member 546 support::ulittle32_t Characteristics; member 549 uint32_t Shift = (Characteristics & 0x00F00000) >> 20; in getAlignment() 560 support::ulittle32_t Characteristics; member [all …]
|
/external/llvm/test/tools/llvm-readobj/ |
D | bigobj.test | 14 CHECK-NEXT: Characteristics [ (0x0) 29 CHECK-NEXT: Characteristics [ (0x60500020) 47 CHECK-NEXT: Characteristics [ (0xC0500040) 65 CHECK-NEXT: Characteristics [ (0xC0500080)
|
D | coff-debug-directory.test | 5 CHECK: Characteristics: 0x0 21 CHECK: Characteristics: 0x0
|
/external/syslinux/gpxe/src/include/gpxe/efi/IndustryStandard/ |
D | PeImage.h | 95 UINT16 Characteristics; member 362 UINT32 Characteristics; member 620 UINT32 Characteristics; member 657 UINT32 Characteristics; member 669 UINT32 Characteristics; member
|
/external/syslinux/gpxe/src/util/ |
D | elf2efi.c | 78 .Characteristics = ( EFI_IMAGE_FILE_DLL | 374 new->hdr.Characteristics = in process_section() 383 new->hdr.Characteristics = in process_section() 392 new->hdr.Characteristics = in process_section() 400 new->hdr.Characteristics = in process_section() 520 reloc->hdr.Characteristics = ( EFI_IMAGE_SCN_CNT_INITIALIZED_DATA | in create_reloc_section() 570 debug->hdr.Characteristics = ( EFI_IMAGE_SCN_CNT_INITIALIZED_DATA | in create_debug_section()
|
/external/llvm/docs/ |
D | yaml2obj.rst | 25 Characteristics: [ IMAGE_SCN_CNT_CODE 88 Characteristics: 115 Characteristics:
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 892 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); in getExplicitSectionGlobal() local 906 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in getExplicitSectionGlobal() 912 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getExplicitSectionGlobal() 941 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); in SelectSectionForGlobal() local 943 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in SelectSectionForGlobal() 960 return getContext().getCOFFSection(Name, Characteristics, Kind, in SelectSectionForGlobal() 965 return getContext().getCOFFSection(Name, Characteristics, Kind, TmpData, in SelectSectionForGlobal() 1018 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); in getSectionForJumpTable() local 1019 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in getSectionForJumpTable() 1022 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName, in getSectionForJumpTable()
|
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia32/ |
D | pe.h | 80 UINT16 Characteristics; member 249 UINT32 Characteristics; member 553 UINT32 Characteristics; member 588 UINT32 Characteristics; member
|
/external/syslinux/efi32/include/efi/ia32/ |
D | pe.h | 80 UINT16 Characteristics; member 249 UINT32 Characteristics; member 553 UINT32 Characteristics; member 588 UINT32 Characteristics; member
|
/external/syslinux/efi64/include/efi/x86_64/ |
D | pe.h | 80 UINT16 Characteristics; member 249 UINT32 Characteristics; member 553 UINT32 Characteristics; member 588 UINT32 Characteristics; member
|