/external/llvm/lib/Object/ |
D | COFFYAML.cpp | 174 void ScalarBitSetTraits<COFF::Characteristics>::bitset( in bitset() 175 IO &IO, COFF::Characteristics &Value) { in bitset() 231 : Characteristics(COFFYAML::WeakExternalCharacteristics(0)) {} in NWeakExternalCharacteristics() 233 : Characteristics(COFFYAML::WeakExternalCharacteristics(C)) {} in NWeakExternalCharacteristics() 234 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 235 COFFYAML::WeakExternalCharacteristics Characteristics; member 240 : Characteristics(COFF::SectionCharacteristics(0)) {} in NSectionCharacteristics() 242 : Characteristics(COFF::SectionCharacteristics(C)) {} in NSectionCharacteristics() 243 uint32_t denormalize(IO &) { return Characteristics; } in denormalize() 244 COFF::SectionCharacteristics Characteristics; member [all …]
|
D | COFFObjectFile.cpp | 165 uint32_t Characteristics = 0; in getSymbolType() local 170 Characteristics = Section->Characteristics; in getSymbolType() 172 if (Characteristics & COFF::IMAGE_SCN_MEM_READ && in getSymbolType() 173 ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only. in getSymbolType() 282 Res = uint64_t(1) << (((Sec->Characteristics & 0x00F00000) >> 20) - 1); in getSectionAlignment() 289 Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; in isSectionText() 296 Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA; in isSectionData() 303 Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; in isSectionBSS() 318 Result = Sec->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; in isSectionVirtual()
|
/external/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 34 mutable unsigned Characteristics; variable 47 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() argument 50 Characteristics(Characteristics), COMDATSymbol(COMDATSymbol), in MCSectionCOFF() 52 assert ((Characteristics & 0x00F00000) == 0 && in MCSectionCOFF() 69 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics()
|
/external/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 49 YAMLObj.Header.Characteristics = Header->Characteristics; in dumpHeader() 58 uint32_t Characteristics = Sect->Characteristics; in dumpSections() local 59 Sec.Header.Characteristics = Characteristics; in dumpSections() 60 Sec.Alignment = 1 << (((Characteristics >> 20) & 0xf) - 1); in dumpSections() 107 YAMLWE.Characteristics = ObjWE->Characteristics; in dumpWeakExternal()
|
/external/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 369 coff_section->Header.Characteristics = Sec.getCharacteristics(); in DefineSection() 371 uint32_t &Characteristics = coff_section->Header.Characteristics; in DefineSection() local 373 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break; in DefineSection() 374 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break; in DefineSection() 375 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break; in DefineSection() 376 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break; in DefineSection() 377 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break; in DefineSection() 378 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break; in DefineSection() 379 case 64: Characteristics |= COFF::IMAGE_SCN_ALIGN_64BYTES; break; in DefineSection() 380 case 128: Characteristics |= COFF::IMAGE_SCN_ALIGN_128BYTES; break; in DefineSection() [all …]
|
D | MCContext.cpp | 282 unsigned Characteristics, in getCOFFSection() argument 300 MCSectionCOFF(CachedName, Characteristics, COMDATSymbol, Selection, Kind); in getCOFFSection() 307 MCContext::getCOFFSection(StringRef Section, unsigned Characteristics, in getCOFFSection() argument 309 return getCOFFSection(Section, Characteristics, Kind, "", 0); in getCOFFSection()
|
D | MCSectionCOFF.cpp | 36 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in setSelection()
|
/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 | obj2yaml-coff-weak-external.test | 3 COFF-I386: Characteristics: 0
|
D | yaml2obj-readobj.test | 6 // COFF-I386: Characteristics [ (0x200)
|
/external/llvm/include/llvm/Object/ |
D | COFFYAML.h | 24 inline Characteristics operator|(Characteristics a, Characteristics b) { 26 return static_cast<Characteristics>(Ret); 134 struct ScalarBitSetTraits<COFF::Characteristics> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 135 static void bitset(IO &IO, COFF::Characteristics &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
D | COFF.h | 60 support::ulittle16_t Characteristics; member 252 support::ulittle32_t Characteristics; member 257 return Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL && in hasExtendedRelocations() 286 support::ulittle32_t Characteristics; member 312 support::ulittle32_t Characteristics; member
|
/external/llvm/test/MC/ARM/Windows/ |
D | multiple-text-sections.s | 32 @ CHECK: Characteristics [ 41 @ CHECK: Characteristics [ 50 @ CHECK: Characteristics [
|
D | text-attributes.s | 21 @ CHECK: Characteristics [
|
/external/llvm/docs/ |
D | yaml2obj.rst | 25 Characteristics: [ IMAGE_SCN_CNT_CODE 87 Characteristics: 114 Characteristics:
|
/external/llvm/include/llvm/Support/ |
D | COFF.h | 55 uint16_t Characteristics; member 84 enum Characteristics { enum 229 uint32_t Characteristics; member 359 uint32_t Characteristics; member
|
/external/llvm/test/tools/llvm-readobj/ |
D | file-headers.test | 29 COFF-ARM-NEXT: Characteristics [ (0x0) 44 COFF32-NEXT: Characteristics [ (0x0) 59 COFF64-NEXT: Characteristics [ (0x0) 136 PE32-NEXT: Characteristics [ (0x102) 218 COFF-UNKNOWN-NEXT: Characteristics [ (0x0) 232 COFF-IMPORTLIB-NEXT: Characteristics [ (0x8)
|
/external/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 36 unsigned Characteristics, 39 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics, 293 unsigned Characteristics, in ParseSectionSwitch() argument 295 return ParseSectionSwitch(Section, Characteristics, Kind, "", (COFF::COMDATType)0); in ParseSectionSwitch() 299 unsigned Characteristics, in ParseSectionSwitch() argument 308 Section, Characteristics, Kind, COMDATSymName, Type)); in ParseSectionSwitch()
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 811 unsigned Characteristics = getCOFFSectionFlags(Kind); in getExplicitSectionGlobal() local 825 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in getExplicitSectionGlobal() 831 Characteristics, in getExplicitSectionGlobal() 868 unsigned Characteristics = getCOFFSectionFlags(Kind); in SelectSectionForGlobal() local 870 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in SelectSectionForGlobal() 883 return getContext().getCOFFSection(Name, Characteristics, Kind, in SelectSectionForGlobal() 971 unsigned Characteristics = in getAssociativeCOFFSection() local 973 return Ctx.getCOFFSection(SecCOFF->getSectionName(), Characteristics, in getAssociativeCOFFSection()
|
/external/llvm/test/MC/COFF/ |
D | directive-section-characteristics.ll | 11 ; CHECK: Characteristics [
|
D | module-asm.ll | 20 ; CHECK-NEXT: Characteristics [ (0x60300020)
|
/external/llvm/tools/yaml2obj/ |
D | yaml2coff.cpp | 62 Sec.Header.Characteristics |= (Log2_32(Sec.Alignment) + 1) << 20; in parseSections() 232 << binary_le(CP.Obj.Header.Characteristics); in writeCOFF() 247 << binary_le(i->Header.Characteristics); in writeCOFF() 299 << binary_le(i->WeakExternal->Characteristics) in writeCOFF()
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 568 uint32_t Characteristics = 0; in getSymbolNMTypeChar() local 574 Characteristics = Section->Characteristics; in getSymbolNMTypeChar() 582 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE) in getSymbolNMTypeChar() 584 else if (Characteristics & COFF::IMAGE_SCN_MEM_READ && in getSymbolNMTypeChar() 585 ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only. in getSymbolNMTypeChar() 587 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in getSymbolNMTypeChar() 589 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in getSymbolNMTypeChar() 591 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO) in getSymbolNMTypeChar()
|
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/ |
D | float.pxd | 1 # 5.2.4.2.2 Characteristics of floating types <float.h>
|
/external/chromium_org/chrome/browser/install_verification/win/ |
D | imported_module_verification.cc | 57 while (image_descriptor->Characteristics) { in ScanImportAddressTable()
|