Clang Project

clang_source_code/include/clang/Sema/Weak.h
1//===-- UnresolvedSet.h - Unresolved sets of declarations  ------*- 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//  This file defines the WeakInfo class, which is used to store
10//  information about the target of a #pragma weak directive.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_SEMA_WEAK_H
15#define LLVM_CLANG_SEMA_WEAK_H
16
17#include "clang/Basic/SourceLocation.h"
18
19namespace clang {
20
21class IdentifierInfo;
22
23/// Captures information about a \#pragma weak directive.
24class WeakInfo {
25  IdentifierInfo *alias;  // alias (optional)
26  SourceLocation loc;     // for diagnostics
27  bool used;              // identifier later declared?
28public:
29  WeakInfo()
30    : alias(nullptr), loc(SourceLocation()), used(false) {}
31  WeakInfo(IdentifierInfo *AliasSourceLocation Loc)
32    : alias(Alias), loc(Loc), used(false) {}
33  inline IdentifierInfo * getAlias() const { return alias; }
34  inline SourceLocation getLocation() const { return loc; }
35  void setUsed(bool Used=true) { used = Used; }
36  inline bool getUsed() { return used; }
37  bool operator==(WeakInfo RHSconst {
38    return alias == RHS.getAlias() && loc == RHS.getLocation();
39  }
40  bool operator!=(WeakInfo RHSconst { return !(*this == RHS); }
41};
42
43// end namespace clang
44
45#endif // LLVM_CLANG_SEMA_WEAK_H
46
clang::WeakInfo::alias
clang::WeakInfo::loc
clang::WeakInfo::used
clang::WeakInfo::getAlias
clang::WeakInfo::getLocation
clang::WeakInfo::setUsed
clang::WeakInfo::getUsed