Searched defs:Characteristics (Results 1 - 25 of 31) sorted by relevance

12

/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSectionCOFF.h28 /// Characteristics - This is the Characteristics field of a section,
30 unsigned Characteristics; member in class:llvm::MCSectionCOFF
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
41 Characteristics(Characteristics), Selection (Selection) {
42 assert ((Characteristics & 0x00F00000) == 0 &&
53 unsigned getCharacteristics() const { return Characteristics; }
H A DMCContext.h192 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
195 const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics, argument
197 return getCOFFSection (Section, Characteristics, 0, Kind);
/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h31 /// This is the Characteristics field of a section, drawn from the enums
33 mutable unsigned Characteristics; member in class:llvm::final
47 /// section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
52 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
56 Characteristics(Characteristics), COMDATSymbol(COMDATSymbol),
58 assert((Characteristics & 0x00F00000) == 0 &&
70 unsigned getCharacteristics() const { return Characteristics; }
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DRawTypes.h37 support::ulittle32_t Characteristics; member in struct:llvm::pdb::SectionContrib
/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.cpp137 const unsigned Characteristics = COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | local
164 return getContext().getCOFFSection(".rdata", Characteristics, Kind,
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DModInfo.cpp27 ulittle32_t Characteristics; member in struct:__anon14024::SCBytes
/external/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp193 void ScalarBitSetTraits<COFF::Characteristics>::bitset(
194 IO &IO, COFF::Characteristics &Value) {
266 : Characteristics(COFFYAML::WeakExternalCharacteristics(0)) {}
268 : Characteristics(COFFYAML::WeakExternalCharacteristics(C)) {}
269 uint32_t denormalize(IO &) { return Characteristics; }
270 COFFYAML::WeakExternalCharacteristics Characteristics; member in struct:llvm::yaml::__anon14103::NWeakExternalCharacteristics
275 : Characteristics(COFF::SectionCharacteristics(0)) {}
277 : Characteristics(COFF::SectionCharacteristics(C)) {}
278 uint32_t denormalize(IO &) { return Characteristics; }
279 COFF::SectionCharacteristics Characteristics; member in struct:llvm::yaml::__anon14103::NSectionCharacteristics
312 COFF::Characteristics Characteristics; member in struct:llvm::yaml::__anon14103::NHeaderCharacteristics
337 COFF::DLLCharacteristics Characteristics; member in struct:llvm::yaml::__anon14103::NDLLCharacteristics
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DCOFF.h31 support::ulittle16_t Characteristics; member in struct:llvm::object::coff_file_header
67 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_section
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp616 unsigned Characteristics = getCOFFSectionFlags(Kind); local
618 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
620 return getContext().getCOFFSection(Name.str(), Characteristics,
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCContext.cpp224 unsigned Characteristics,
236 Characteristics,
223 getCOFFSection(StringRef Section, unsigned Characteristics, int Selection, SectionKind Kind) argument
H A DWinCOFFStreamer.cpp91 unsigned Characteristics,
93 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind));
143 unsigned Characteristics = local
152 SectionName, Characteristics, Selection, SectionKind::getBSS());
90 SetSection(StringRef Section, unsigned Characteristics, SectionKind Kind) argument
H A DWinCOFFObjectWriter.cpp384 coff_section->Header.Characteristics = Sec.getCharacteristics();
386 uint32_t &Characteristics = coff_section->Header.Characteristics; local
388 case 1: Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES; break;
389 case 2: Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES; break;
390 case 4: Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES; break;
391 case 8: Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES; break;
392 case 16: Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES; break;
393 case 32: Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES; break;
394 case 64: Characteristics |
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DCOFFAsmParser.cpp34 unsigned Characteristics,
162 unsigned Characteristics,
169 Section, Characteristics, Kind));
161 ParseSectionSwitch(StringRef Section, unsigned Characteristics, SectionKind Kind) argument
/external/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp36 unsigned Characteristics,
39 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics,
294 unsigned Characteristics,
296 return ParseSectionSwitch(Section, Characteristics, Kind, "", (COFF::COMDATType)0);
300 unsigned Characteristics,
309 Section, Characteristics, Kind, COMDATSymName, Type));
293 ParseSectionSwitch(StringRef Section, unsigned Characteristics, SectionKind Kind) argument
299 ParseSectionSwitch(StringRef Section, unsigned Characteristics, SectionKind Kind, StringRef COMDATSymName, COFF::COMDATType Type) argument
/external/swiftshader/third_party/LLVM/lib/Object/
H A DCOFFObjectFile.cpp222 uint32_t Characteristics = 0; local
227 Characteristics = Section->Characteristics;
247 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE)
249 else if ( Characteristics & COFF::IMAGE_SCN_MEM_READ
250 && ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only.
252 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
254 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
256 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO)
344 Res = uint64_t(1) << (((sec->Characteristics
[all...]
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp892 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); local
906 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
912 return getContext().getCOFFSection(Name, Characteristics, Kind, COMDATSymName,
941 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); local
943 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
960 return getContext().getCOFFSection(Name, Characteristics, Kind,
965 return getContext().getCOFFSection(Name, Characteristics, Kind, TmpData,
1018 unsigned Characteristics = getCOFFSectionFlags(Kind, TM); local
1019 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
1022 return getContext().getCOFFSection(Name, Characteristics, Kin
[all...]
/external/llvm/lib/MC/
H A DMCContext.cpp388 unsigned Characteristics,
413 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
420 unsigned Characteristics,
423 return getCOFFSection(Section, Characteristics, Kind, "", 0, GenericSectionID,
444 unsigned Characteristics = Sec->getCharacteristics(); local
446 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
447 return getCOFFSection(Sec->getSectionName(), Characteristics,
452 return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(),
387 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, StringRef COMDATSymName, int Selection, unsigned UniqueID, const char *BeginSymName) argument
419 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, const char *BeginSymName) argument
H A DWinCOFFObjectWriter.cpp288 coff_section->Header.Characteristics = Sec.getCharacteristics();
290 uint32_t &Characteristics = coff_section->Header.Characteristics; local
293 Characteristics |= COFF::IMAGE_SCN_ALIGN_1BYTES;
296 Characteristics |= COFF::IMAGE_SCN_ALIGN_2BYTES;
299 Characteristics |= COFF::IMAGE_SCN_ALIGN_4BYTES;
302 Characteristics |= COFF::IMAGE_SCN_ALIGN_8BYTES;
305 Characteristics |= COFF::IMAGE_SCN_ALIGN_16BYTES;
308 Characteristics |= COFF::IMAGE_SCN_ALIGN_32BYTES;
311 Characteristics |
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h160 ulittle32_t Characteristics; member in struct:llvm::codeview::SectionSym::Hdr
190 ulittle32_t Characteristics; member in struct:llvm::codeview::CoffGroupSym::Hdr
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCOFF.h48 uint16_t Characteristics; member in struct:llvm::COFF::header
155 uint32_t Characteristics; member in struct:llvm::COFF::section
262 uint32_t Characteristics; member in struct:llvm::COFF::AuxiliaryWeakExternal
/external/llvm/include/llvm/Object/
H A DCOFF.h69 support::ulittle16_t Characteristics; member in struct:llvm::object::coff_file_header
173 support::ulittle32_t Characteristics; member in struct:llvm::object::debug_directory
215 // dumpbin reports this field as "Characteristics" instead of "Attributes".
429 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_section
434 return (Characteristics & COFF::IMAGE_SCN_LNK_NRELOC_OVFL) &&
440 if (Characteristics & COFF::IMAGE_SCN_TYPE_NO_PAD)
444 uint32_t Shift = (Characteristics >> 20) & 0xF;
481 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_aux_weak_external
546 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_tls_directory
549 uint32_t Shift = (Characteristics
560 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_load_configuration32
583 support::ulittle32_t Characteristics; member in struct:llvm::object::coff_load_configuration64
[all...]
/external/llvm/include/llvm/Support/
H A DCOFF.h62 uint16_t Characteristics; member in struct:llvm::COFF::header
110 enum Characteristics { enum in namespace:llvm::COFF
245 uint32_t Characteristics; member in struct:llvm::COFF::section
376 uint32_t Characteristics; member in struct:llvm::COFF::AuxiliaryWeakExternal
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCOFF.h67 uint16_t Characteristics; member in struct:llvm::COFF::header
115 enum Characteristics { enum in namespace:llvm::COFF
250 uint32_t Characteristics; member in struct:llvm::COFF::section
381 uint32_t Characteristics; member in struct:llvm::COFF::AuxiliaryWeakExternal
/external/syslinux/efi32/include/efi/ia32/
H A Dpe.h80 UINT16 Characteristics; member in struct:_IMAGE_FILE_HEADER
249 UINT32 Characteristics; member in struct:_IMAGE_SECTION_HEADER
553 UINT32 Characteristics; member in struct:_IMAGE_EXPORT_DIRECTORY
588 UINT32 Characteristics; member in struct:_IMAGE_IMPORT_DESCRIPTOR
/external/syslinux/efi64/include/efi/x86_64/
H A Dpe.h80 UINT16 Characteristics; member in struct:_IMAGE_FILE_HEADER
249 UINT32 Characteristics; member in struct:_IMAGE_SECTION_HEADER
553 UINT32 Characteristics; member in struct:_IMAGE_EXPORT_DIRECTORY
588 UINT32 Characteristics; member in struct:_IMAGE_IMPORT_DESCRIPTOR

Completed in 3530 milliseconds

12