Split GlobalValue into GlobalValue and GlobalObject.
[oota-llvm.git] / include / llvm / IR / GlobalObject.h
1 //===-- llvm/GlobalObject.h - Class to represent a global object *- 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 // This represents an independent object. That is, a function or a global
11 // variable, but not an alias.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_IR_GLOBALOBJECT_H
16 #define LLVM_IR_GLOBALOBJECT_H
17
18 #include "llvm/IR/Constant.h"
19 #include "llvm/IR/DerivedTypes.h"
20 #include "llvm/IR/GlobalValue.h"
21
22 namespace llvm {
23
24 class Module;
25
26 class GlobalObject : public GlobalValue {
27   GlobalObject(const GlobalObject &) LLVM_DELETED_FUNCTION;
28
29 protected:
30   GlobalObject(Type *Ty, ValueTy VTy, Use *Ops, unsigned NumOps,
31                LinkageTypes Linkage, const Twine &Name)
32       : GlobalValue(Ty, VTy, Ops, NumOps, Linkage, Name) {
33     setGlobalValueSubClassData(0);
34   }
35
36   std::string Section;     // Section to emit this into, empty means default
37 public:
38   unsigned getAlignment() const {
39     return (1u << getGlobalValueSubClassData()) >> 1;
40   }
41   void setAlignment(unsigned Align);
42
43   bool hasSection() const { return !getSection().empty(); }
44   const std::string &getSection() const { return Section; }
45   void setSection(StringRef S);
46
47   void copyAttributesFrom(const GlobalValue *Src) override;
48
49   // Methods for support type inquiry through isa, cast, and dyn_cast:
50   static inline bool classof(const Value *V) {
51     return V->getValueID() == Value::FunctionVal ||
52            V->getValueID() == Value::GlobalVariableVal;
53   }
54 };
55
56 } // End llvm namespace
57
58 #endif