Home
last modified time | relevance | path

Searched refs:getCharacteristics (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSectionCOFF.cpp47 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in PrintSwitchToSection()
49 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in PrintSwitchToSection()
51 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE) in PrintSwitchToSection()
53 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE) in PrintSwitchToSection()
55 else if (getCharacteristics() & COFF::IMAGE_SCN_MEM_READ) in PrintSwitchToSection()
59 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE) in PrintSwitchToSection()
61 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED) in PrintSwitchToSection()
63 if ((getCharacteristics() & COFF::IMAGE_SCN_MEM_DISCARDABLE) && in PrintSwitchToSection()
68 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) { in PrintSwitchToSection()
112 return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; in isVirtualSection()
H A DMCStreamer.cpp800 if (TextSecCOFF->getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) { in getWinCFISection()
812 MainCFISecCOFF->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT, in getWinCFISection()
H A DMCContext.cpp662 unsigned Characteristics = Sec->getCharacteristics(); in getAssociativeCOFFSection()
H A DWinCOFFObjectWriter.cpp326 Section->Header.Characteristics = MCSec.getCharacteristics(); in defineSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSectionCOFF.h66 unsigned getCharacteristics() const { return Characteristics; } in getCharacteristics() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DWindowsResource.h112 uint32_t getCharacteristics() const { return Suffix->Characteristics; } in getCharacteristics() function
177 uint32_t getCharacteristics() const { return Characteristics; } in getCharacteristics() function
H A DCOFF.h877 uint16_t getCharacteristics() const { in getCharacteristics() function
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp76 SW.printNumber("Characteristics", Ref.getCharacteristics()); in printEntry()
H A DCOFFDumper.cpp631 W.printFlags ("Characteristics", Obj->getCharacteristics(), in printFileHeaders()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp96 YAMLObj.Header.Characteristics = Obj.getCharacteristics(); in dumpHeader()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWindowsResource.cpp505 Entry.getMinorVersion(), Entry.getCharacteristics(), in addLanguageNode()
888 Table->Characteristics = CurrentNode->getCharacteristics(); in writeDirectoryTree()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp601 if (Current->getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) in ParseDirectiveLinkOnce()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp22732 auto getCharacteristics = [](SDNode *N) -> MemUseCharacteristics { in isAlias() local
22760 MemUseCharacteristics MUC0 = getCharacteristics(Op0), in isAlias()
22761 MUC1 = getCharacteristics(Op1); in isAlias()