Home
last modified time | relevance | path

Searched refs:GUID (Results 1 – 25 of 120) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DGUID.h21 struct GUID { struct
25 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument
29 inline bool operator<(const GUID &LHS, const GUID &RHS) {
33 inline bool operator<=(const GUID &LHS, const GUID &RHS) {
37 inline bool operator>(const GUID &LHS, const GUID &RHS) {
41 inline bool operator>=(const GUID &LHS, const GUID &RHS) {
45 inline bool operator!=(const GUID &LHS, const GUID &RHS) {
49 raw_ostream &operator<<(raw_ostream &OS, const GUID &Guid);
DFormatters.h63 template <> struct format_provider<codeview::GUID> {
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
/freebsd-12-stable/sys/contrib/edk2/Include/Library/
DPcdLib.h1223 IN CONST GUID *Guid,
1245 IN CONST GUID *Guid,
1264 IN CONST GUID *Guid,
1286 IN CONST GUID *Guid,
1308 IN CONST GUID *Guid,
1330 IN CONST GUID *Guid,
1352 IN CONST GUID *Guid,
1508 IN CONST GUID *Guid,
1533 IN CONST GUID *Guid,
1558 IN CONST GUID *Guid,
[all …]
DBaseMemoryLib.h386 GUID *
389 OUT GUID *DestinationGuid,
390 IN CONST GUID *SourceGuid
412 IN CONST GUID *Guid1,
413 IN CONST GUID *Guid2
443 IN CONST GUID *Guid
463 IN CONST GUID *Guid
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DModuleSummaryIndex.h164 std::map<GlobalValue::GUID, GlobalValueSummaryInfo>;
181 GlobalValue::GUID getGUID() const { return getRef()->first; } in getGUID()
354 GlobalValue::GUID OriginalName = 0;
383 GlobalValue::GUID getOriginalName() const { return OriginalName; }
386 void setOriginalName(GlobalValue::GUID Name) { OriginalName = Name; }
493 GlobalValue::GUID getAliaseeGUID() const {
530 GlobalValue::GUID GUID;
548 std::vector<GlobalValue::GUID> TypeTests;
623 std::vector<GlobalValue::GUID>(),
660 std::vector<GlobalValue::GUID> TypeTests,
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
DLTO.cpp82 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, in computeLTOCacheKey() argument
84 const std::set<GlobalValue::GUID> &CfiFunctionDefs, in computeLTOCacheKey()
85 const std::set<GlobalValue::GUID> &CfiFunctionDecls) { in computeLTOCacheKey()
150 auto GUID = VI.getGUID(); in computeLTOCacheKey() local
151 ExportsGUID.push_back(GUID); in computeLTOCacheKey()
156 for (uint64_t GUID : ExportsGUID) { in computeLTOCacheKey() local
158 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&GUID, sizeof(GUID))); in computeLTOCacheKey()
187 sizeof(GlobalValue::GUID))); in computeLTOCacheKey()
194 std::set<GlobalValue::GUID> UsedCfiDefs; in computeLTOCacheKey()
195 std::set<GlobalValue::GUID> UsedCfiDecls; in computeLTOCacheKey()
[all …]
DThinLTOCodeGenerator.cpp138 DenseMap<GlobalValue::GUID, const GlobalValueSummary *> &PrevailingCopy) { in computePrevailingCopies() argument
332 DenseSet<GlobalValue::GUID> &PreservedGUID) { in addUsedSymbolToPreservedGUID()
343 DenseSet<GlobalValue::GUID> &GUIDs) { in computeGUIDPreservedSymbols()
353 static DenseSet<GlobalValue::GUID>
357 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols(PreservedSymbols.size()); in computeGUIDPreservedSymbols()
399 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR, in ModuleCacheEntry() argument
485 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, in ProcessThinLTOModule()
560 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> in resolvePrevailingInIndex() argument
562 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, in resolvePrevailingInIndex()
563 const DenseMap<GlobalValue::GUID, const GlobalValueSummary *> in resolvePrevailingInIndex() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DModuleSummaryIndex.cpp150 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule() local
159 GVSummaryMap[GUID] = Summary; in collectDefinedFunctionsForModule()
175 bool ModuleSummaryIndex::isGUIDLive(GlobalValue::GUID GUID) const { in isGUIDLive()
176 auto VI = getValueInfo(GUID); in isGUIDLive()
246 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) { in propagateAttributes()
380 GlobalValue::GUID Src;
381 GlobalValue::GUID Dst;
466 static std::string getNodeVisualName(GlobalValue::GUID Id) { in getNodeVisualName()
492 const ValueInfo &VI, GlobalValue::GUID Id) { in defineExternalNode()
524 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) const { in exportToDot()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/LTO/
DLTO.h47 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
49 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
51 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols);
59 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
70 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
72 const std::set<GlobalValue::GUID> &CfiFunctionDefs = {},
73 const std::set<GlobalValue::GUID> &CfiFunctionDecls = {});
350 DenseMap<GlobalValue::GUID, StringRef> PrevailingModuleForGUID;
435 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols);
446 DenseSet<GlobalValue::GUID> DynamicExportSymbols;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
DFunctionImport.h37 using FunctionsToImportTy = std::unordered_set<GlobalValue::GUID>;
91 DenseMap<GlobalValue::GUID,
181 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
182 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing);
188 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
189 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing,
DWholeProgramDevirt.h244 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols);
247 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols);
257 ModuleSummaryIndex &Summary, std::set<GlobalValue::GUID> &ExportedGUIDs,
DSampleProfileProbe.h49 PseudoProbeDescriptor(uint64_t GUID, uint64_t Hash) in PseudoProbeDescriptor() argument
50 : FunctionGUID(GUID), FunctionHash(Hash) {} in PseudoProbeDescriptor()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DFunctionImport.cpp179 GlobalValue::GUID GUID) { in selectCallee() argument
276 auto GUID = Index.getGUIDFromOriginalID(VI.getGUID()); in updateValueInfoForIndirectCalls() local
277 if (GUID == 0) in updateValueInfoForIndirectCalls()
279 return Index.getValueInfo(GUID); in updateValueInfoForIndirectCalls()
640 GlobalValue::GUID G) { in isGlobalVarSummary()
663 DenseSet<GlobalValue::GUID> FlattenedImports; in checkVariableImport()
826 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex() local
835 ImportList[Summary->modulePath()].insert(GUID); in ComputeCrossModuleImportForModuleFromIndex()
844 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, in computeDeadSymbols()
845 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing) { in computeDeadSymbols()
[all …]
DWholeProgramDevirt.cpp655 std::set<GlobalValue::GUID> &ExportedGUIDs;
667 std::set<GlobalValue::GUID> &ExportedGUIDs, in DevirtIndex()
796 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols) { in updateVCallVisibilityInModule()
816 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols) { in updateVCallVisibilityInIndex()
834 ModuleSummaryIndex &Summary, std::set<GlobalValue::GUID> &ExportedGUIDs, in runWholeProgramDevirtOnIndex()
2079 DenseMap<GlobalValue::GUID, TinyPtrVector<Metadata *>> MetadataByGUID; in run()
2093 for (Metadata *MD : MetadataByGUID[VF.GUID]) { in run()
2098 for (Metadata *MD : MetadataByGUID[VF.GUID]) { in run()
2104 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) { in run()
2112 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) { in run()
[all …]
/freebsd-12-stable/sys/dev/acpi_support/
Dacpi_wmi_if.m48 # Check if given GUID exists in WMI
52 # const char* guid_string: String form of the GUID
63 # const char* guid_string: String form of the GUID
82 # const char* guid_string: String form of the GUID
96 # const char* guid_string: String form of the GUID
111 # const char* guid_string: String form of the GUID
126 # const char* guid_string: String form of the GUID
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DInfoStreamBuilder.h46 void setGuid(codeview::GUID G);
50 codeview::GUID getGuid() const { return Guid; } in getGuid()
67 codeview::GUID Guid;
/freebsd-12-stable/contrib/ntp/sntp/libevent/
Devent_iocp.c113 get_extension_function(SOCKET s, const GUID *which_fn) in get_extension_function()
118 (GUID*)which_fn, sizeof(*which_fn), in get_extension_function()
150 const GUID acceptex = WSAID_ACCEPTEX; in init_extension_functions()
151 const GUID connectex = WSAID_CONNECTEX; in init_extension_functions()
152 const GUID getacceptexsockaddrs = WSAID_GETACCEPTEXSOCKADDRS; in init_extension_functions()
/freebsd-12-stable/contrib/libevent/
Devent_iocp.c113 get_extension_function(SOCKET s, const GUID *which_fn) in get_extension_function()
118 (GUID*)which_fn, sizeof(*which_fn), in get_extension_function()
150 const GUID acceptex = WSAID_ACCEPTEX; in init_extension_functions()
151 const GUID connectex = WSAID_CONNECTEX; in init_extension_functions()
152 const GUID getacceptexsockaddrs = WSAID_GETACCEPTEXSOCKADDRS; in init_extension_functions()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dzfs48 >40 byte x destination GUID: %02X
58 >>>48 byte x source GUID: %02X
78 >47 byte x destination GUID: %02X
88 >>>55 byte x source GUID: %02X
/freebsd-12-stable/lib/libefivar/
Duefi-dplib.h561 CompareGuid (const GUID *g1, const GUID *g2) in CompareGuid()
592 StrToGuid(const char *str, GUID *guid) in StrToGuid()
613 guid_str(const GUID *g) in guid_str()
628 #define G(x) guid_str((const GUID *)(const void *)x)
/freebsd-12-stable/cddl/usr.sbin/zfsd/
Dvdev.h124 virtual DevdCtl::Guid GUID() const;
165 Vdev::GUID() const in GUID() function
Dzfsd_exception.cc122 output << "Vdev " << vdev.GUID() << ": "; in Log()
127 output << "Vdev " << vdev.GUID() << ": "; in Log()
Dvdev.cc261 if (child.GUID() == GUID()) in Parent()
324 vdevGUIDString << GUID(); in GUIDString()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DModuleSummaryAnalysis.cpp142 static void addVCallToSet(DevirtCallSite Call, GlobalValue::GUID Guid, in addVCallToSet()
161 const CallInst *CI, SetVector<GlobalValue::GUID> &TypeTests, in addIntrinsicToSummary()
173 GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString()); in addIntrinsicToSummary()
200 GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString()); in addIntrinsicToSummary()
240 bool HasLocalsInUsedOrAsm, DenseSet<GlobalValue::GUID> &CantBePromoted, in computeFunctionSummary()
252 SetVector<GlobalValue::GUID> TypeTests; in computeFunctionSummary()
570 DenseSet<GlobalValue::GUID> &CantBePromoted, in computeVariableSummary()
618 DenseSet<GlobalValue::GUID> &CantBePromoted) { in computeAliasSummary()
666 DenseSet<GlobalValue::GUID> CantBePromoted; in buildModuleSummaryIndex()
717 ArrayRef<GlobalValue::GUID>{}, in buildModuleSummaryIndex()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp79 codeview::GUID NativeExeSymbol::getGuid() const { in getGuid()
84 return codeview::GUID{{0}}; in getGuid()

12345