Home
last modified time | relevance | path

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

12345

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DGUID.h22 struct GUID { struct
26 inline bool operator==(const GUID &LHS, const GUID &RHS) { argument
30 inline bool operator<(const GUID &LHS, const GUID &RHS) {
34 inline bool operator<=(const GUID &LHS, const GUID &RHS) {
38 inline bool operator>(const GUID &LHS, const GUID &RHS) {
42 inline bool operator>=(const GUID &LHS, const GUID &RHS) {
46 inline bool operator!=(const GUID &LHS, const GUID &RHS) {
50 raw_ostream &operator<<(raw_ostream &OS, const GUID &Guid);
H A DFormatters.h64 template <> struct format_provider<codeview::GUID> {
65 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h400 void setAliaseeGUID(GlobalValue::GUID GUID) { AliaseeGUID = GUID; }
451 GlobalValue::GUID GUID;
643 return L.GUID == R.GUID && L.Offset == R.Offset;
665 return I.VFunc.GUID;
811 std::map<GlobalValue::GUID, GlobalValue::GUID> OidGuidMap;
853 getOrInsertValuePtr(GlobalValue::GUID GUID) {
961 bool isGUIDLive(GlobalValue::GUID GUID) const;
970 ValueInfo getValueInfo(GlobalValue::GUID GUID) const {
976 ValueInfo getOrInsertValueInfo(GlobalValue::GUID GUID) {
986 ValueInfo getOrInsertValueInfo(GlobalValue::GUID GUID, StringRef Name) {
[all …]
/freebsd-12.1/sys/contrib/edk2/Include/Library/
H A DPcdLib.h1223 IN CONST GUID *Guid,
1245 IN CONST GUID *Guid,
1264 IN CONST GUID *Guid,
1286 IN CONST GUID *Guid,
1790 IN CONST GUID *Guid,
1814 IN CONST GUID *Guid,
1838 IN CONST GUID *Guid,
1862 IN CONST GUID *Guid,
1892 IN CONST GUID *Guid,
1917 IN CONST GUID *Guid,
[all …]
H A 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.1/contrib/llvm/lib/LTO/
H A DLTO.cpp199 UsedTypeIds.insert(TT.GUID); in computeLTOCacheKey()
201 UsedTypeIds.insert(TT.GUID); in computeLTOCacheKey()
297 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, in thinLTOResolvePrevailingGUID() argument
318 if (isPrevailing(GUID, S.get())) { in thinLTOResolvePrevailingGUID()
360 GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID, in thinLTOInternalizeAndPromoteGUID() argument
822 GlobalValue::GUID GUID = GlobalValue::getGUID( in run() local
829 GUIDPrevailingResolutions[GUID] = in run()
1219 ExportedGUIDs.insert(GUID); in runThinLTO()
1228 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) { in runThinLTO() argument
1236 auto isPrevailing = [&](GlobalValue::GUID GUID, in runThinLTO()
[all …]
H A DThinLTOCodeGenerator.cpp252 static DenseSet<GlobalValue::GUID>
455 auto isPrevailing = [&](GlobalValue::GUID GUID, const GlobalValueSummary *S) { in resolvePrevailingInIndex() argument
456 const auto &Prevailing = PrevailingCopy.find(GUID); in resolvePrevailingInIndex()
464 GlobalValue::GUID GUID, in resolvePrevailingInIndex()
466 ResolvedODR[ModuleIdentifier][GUID] = NewLinkage; in resolvePrevailingInIndex()
567 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols, in internalizeAndPromoteInIndex()
569 auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) { in internalizeAndPromoteInIndex() argument
572 ExportList->second.count(GUID)) || in internalizeAndPromoteInIndex()
573 GUIDPreservedSymbols.count(GUID); in internalizeAndPromoteInIndex()
581 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) { in computeDeadSymbolsInIndex()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DModuleSummaryIndex.cpp55 auto GUID = GlobalList.first; in collectDefinedFunctionsForModule() local
64 GVSummaryMap[GUID] = Summary; in collectDefinedFunctionsForModule()
73 auto GUID = GlobalList.first; in collectDefinedGVSummariesPerModule() local
91 bool ModuleSummaryIndex::isGUIDLive(GlobalValue::GUID GUID) const { in isGUIDLive()
92 auto VI = getValueInfo(GUID); in isGUIDLive()
212 GlobalValue::GUID Src;
213 GlobalValue::GUID Dst;
298 static std::string getNodeVisualName(GlobalValue::GUID Id) { in getNodeVisualName()
350 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot()
391 auto Draw = [&](GlobalValue::GUID IdFrom, GlobalValue::GUID IdTo, int Hotness) { in exportToDot()
[all …]
H A DMDBuilder.cpp62 const DenseSet<GlobalValue::GUID> *Imports) { in createFunctionEntryCount()
71 SmallVector<GlobalValue::GUID, 2> OrderID(Imports->begin(), Imports->end()); in createFunctionEntryCount()
73 [] (GlobalValue::GUID A, GlobalValue::GUID B) { in createFunctionEntryCount()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h38 using FunctionsToImportTy = std::unordered_set<GlobalValue::GUID>;
92 DenseMap<GlobalValue::GUID,
102 using ExportSetTy = std::unordered_set<GlobalValue::GUID>;
176 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
177 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing);
183 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
184 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing,
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp181 GlobalValue::GUID GUID) { in selectCallee() argument
278 if (GUID == 0) in updateValueInfoForIndirectCalls()
280 return Index.getValueInfo(GUID); in updateValueInfoForIndirectCalls()
498 auto GUID = Ref.getGUID(); in computeImportForFunction() local
499 ExportList.insert(GUID); in computeImportForFunction()
605 static GlobalValue::GUID getGUID(GlobalValue::GUID G) { return G; } in getGUID()
718 auto GUID = GlobalList.first; in ComputeCrossModuleImportForModuleFromIndex() local
747 for (auto GUID : GUIDPreservedSymbols) { in computeDeadSymbols() local
1106 auto GUID = F.getGUID(); in importFunctions() local
1128 auto GUID = GV.getGUID(); in importFunctions() local
[all …]
/freebsd-12.1/sys/dev/acpi_support/
H A 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.1/contrib/llvm/include/llvm/LTO/
H A DLTO.h51 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
53 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
61 function_ref<bool(StringRef, GlobalValue::GUID)> isExported);
71 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
73 const std::set<GlobalValue::GUID> &CfiFunctionDefs = {},
74 const std::set<GlobalValue::GUID> &CfiFunctionDecls = {});
320 DenseMap<GlobalValue::GUID, StringRef> PrevailingModuleForGUID;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInfoStreamBuilder.h47 void setGuid(codeview::GUID G);
51 codeview::GUID getGuid() const { return Guid; } in getGuid()
68 codeview::GUID Guid;
/freebsd-12.1/contrib/libevent/
H A 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.1/contrib/ntp/sntp/libevent/
H A 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.1/contrib/file/magic/Magdir/
H A 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.1/contrib/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp138 static void addVCallToSet(DevirtCallSite Call, GlobalValue::GUID Guid, in addVCallToSet()
157 const CallInst *CI, SetVector<GlobalValue::GUID> &TypeTests, in addIntrinsicToSummary()
169 GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString()); in addIntrinsicToSummary()
200 GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString()); in addIntrinsicToSummary()
234 DenseSet<GlobalValue::GUID> &CantBePromoted, in computeFunctionSummary()
245 SetVector<GlobalValue::GUID> TypeTests; in computeFunctionSummary()
411 DenseSet<GlobalValue::GUID> &CantBePromoted) { in computeVariableSummary()
434 DenseSet<GlobalValue::GUID> &CantBePromoted) { in computeAliasSummary()
477 DenseSet<GlobalValue::GUID> CantBePromoted; in buildModuleSummaryIndex()
525 ArrayRef<GlobalValue::GUID>{}, in buildModuleSummaryIndex()
/freebsd-12.1/lib/libefivar/
H A 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.1/cddl/usr.sbin/zfsd/
H A Dvdev.h124 virtual DevdCtl::Guid GUID() const;
165 Vdev::GUID() const in GUID() function
H A Dzfsd_exception.cc122 output << "Vdev " << vdev.GUID() << ": "; in Log()
127 output << "Vdev " << vdev.GUID() << ": "; in Log()
H A Dvdev.cc261 if (child.GUID() == GUID()) in Parent()
324 vdevGUIDString << GUID(); in GUIDString()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp80 codeview::GUID NativeExeSymbol::getGuid() const { in getGuid()
85 return codeview::GUID{{0}}; in getGuid()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.h154 std::map<unsigned, std::vector<std::pair<GlobalValue::GUID *, LocTy>>>
351 bool ParseFunctionSummary(std::string Name, GlobalValue::GUID, unsigned ID);
352 bool ParseVariableSummary(std::string Name, GlobalValue::GUID, unsigned ID);
353 bool ParseAliasSummary(std::string Name, GlobalValue::GUID, unsigned ID);
360 bool ParseTypeTests(std::vector<GlobalValue::GUID> &TypeTests);
383 void AddGlobalValueToIndex(std::string Name, GlobalValue::GUID,
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp122 codeview::GUID
124 HRESULT (__stdcall IDiaSymbol::*Method)(GUID *)) { in PrivateGetDIAValue() argument
125 GUID Result; in PrivateGetDIAValue()
127 return codeview::GUID(); in PrivateGetDIAValue()
129 static_assert(sizeof(codeview::GUID) == sizeof(GUID), in PrivateGetDIAValue()
131 codeview::GUID IdResult; in PrivateGetDIAValue()
132 ::memcpy(&IdResult, &Result, sizeof(GUID)); in PrivateGetDIAValue()
193 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const GUID &G) { in operator <<()
891 codeview::GUID DIARawSymbol::getGuid() const { in getGuid()

12345