Searched refs:ImportType (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 250 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 D | ModuleSummaryIndexYAML.h | 141 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 D | ModuleSummaryIndex.h | 504 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 D | COFF.h | 700 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 D | ModuleSummaryIndex.cpp | 647 if (Flags.ImportType == GlobalValueSummary::ImportKind::Definition) in exportToDot() 649 else if (Flags.ImportType == GlobalValueSummary::ImportKind::Declaration) in exportToDot()
|
H A D | AsmWriter.cpp | 3585 << getImportTypeName(GlobalValueSummary::ImportKind(GVFlags.ImportType)); in printSummary()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | InputFiles.h | 402 llvm::COFF::ImportType importType;
|
H A D | InputFiles.cpp | 1208 s->importType = code ? ImportType::IMPORT_CODE : ImportType::IMPORT_DATA; in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTO.cpp | 214 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 D | BitcodeWriter.cpp | 1257 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 D | LLParser.cpp | 10326 GVFlags.ImportType = static_cast<unsigned>(IK); in parseGVFlags()
|