Home
last modified time | relevance | path

Searched full:characteristics (Results 1 – 25 of 232) sorted by relevance

12345678910

/external/llvm/include/llvm/MC/
DMCSectionCOFF.h28 /// Characteristics - This is the Characteristics field of a section,
30 unsigned Characteristics; variable
33 /// it is a COMDAT section (Characteristics & IMAGE_SCN_LNK_COMDAT) != 0
38 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() argument
41 Characteristics(Characteristics), Selection (Selection) { in MCSectionCOFF()
42 assert ((Characteristics & 0x00F00000) == 0 && in MCSectionCOFF()
59 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics()
DSubtargetFeature.h1 //===-- llvm/MC/SubtargetFeature.h - CPU characteristics --------*- C++ -*-===//
10 // This file defines and manages user or tool specified CPU characteristics.
/external/llvm/lib/MC/
DWinCOFFObjectWriter.cpp384 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 …]
DWinCOFFStreamer.cpp101 unsigned Characteristics, in SetSection() argument
103 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind)); in SetSection()
149 unsigned Characteristics = in AddCommonSymbol() local
158 SectionName, Characteristics, Selection, SectionKind::getBSS()); in AddCommonSymbol()
/external/llvm/utils/yaml2obj/
Dyaml2obj.cpp139 if (KeyValue == "Characteristics") { in parseHeader()
238 bool parseHeaderCharacteristics(yaml::Node *Characteristics) { in parseHeaderCharacteristics()
239 yaml::ScalarNode *Value = dyn_cast<yaml::ScalarNode>(Characteristics); in parseHeaderCharacteristics()
241 = dyn_cast<yaml::SequenceNode>(Characteristics); in parseHeaderCharacteristics()
243 YS.printError(Characteristics, in parseHeaderCharacteristics()
244 "Characteristics must either be a number or sequence"); in parseHeaderCharacteristics()
248 if (!getAs(Value, Header.Characteristics)) { in parseHeaderCharacteristics()
249 YS.printError(Value, "Invalid value for Characteristics"); in parseHeaderCharacteristics()
259 "Characteristics must be scalar values"); in parseHeaderCharacteristics()
264 uint16_t Characteristic = StringSwitch<COFF::Characteristics>(Char) in parseHeaderCharacteristics()
[all …]
/external/llvm/lib/Object/
DCOFFObjectFile.cpp226 uint32_t Characteristics = 0; in getSymbolNMTypeChar() local
231 Characteristics = Section->Characteristics; in getSymbolNMTypeChar()
253 if (Characteristics & COFF::IMAGE_SCN_CNT_CODE) in getSymbolNMTypeChar()
255 else if ( Characteristics & COFF::IMAGE_SCN_MEM_READ in getSymbolNMTypeChar()
256 && ~Characteristics & COFF::IMAGE_SCN_MEM_WRITE) // Read only. in getSymbolNMTypeChar()
258 else if (Characteristics & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in getSymbolNMTypeChar()
260 else if (Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in getSymbolNMTypeChar()
262 else if (Characteristics & COFF::IMAGE_SCN_LNK_INFO) in getSymbolNMTypeChar()
341 Res = uint64_t(1) << (((sec->Characteristics & 0x00F00000) >> 20) - 1); in getSectionAlignment()
348 Result = sec->Characteristics & COFF::IMAGE_SCN_CNT_CODE; in isSectionText()
[all …]
/external/llvm/docs/
Dyaml2obj.rst25 Characteristics: [ IMAGE_SCN_CNT_CODE
87 Characteristics:
114 Characteristics:
/external/llvm/test/Object/Inputs/COFF/
Dx86-64.yaml7Characteristics: [IMAGE_SCN_CNT_CODE, IMAGE_SCN_ALIGN_16BYTES, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_ME…
28Characteristics: [IMAGE_SCN_CNT_INITIALIZED_DATA, IMAGE_SCN_ALIGN_1BYTES, IMAGE_SCN_MEM_READ, IMAG…
Di386.yaml7Characteristics: [IMAGE_SCN_CNT_CODE, IMAGE_SCN_ALIGN_16BYTES, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_ME…
28Characteristics: [IMAGE_SCN_CNT_INITIALIZED_DATA, IMAGE_SCN_ALIGN_1BYTES, IMAGE_SCN_MEM_READ, IMAG…
/external/llvm/utils/obj2yaml/
Dcoff2yaml.cpp265 Out << " Characteristics: ["; in yamlCOFFSections()
266 yaml::writeBitMask(Out, SectionCharacteristicsPairs1, sect->Characteristics); in yamlCOFFSections()
268 sect->Characteristics & 0x00F00000, "# Unrecognized_IMAGE_SCN_ALIGN") in yamlCOFFSections()
270 yaml::writeBitMask(Out, SectionCharacteristicsPairs2, sect->Characteristics); in yamlCOFFSections()
272 yaml::writeHexNumber(Out, sect->Characteristics) << endl; in yamlCOFFSections()
/external/icu4c/common/
Dbrkeng.h130 * @return A LanguageBreakEngine with the desired characteristics, or 0.
258 * @return A LanguageBreakEngine with the desired characteristics, or 0.
271 * @return A LanguageBreakEngine with the desired characteristics, or 0.
281 * @return A DictionaryMatcher with the desired characteristics, or NULL.
Dudataswp.h203 * characteristics.
204 * Values of -1 for any of the characteristics mean the local platform's
205 * characteristics.
/external/clang/lib/Headers/
Dfloat.h1 /*===---- float.h - Characteristics of floating point types ----------------===
74 /* Characteristics of floating point types, C99 5.2.4.2.2 */
/external/marisa-trie/
Dconfigure.ac20 # Checks for typedefs, structures, and compiler characteristics.
/external/genext2fs/
Dconfigure.in26 # Checks for typedefs, structures, and compiler characteristics.
/external/iptables/extensions/
Dlibxt_owner.man1 This module attempts to match various characteristics of the packet creator,
/external/llvm/include/llvm/Support/
DCOFF.h49 uint16_t Characteristics; member
78 enum Characteristics { enum
219 uint32_t Characteristics; member
346 uint32_t Characteristics; member
/external/llvm/include/llvm/Object/
DCOFF.h34 support::ulittle16_t Characteristics; member
75 support::ulittle32_t Characteristics; member
/external/jsilver/src/com/google/clearsilver/jsilver/template/
DMacro.java22 * An executable macro. This exhibits all the same characteristics of a Template.
/external/blktrace/btreplay/doc/
Dabstract.tex33 This document will discuss the operating characteristics of
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp725 unsigned Characteristics = getCOFFSectionFlags(Kind); in getExplicitSectionGlobal() local
729 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in getExplicitSectionGlobal()
735 Characteristics, in getExplicitSectionGlobal()
768 unsigned Characteristics = getCOFFSectionFlags(Kind); in SelectSectionForGlobal() local
770 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT; in SelectSectionForGlobal()
772 return getContext().getCOFFSection(Name.str(), Characteristics, in SelectSectionForGlobal()
/external/llvm/lib/Target/Sparc/
DSparcSubtarget.cpp34 // Determine default and user specified characteristics in SparcSubtarget()
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/
DSDL_wsconsvideo.h53 struct wsdisplay_fbinfo info; /* frame buffer characteristics */
/external/protobuf/gtest/
Dconfigure.ac48 # and architecture characteristics.
/external/llvm/docs/HistoricalNotes/
D2001-04-16-DynamicCompilation.txt41 characteristics of the dynamic execution environment.

12345678910