Searched refs:ImportKind (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndex.h | 450 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 D | ModuleSummaryIndexYAML.h | 233 static_cast<GlobalValueSummary::ImportKind>(FSum.ImportType)),
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | InputFiles.h | 71 ImportKind, enumerator 344 static bool classof(const InputFile *f) { return f->kind() == ImportKind; } in classof()
|
H A D | InputFiles.cpp | 64 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 D | FunctionImport.h | 41 std::unordered_map<GlobalValue::GUID, GlobalValueSummary::ImportKind>;
|
/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 | 3335 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 D | LLParser.h | 308 GlobalValueSummary::ImportKind &Res);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ModuleSummaryAnalysis.cpp | 660 GlobalValueSummary::ImportKind::Definition); in computeFunctionSummary()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionImport.cpp | 1717 -> std::optional<GlobalValueSummary::ImportKind> { in importFunctions()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 2122 GlobalValueSummary::ImportKind &Res) { in parseOptionalImportType() 10323 GlobalValueSummary::ImportKind IK; in parseGVFlags()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1157 auto IK = GlobalValueSummary::ImportKind((RawFlags >> 10) & 1); // 1 bit in getDecodedGVSummaryFlags()
|