[Alignment][NFC] Migrate Instructions to Align
[llvm-core.git] / include / llvm / DebugInfo / CodeView / GUID.h
blob5f807e6f7eebd2658d19e02fc2516360e0a6093c
1 //===- GUID.h ---------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_CODEVIEW_GUID_H
10 #define LLVM_DEBUGINFO_CODEVIEW_GUID_H
12 #include <cstdint>
13 #include <cstring>
15 namespace llvm {
16 class raw_ostream;
18 namespace codeview {
20 /// This represents the 'GUID' type from windows.h.
21 struct GUID {
22 uint8_t Guid[16];
25 inline bool operator==(const GUID &LHS, const GUID &RHS) {
26 return 0 == ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid));
29 inline bool operator<(const GUID &LHS, const GUID &RHS) {
30 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) < 0;
33 inline bool operator<=(const GUID &LHS, const GUID &RHS) {
34 return ::memcmp(LHS.Guid, RHS.Guid, sizeof(LHS.Guid)) <= 0;
37 inline bool operator>(const GUID &LHS, const GUID &RHS) {
38 return !(LHS <= RHS);
41 inline bool operator>=(const GUID &LHS, const GUID &RHS) {
42 return !(LHS < RHS);
45 inline bool operator!=(const GUID &LHS, const GUID &RHS) {
46 return !(LHS == RHS);
49 raw_ostream &operator<<(raw_ostream &OS, const GUID &Guid);
51 } // namespace codeview
52 } // namespace llvm
54 #endif