Home
last modified time | relevance | path

Searched refs:ImportKind (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h450 enum ImportKind : unsigned {
510 bool CanAutoHide, ImportKind ImportType)
600 return Flags.ImportType == GlobalValueSummary::ImportKind::Declaration;
603 void setImportKind(ImportKind IK) { Flags.ImportType = IK; }
605 GlobalValueSummary::ImportKind importType() const {
606 return static_cast<ImportKind>(Flags.ImportType);
858 /*CanAutoHide=*/false, GlobalValueSummary::ImportKind::Definition),
H A DModuleSummaryIndexYAML.h233 static_cast<GlobalValueSummary::ImportKind>(FSum.ImportType)),
/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.h71 ImportKind, enumerator
344 static bool classof(const InputFile *f) { return f->kind() == ImportKind; } in classof()
H A DInputFiles.cpp64 if (file->parentName.empty() || file->kind() == coff::InputFile::ImportKind) in toString()
988 : InputFile(ctx, ImportKind, m), live(!ctx.config.doGC), thunkLive(live) {} in ImportFile()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h41 std::unordered_map<GlobalValue::GUID, GlobalValueSummary::ImportKind>;
/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.cpp3335 static const char *getImportTypeName(GlobalValueSummary::ImportKind IK) { in getImportTypeName()
3585 << getImportTypeName(GlobalValueSummary::ImportKind(GVFlags.ImportType)); in printSummary()
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h308 GlobalValueSummary::ImportKind &Res);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp660 GlobalValueSummary::ImportKind::Definition); in computeFunctionSummary()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp1717 -> std::optional<GlobalValueSummary::ImportKind> { in importFunctions()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp2122 GlobalValueSummary::ImportKind &Res) { in parseOptionalImportType()
10323 GlobalValueSummary::ImportKind IK; in parseGVFlags()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1157 auto IK = GlobalValueSummary::ImportKind((RawFlags >> 10) & 1); // 1 bit in getDecodedGVSummaryFlags()