Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp250 ImportType Type, ImportNameType NameType,
545 ImportType ImportType, ImportNameType NameType, in createShortImport() argument
563 Imp->TypeInfo = (NameType << 2) | ImportType; in createShortImport()
687 ImportType ImpType; in writeImportLibrary()
695 ImportType ImportType = IMPORT_CODE; in writeImportLibrary() local
697 ImportType = IMPORT_DATA; in writeImportLibrary()
699 ImportType = IMPORT_CONST; in writeImportLibrary()
740 D.ImpType = ImportType; in writeImportLibrary()
750 if (ImportType == IMPORT_CODE && isArm64EC(M)) { in writeImportLibrary()
765 Members.push_back(OF.createShortImport(Name, E.Ordinal, ImportType, in writeImportLibrary()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h141 unsigned ImportType;
187 io.mapOptional("ImportType", summary.ImportType);
233 static_cast<GlobalValueSummary::ImportKind>(FSum.ImportType)),
258 FSum->flags().ImportType, Refs, FSum->type_tests(),
H A DModuleSummaryIndex.h504 unsigned ImportType : 1;
510 bool CanAutoHide, ImportKind ImportType)
514 ImportType(static_cast<unsigned>(ImportType)) {}
600 return Flags.ImportType == GlobalValueSummary::ImportKind::Declaration;
603 void setImportKind(ImportKind IK) { Flags.ImportType = IK; }
606 return static_cast<ImportKind>(Flags.ImportType);
/freebsd/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/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp647 if (Flags.ImportType == GlobalValueSummary::ImportKind::Definition) in exportToDot()
649 else if (Flags.ImportType == GlobalValueSummary::ImportKind::Declaration) in exportToDot()
H A DAsmWriter.cpp3585 << getImportTypeName(GlobalValueSummary::ImportKind(GVFlags.ImportType)); in printSummary()
/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.h402 llvm::COFF::ImportType importType;
H A DInputFiles.cpp1208 s->importType = code ? ImportType::IMPORT_CODE : ImportType::IMPORT_DATA; in parse()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp214 for (auto &[Fn, ImportType] : Entry.getFunctions()) in computeLTOCacheKey()
215 ImportedGUIDs.push_back(std::make_pair(Fn, ImportType)); in computeLTOCacheKey()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1257 unsigned ImportType = Flags.ImportType | ImportAsDecl; in getEncodedGVSummaryFlags() local
1258 RawFlags |= (ImportType << 10); // 1 bit in getEncodedGVSummaryFlags()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp10326 GVFlags.ImportType = static_cast<unsigned>(IK); in parseGVFlags()