HomeSort by relevance Sort by last modified time
    Searched defs:Characteristics (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/MC/
MCSectionCOFF.h 28 /// Characteristics - This is the Characteristics field of a section,
30 unsigned Characteristics;
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics,
41 Characteristics(Characteristics), Selection (Selection) {
42 assert ((Characteristics & 0x00F00000) == 0 &&
53 unsigned getCharacteristics() const { return Characteristics; }
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 612 unsigned Characteristics = getCOFFSectionFlags(Kind);
614 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
616 return getContext().getCOFFSection(Name.str(), Characteristics,
  /external/llvm/include/llvm/Object/
COFF.h 31 support::ulittle16_t Characteristics;
72 support::ulittle32_t Characteristics;
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 91 unsigned Characteristics,
93 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind));
143 unsigned Characteristics =
152 SectionName, Characteristics, Selection, SectionKind::getBSS());
WinCOFFObjectWriter.cpp 384 coff_section->Header.Characteristics = Sec.getCharacteristics();
386 uint32_t &Characteristics = coff_section->Header.Characteristics;
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 |= COFF::IMAGE_SCN_ALIGN_64BYTES; break
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 215 uint32_t Characteristics = 0;
220 Characteristics = Section->Characteristics;
240 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE)
242 else if ( Characteristics & COFF::IMAGE_SCN_MEM_READ
243 && ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only.
245 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
247 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
249 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO)
359 Res = uint64_t(1) << (((sec->Characteristics & 0x00F00000) >> 20) - 1)
    [all...]
  /external/llvm/include/llvm/Support/
COFF.h 48 uint16_t Characteristics;
155 uint32_t Characteristics;
262 uint32_t Characteristics;
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 180 unsigned short Characteristics;
252 unsigned long Characteristics;
261 /* These defines are for the Characteristics bitfield. */
426 unsigned long characteristics; member in struct:_PDB_SYMBOL_RANGE
438 unsigned long characteristics; member in struct:_PDB_SYMBOL_RANGE_EX
    [all...]

Completed in 336 milliseconds