Searched refs:GUID (Results 1 - 25 of 75) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DGUID.h1 //===- GUID.h ---------------------------------------------------*- C++ -*-===//
20 /// This represents the 'GUID' type from windows.h.
21 struct GUID { struct in namespace:llvm::codeview
25 inline bool operator==(const GUID &LHS, const GUID &RHS) {
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
[all...]
H A DFormatters.h14 #include "llvm/DebugInfo/CodeView/GUID.h"
63 template <> struct format_provider<codeview::GUID> {
64 static void format(const codeview::GUID &V, llvm::raw_ostream &Stream,
/freebsd-11-stable/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h2 Provides copy memory, fill memory, zero memory, and GUID functions.
372 Copies a source GUID to a destination GUID.
374 This function copies the contents of the 128-bit GUID specified by SourceGuid to
380 @param DestinationGuid The pointer to the destination GUID.
381 @param SourceGuid The pointer to the source GUID.
386 GUID *
389 OUT GUID *DestinationGuid,
390 IN CONST GUID *SourceGuid
402 @param Guid1 A pointer to a 128 bit GUID
[all...]
H A DPcdLib.h687 Retrieves a token number based on a GUID and a token name.
702 Retrieves an 8-bit PCD token value based on a GUID and a token name.
720 Retrieves a 16-bit PCD token value based on a GUID and a token name.
739 Retrieves a 32-bit PCD token value based on a GUID and a token name.
758 Retrieves a 64-bit PCD token value based on a GUID and a token name.
777 Retrieves a pointer to a PCD token buffer based on a GUID and a token name.
796 Retrieves a Boolean PCD token value based on a GUID and a token name.
817 Sets an 8-bit PCD token value based on a GUID and a token name.
837 Sets a 16-bit PCD token value based on a GUID and a token name.
857 Sets a 32-bit PCD token value based on a GUID an
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h37 using FunctionsToImportTy = std::unordered_set<GlobalValue::GUID>;
55 // to find at least one summary for the GUID that is global or a local
72 // table lookup for each GUID by stashing this here.
86 /// Map of callee GUID considered for import into a given module to a pair
91 DenseMap<GlobalValue::GUID,
131 /// (GUID -> Summary) for every global defined in the module.
137 /// \p ExportLists contains for each Module the set of globals (GUID) that will
175 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
176 function_ref<PrevailingType(GlobalValue::GUID)> isPrevailing);
182 const DenseSet<GlobalValue::GUID>
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DInfoStreamBuilder.h40 // PDB GUID and as Signature. The age is always 1.
46 void setGuid(codeview::GUID G);
50 codeview::GUID getGuid() const { return Guid; }
67 codeview::GUID Guid;
H A DNativeExeSymbol.h32 codeview::GUID getGuid() const override;
H A DInfoStream.h14 #include "llvm/DebugInfo/CodeView/GUID.h"
44 codeview::GUID getGuid() const;
H A DPDBFileBuilder.h56 // with the computed PDB GUID on return.
57 Error commit(StringRef Filename, codeview::GUID *Guid);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp72 // (GUID -> Summary).
76 auto GUID = GlobalList.first;
85 GVSummaryMap[GUID] = Summary;
101 bool ModuleSummaryIndex::isGUIDLive(GlobalValue::GUID GUID) const {
102 auto VI = getValueInfo(GUID);
164 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) {
272 GlobalValue::GUID Src;
273 GlobalValue::GUID Dst;
358 static std::string getNodeVisualName(GlobalValue::GUID I
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h154 /// Map from global value GUID to corresponding summary structures. Use a
161 std::map<GlobalValue::GUID, GlobalValueSummaryInfo>;
163 /// Struct that holds a reference to a particular GUID in a global value
178 GlobalValue::GUID getGUID() const { return getRef()->first; }
337 /// identical to the GUID for global symbols, but differs for local since the
338 /// GUID includes the module level id in the hash.
339 GlobalValue::GUID OriginalName = 0;
366 /// Returns the hash of the original name, it is identical to the GUID for
368 GlobalValue::GUID getOriginalName() const { return OriginalName; }
371 void setOriginalName(GlobalValue::GUID Nam
508 GlobalValue::GUID GUID; member in struct:llvm::CalleeInfo::FunctionSummary::VFuncId
987 getOrInsertValuePtr(GlobalValue::GUID GUID) argument
1129 getOrInsertValueInfo(GlobalValue::GUID GUID) argument
1139 getOrInsertValueInfo(GlobalValue::GUID GUID, StringRef Name) argument
1367 auto GUID = GlobalList.first; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp126 // Populate map of GUID to the prevailing copy for any multiply defined
131 DenseMap<GlobalValue::GUID, const GlobalValueSummary *> &PrevailingCopy) {
261 DenseSet<GlobalValue::GUID> &PreservedGUID) {
268 // Convert the PreservedSymbols map from "Name" based to "GUID" based.
269 static DenseSet<GlobalValue::GUID>
272 DenseSet<GlobalValue::GUID> GUIDPreservedSymbols(PreservedSymbols.size());
318 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
404 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols,
466 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>>
468 const DenseSet<GlobalValue::GUID>
606 operator ()(GlobalValue::GUID GUID, const GlobalValueSummary *S) const argument
[all...]
H A DLTO.cpp76 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
78 const std::set<GlobalValue::GUID> &CfiFunctionDefs,
79 const std::set<GlobalValue::GUID> &CfiFunctionDecls) {
154 auto GUID = VI.getGUID(); local
155 ExportsGUID.push_back(GUID);
160 for (uint64_t GUID : ExportsGUID) {
162 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&GUID, sizeof(GUID)));
191 sizeof(GlobalValue::GUID)));
198 std::set<GlobalValue::GUID> UsedCfiDef
841 auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier( local
929 GlobalValue::GUID GUID = GlobalValue::getGUID( local
[all...]
/freebsd-11-stable/cddl/usr.sbin/zfsd/
H A Dvdev.h124 virtual DevdCtl::Guid GUID() const;
165 Vdev::GUID() const function in class:Vdev
H A Dzfsd_exception.cc122 output << "Vdev " << vdev.GUID() << ": ";
127 output << "Vdev " << vdev.GUID() << ": ";
H A Dvdev_iterator.cc158 if (vdev.GUID() == vdevGUID)
H A Dvdev.cc101 throw ZfsdException("Unable to extract vdev GUID "
111 throw ZfsdException("Can't extract pool GUID from handle.");
120 throw ZfsdException("Can't extract pool GUID from config.");
129 * Spares do not have a Pool GUID. Tolerate its absence.
130 * Code accessing this Vdev in a context where the Pool GUID is
261 if (child.GUID() == GUID())
324 vdevGUIDString << GUID();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h51 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
53 function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
55 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols);
63 function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
74 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
76 const std::set<GlobalValue::GUID> &CfiFunctionDefs = {},
77 const std::set<GlobalValue::GUID> &CfiFunctionDecls = {});
341 DenseMap<GlobalValue::GUID, StringRef> PrevailingModuleForGUID;
422 const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp11 #include "llvm/DebugInfo/CodeView/GUID.h"
29 assert(Item.size() == 16 && "Expected 16-byte GUID");
43 raw_ostream &llvm::codeview::operator<<(raw_ostream &OS, const GUID &Guid) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypes.h62 LLVM_YAML_DECLARE_SCALAR_TRAITS(codeview::GUID, QuotingType::Single)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeExeSymbol.cpp79 codeview::GUID NativeExeSymbol::getGuid() const {
84 return codeview::GUID{{0}};
H A DInfoStreamBuilder.cpp46 void InfoStreamBuilder::setGuid(GUID G) { Guid = G; }
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devent_iocp.c113 get_extension_function(SOCKET s, const GUID *which_fn)
118 (GUID*)which_fn, sizeof(*which_fn),
150 const GUID acceptex = WSAID_ACCEPTEX;
151 const GUID connectex = WSAID_CONNECTEX;
152 const GUID getacceptexsockaddrs = WSAID_GETACCEPTEXSOCKADDRS;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp181 GlobalValue::GUID GUID) {
195 // The mapping from OriginalId to GUID may return a GUID
201 // to the GUID of the library function in 1);
265 GlobalValue::GUID>;
275 // corresponding PGOFuncName as the GUID.
278 auto GUID = Index.getGUIDFromOriginalID(VI.getGUID());
279 if (GUID == 0)
281 return Index.getValueInfo(GUID);
177 selectCallee(const ModuleSummaryIndex &Index, ArrayRef<std::unique_ptr<GlobalValueSummary>> CalleeSummaryList, unsigned Threshold, StringRef CallerModulePath, FunctionImporter::ImportFailureReason &Reason, GlobalValue::GUID GUID) argument
766 auto GUID = GlobalList.first; local
1149 auto GUID = F.getGUID(); local
1171 auto GUID = GV.getGUID(); local
1185 auto GUID = GA.getGUID(); local
[all...]
/freebsd-11-stable/lib/libefivar/
H A Duefi-dplib.h562 CompareGuid (const GUID *g1, const GUID *g2)
593 StrToGuid(const char *str, GUID *guid)
611 * Not to mention it's name.... Also, the error GUID is horrific.
614 guid_str(const GUID *g)
629 #define G(x) guid_str((const GUID *)(const void *)x)

Completed in 343 milliseconds

123