blob: a055ce9e2e4516c0776db60a751e829db6e6662f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- GUID.h ---------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_DEBUGINFO_CODEVIEW_GUID_H
11#define LLVM_DEBUGINFO_CODEVIEW_GUID_H
12
13#include <cstdint>
14#include <cstring>
15
16namespace llvm {
17class raw_ostream;
18
19namespace codeview {
20
21/// This represents the 'GUID' type from windows.h.
22struct GUID {
23 uint8_t Guid[16];
24};
25
26inline bool operator==(const GUID &LHS, const GUID &RHS) {
27 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid));
28}
29
30inline bool operator<(const GUID &LHS, const GUID &RHS) {
31 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0;
32}
33
34inline bool operator<=(const GUID &LHS, const GUID &RHS) {
35 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0;
36}
37
38inline bool operator>(const GUID &LHS, const GUID &RHS) {
39 return !(LHS <= RHS);
40}
41
42inline bool operator>=(const GUID &LHS, const GUID &RHS) {
43 return !(LHS < RHS);
44}
45
46inline bool operator!=(const GUID &LHS, const GUID &RHS) {
47 return !(LHS == RHS);
48}
49
50raw_ostream &operator<<(raw_ostream &OS, const GUID &Guid);
51
52} // namespace codeview
53} // namespace llvm
54
55#endif