clang 19.0.0git
TypeOrdering.h
Go to the documentation of this file.
1//===-------------- TypeOrdering.h - Total ordering for types ---*- 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//===----------------------------------------------------------------------===//
8///
9/// \file
10/// Allows QualTypes to be sorted and hence used in maps and sets.
11///
12/// Defines clang::QualTypeOrdering, a total ordering on clang::QualType,
13/// and hence enables QualType values to be sorted and to be used in
14/// std::maps, std::sets, llvm::DenseMaps, and llvm::DenseSets.
15///
16//===----------------------------------------------------------------------===//
17
18#ifndef LLVM_CLANG_AST_TYPEORDERING_H
19#define LLVM_CLANG_AST_TYPEORDERING_H
20
22#include "clang/AST/Type.h"
23#include <functional>
24
25namespace clang {
26
27/// Function object that provides a total ordering on QualType values.
29 bool operator()(QualType T1, QualType T2) const {
30 return std::less<void*>()(T1.getAsOpaquePtr(), T2.getAsOpaquePtr());
31 }
32};
33
34}
35
36namespace llvm {
37
38 template<> struct DenseMapInfo<clang::QualType> {
39 static inline clang::QualType getEmptyKey() { return clang::QualType(); }
40
42 using clang::QualType;
43 return QualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1));
44 }
45
46 static unsigned getHashValue(clang::QualType Val) {
47 return (unsigned)((uintptr_t)Val.getAsOpaquePtr()) ^
48 ((unsigned)((uintptr_t)Val.getAsOpaquePtr() >> 9));
49 }
50
51 static bool isEqual(clang::QualType LHS, clang::QualType RHS) {
52 return LHS == RHS;
53 }
54 };
55
56 template<> struct DenseMapInfo<clang::CanQualType> {
58 return clang::CanQualType();
59 }
60
63 return CanQualType::getFromOpaquePtr(reinterpret_cast<clang::Type *>(-1));
64 }
65
66 static unsigned getHashValue(clang::CanQualType Val) {
67 return (unsigned)((uintptr_t)Val.getAsOpaquePtr()) ^
68 ((unsigned)((uintptr_t)Val.getAsOpaquePtr() >> 9));
69 }
70
72 return LHS == RHS;
73 }
74 };
75}
76
77#endif
C Language Family Type Representation.
void * getAsOpaquePtr() const
Retrieve the internal representation of this canonical type.
A (possibly-)qualified type.
Definition: Type.h:737
void * getAsOpaquePtr() const
Definition: Type.h:784
The base class of the type hierarchy.
Definition: Type.h:1606
The JSON file list parser is used to communicate input to InstallAPI.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
YAML serialization mapping.
Definition: Dominators.h:30
__UINTPTR_TYPE__ uintptr_t
An unsigned integer type with the property that any valid pointer to void can be converted to this ty...
Function object that provides a total ordering on QualType values.
Definition: TypeOrdering.h:28
bool operator()(QualType T1, QualType T2) const
Definition: TypeOrdering.h:29
static clang::CanQualType getEmptyKey()
Definition: TypeOrdering.h:57
static clang::CanQualType getTombstoneKey()
Definition: TypeOrdering.h:61
static unsigned getHashValue(clang::CanQualType Val)
Definition: TypeOrdering.h:66
static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS)
Definition: TypeOrdering.h:71
static clang::QualType getEmptyKey()
Definition: TypeOrdering.h:39
static clang::QualType getTombstoneKey()
Definition: TypeOrdering.h:41
static unsigned getHashValue(clang::QualType Val)
Definition: TypeOrdering.h:46
static bool isEqual(clang::QualType LHS, clang::QualType RHS)
Definition: TypeOrdering.h:51