Searched refs:GVFlags (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp461 GlobalValueSummary::GVFlags Flags(F.getLinkage(), NotEligibleForImport,
579 GlobalValueSummary::GVFlags Flags(V.getLinkage(), NonRenamableLocal,
618 GlobalValueSummary::GVFlags Flags(A.getLinkage(), NonRenamableLocal,
692 GlobalValueSummary::GVFlags GVFlags(GlobalValue::InternalLinkage,
702 GVFlags, /*InstCount=*/0,
721 GVFlags, GlobalVarSummary::GVarFlags(false, false),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h286 struct GVFlags { struct in class:llvm::CalleeInfo::GlobalValueSummary
323 explicit GVFlags(GlobalValue::LinkageTypes Linkage, function in struct:llvm::CalleeInfo::GlobalValueSummary::GVFlags
334 GVFlags Flags;
357 GlobalValueSummary(SummaryKind K, GVFlags Flags, std::vector<ValueInfo> Refs)
383 /// Get the flags for this GlobalValue (see \p struct GVFlags).
384 GVFlags flags() const { return Flags; }
437 AliasSummary(GVFlags Flags)
560 FunctionSummary::GVFlags(
595 FunctionSummary(GVFlags Flags, unsigned NumInsts, FFlags FunFlags,
770 GlobalVarSummary(GVFlags Flag
[all...]
H A DModuleSummaryIndexYAML.h224 GlobalValueSummary::GVFlags(
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8075 /// ::= 'function' ':' '(' 'module' ':' ModuleReference ',' GVFlags
8084 GlobalValueSummary::GVFlags GVFlags = GlobalValueSummary::GVFlags(
8096 ParseToken(lltok::comma, "expected ',' here") || ParseGVFlags(GVFlags) ||
8130 GVFlags, InstCount, FFlags, /*EntryCount=*/0, std::move(Refs),
8139 AddGlobalValueToIndex(Name, GUID, (GlobalValue::LinkageTypes)GVFlags.Linkage,
8146 /// ::= 'variable' ':' '(' 'module' ':' ModuleReference ',' GVFlags
8154 GlobalValueSummary::GVFlags GVFlags
[all...]
H A DLLParser.h354 bool ParseGVFlags(GlobalValueSummary::GVFlags &GVFlags);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3090 GlobalValueSummary::GVFlags GVFlags = Summary.flags(); local
3091 GlobalValue::LinkageTypes LT = (GlobalValue::LinkageTypes)GVFlags.Linkage;
3096 Out << ", notEligibleToImport: " << GVFlags.NotEligibleToImport;
3097 Out << ", live: " << GVFlags.Live;
3098 Out << ", dsoLocal: " << GVFlags.DSOLocal;
3099 Out << ", canAutoHide: " << GVFlags.CanAutoHide;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp741 unsigned char GVFlags = Subtarget->classifyGlobalReference(GV); local
744 if (isGlobalRelativeToPICBase(GVFlags)) {
751 if (!isGlobalStubReference(GVFlags)) {
758 AM.GVOpFlags = GVFlags;
775 StubAM.GVOpFlags = GVFlags;
H A DX86ISelLowering.cpp[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp968 static GlobalValueSummary::GVFlags getDecodedGVSummaryFlags(uint64_t RawFlags,
983 return GlobalValueSummary::GVFlags(Linkage, NotEligibleToImport, Live, Local, AutoHide);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1014 static uint64_t getEncodedGVSummaryFlags(GlobalValueSummary::GVFlags Flags) {

Completed in 380 milliseconds