Home
last modified time | relevance | path

Searched refs:ImportType (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp215 ImportType Type, ImportNameType NameType,
510 ImportType ImportType, ImportNameType NameType, in createShortImport() argument
528 Imp->TypeInfo = (NameType << 2) | ImportType; in createShortImport()
647 ImportType ImportType = IMPORT_CODE; in writeImportLibrary() local
649 ImportType = IMPORT_DATA; in writeImportLibrary()
651 ImportType = IMPORT_CONST; in writeImportLibrary()
683 if (ImportType == IMPORT_CODE && isArm64EC(Machine)) { in writeImportLibrary()
697 Members.push_back(OF.createShortImport(Name, E.Ordinal, ImportType, in writeImportLibrary()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h700 enum ImportType : unsigned { enum
780 ImportType getType() const { return static_cast<ImportType>(TypeInfo & 0x3); } in getType()
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DInputFiles.h399 llvm::COFF::ImportType importType;
H A DInputFiles.cpp1159 s->importType = code ? ImportType::IMPORT_CODE : ImportType::IMPORT_DATA; in parse()