summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorLauro Ramos Venancio <lauro.venancio@gmail.com>2007-04-12 18:32:50 +0000
committerLauro Ramos Venancio <lauro.venancio@gmail.com>2007-04-12 18:32:50 +0000
commitc763552299165b88d34a7d4f2d76ff413cbc7f67 (patch)
treebf83c987dadf556bcc766f071383969b0812058b /include/llvm
parent558385fd93a89a3f2186c5c76b6735cea32ac333 (diff)
downloadllvm-c763552299165b88d34a7d4f2d76ff413cbc7f67.tar.gz
llvm-c763552299165b88d34a7d4f2d76ff413cbc7f67.tar.bz2
llvm-c763552299165b88d34a7d4f2d76ff413cbc7f67.tar.xz
Implement the "thread_local" keyword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Bytecode/BytecodeHandler.h3
-rw-r--r--include/llvm/GlobalVariable.h9
2 files changed, 9 insertions, 3 deletions
diff --git a/include/llvm/Bytecode/BytecodeHandler.h b/include/llvm/Bytecode/BytecodeHandler.h
index eeae2a58d6..3d885e123f 100644
--- a/include/llvm/Bytecode/BytecodeHandler.h
+++ b/include/llvm/Bytecode/BytecodeHandler.h
@@ -112,7 +112,8 @@ public:
GlobalValue::LinkageTypes,///< The linkage type of the GV
GlobalValue::VisibilityTypes,///< The visibility style of the GV
unsigned SlotNum, ///< Slot number of GV
- unsigned initSlot ///< Slot number of GV's initializer (0 if none)
+ unsigned initSlot, ///< Slot number of GV's initializer (0 if none)
+ bool isThreadLocal ///< Whether the GV is thread local or not
) {}
/// This method is called when a type list is recognized. It simply
diff --git a/include/llvm/GlobalVariable.h b/include/llvm/GlobalVariable.h
index 3bf82492bc..6575dde34a 100644
--- a/include/llvm/GlobalVariable.h
+++ b/include/llvm/GlobalVariable.h
@@ -44,6 +44,7 @@ class GlobalVariable : public GlobalValue {
void setPrev(GlobalVariable *N) { Prev = N; }
bool isConstantGlobal; // Is this a global constant?
+ bool isThreadLocalSymbol; // Is this symbol "Thread Local"?
Use Initializer;
public:
@@ -51,12 +52,12 @@ public:
/// automatically inserted into the end of the specified modules global list.
GlobalVariable(const Type *Ty, bool isConstant, LinkageTypes Linkage,
Constant *Initializer = 0, const std::string &Name = "",
- Module *Parent = 0);
+ Module *Parent = 0, bool ThreadLocal = false);
/// GlobalVariable ctor - This creates a global and inserts it before the
/// specified other global.
GlobalVariable(const Type *Ty, bool isConstant, LinkageTypes Linkage,
Constant *Initializer, const std::string &Name,
- GlobalVariable *InsertBefore);
+ GlobalVariable *InsertBefore, bool ThreadLocal = false);
/// isDeclaration - Is this global variable lacking an initializer? If so,
/// the global variable is defined in some other translation unit, and is thus
@@ -107,6 +108,10 @@ public:
bool isConstant() const { return isConstantGlobal; }
void setConstant(bool Value) { isConstantGlobal = Value; }
+ /// If the value is "Thread Local", its value isn't shared by the threads.
+ bool isThreadLocal() const { return isThreadLocalSymbol; }
+ void setThreadLocal(bool Value) { isThreadLocalSymbol = Value; }
+
/// removeFromParent - This method unlinks 'this' from the containing module,
/// but does not delete it.
///