summaryrefslogtreecommitdiff
path: root/lib/VMCore/AttributesImpl.h
blob: 90890a14c3f7372cca25f55532b9f23b16959042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//===-- AttributesImpl.h - Attributes Internals -----------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines various helper methods and classes used by LLVMContextImpl
// for creating and managing attributes.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_ATTRIBUTESIMPL_H
#define LLVM_ATTRIBUTESIMPL_H

#include "llvm/ADT/FoldingSet.h"

namespace llvm {

class AttributesImpl : public FoldingSetNode {
  uint64_t Bits;                // FIXME: We will be expanding this.

  void operator=(const AttributesImpl &) LLVM_DELETED_FUNCTION;
  AttributesImpl(const AttributesImpl &) LLVM_DELETED_FUNCTION;
public:
  AttributesImpl(uint64_t bits) : Bits(bits) {}

  void Profile(FoldingSetNodeID &ID) const {
    Profile(ID, Bits);
  }
  static void Profile(FoldingSetNodeID &ID, uint64_t Bits) {
    ID.AddInteger(Bits);
  }
};

} // end llvm namespace

#endif