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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp462 GlobalValueSummary::GVFlags Flags(F.getLinkage(), NotEligibleForImport,
583 GlobalValueSummary::GVFlags Flags(V.getLinkage(), NonRenamableLocal,
625 GlobalValueSummary::GVFlags Flags(A.getLinkage(), NonRenamableLocal,
700 GlobalValueSummary::GVFlags GVFlags(GlobalValue::InternalLinkage,
710 GVFlags, /*InstCount=*/0,
730 GVFlags,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h287 struct GVFlags { struct in class:llvm::CalleeInfo::GlobalValueSummary
324 explicit GVFlags(GlobalValue::LinkageTypes Linkage, function in struct:llvm::CalleeInfo::GlobalValueSummary::GVFlags
335 GVFlags Flags;
358 GlobalValueSummary(SummaryKind K, GVFlags Flags, std::vector<ValueInfo> Refs)
384 /// Get the flags for this GlobalValue (see \p struct GVFlags).
385 GVFlags flags() const { return Flags; }
438 AliasSummary(GVFlags Flags)
596 FunctionSummary::GVFlags(
636 FunctionSummary(GVFlags Flags, unsigned NumInsts, FFlags FunFlags,
850 GlobalVarSummary(GVFlags Flag
[all...]
H A DModuleSummaryIndexYAML.h225 GlobalValueSummary::GVFlags(
/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8245 /// ::= 'function' ':' '(' 'module' ':' ModuleReference ',' GVFlags
8255 GlobalValueSummary::GVFlags GVFlags = GlobalValueSummary::GVFlags(
8268 ParseToken(lltok::comma, "expected ',' here") || ParseGVFlags(GVFlags) ||
8306 GVFlags, InstCount, FFlags, /*EntryCount=*/0, std::move(Refs),
8316 AddGlobalValueToIndex(Name, GUID, (GlobalValue::LinkageTypes)GVFlags.Linkage,
8323 /// ::= 'variable' ':' '(' 'module' ':' ModuleReference ',' GVFlags
8331 GlobalValueSummary::GVFlags GVFlags
[all...]
H A DLLParser.h350 bool ParseGVFlags(GlobalValueSummary::GVFlags &GVFlags);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3218 GlobalValueSummary::GVFlags GVFlags = Summary.flags(); local
3219 GlobalValue::LinkageTypes LT = (GlobalValue::LinkageTypes)GVFlags.Linkage;
3224 Out << ", notEligibleToImport: " << GVFlags.NotEligibleToImport;
3225 Out << ", live: " << GVFlags.Live;
3226 Out << ", dsoLocal: " << GVFlags.DSOLocal;
3227 Out << ", canAutoHide: " << GVFlags.CanAutoHide;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp740 unsigned char GVFlags = Subtarget->classifyGlobalReference(GV); local
743 if (isGlobalRelativeToPICBase(GVFlags)) {
750 if (!isGlobalStubReference(GVFlags)) {
757 AM.GVOpFlags = GVFlags;
774 StubAM.GVOpFlags = GVFlags;
H A DX86ISelLowering.cpp[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp971 static GlobalValueSummary::GVFlags getDecodedGVSummaryFlags(uint64_t RawFlags,
986 return GlobalValueSummary::GVFlags(Linkage, NotEligibleToImport, Live, Local, AutoHide);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1026 static uint64_t getEncodedGVSummaryFlags(GlobalValueSummary::GVFlags Flags) {

Completed in 242 milliseconds