Fix up header comments to make Chris happy.
authorOwen Anderson <resistor@mac.com>
Tue, 30 Jun 2009 17:06:46 +0000 (17:06 +0000)
committerOwen Anderson <resistor@mac.com>
Tue, 30 Jun 2009 17:06:46 +0000 (17:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74537 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/LLVMContext.h
lib/VMCore/LLVMContext.cpp
lib/VMCore/LLVMContextImpl.h

index 018d777c0140a4e01e2ed46ee6786cb8e64f90fd..398fae26dded295c2e71e43ea5fecaff7576515a 100644 (file)
@@ -6,6 +6,11 @@
 // License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
+//
+// This file declares LLVMContext, a container of "global" state in LLVM, such
+// as the global type and constant uniquing tables.
+//
+//===----------------------------------------------------------------------===//
 
 #ifndef LLVM_LLVMCONTEXT_H
 #define LLVM_LLVMCONTEXT_H
@@ -35,6 +40,11 @@ class APInt;
 class APFloat;
 class Value;
 
+/// This is an important class for using LLVM in a threaded context.  It
+/// (opaquely) owns and manages the core "global" data of LLVM's core 
+/// infrastructure, including the type and constant uniquing tables.
+/// LLVMContext itself provides no locking guarantees, so you should be careful
+/// to have one context per thread.
 class LLVMContext {
   LLVMContextImpl* pImpl;
 public:
index f93616ba6b896a4f8c4d1b64e4a2d53c347108f0..c2aa4324c4c8ebb32690e1803b9e968a12fad694 100644 (file)
@@ -6,6 +6,11 @@
 // License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
+//
+//  This file implements LLVMContext, as a wrapper around the opaque
+// class LLVMContextImpl.
+//
+//===----------------------------------------------------------------------===//
 
 #include "llvm/LLVMContext.h"
 #include "llvm/Constants.h"
index 8d0a70c69036802b3c716240cb56b44495b87ff6..4e089fb661cfde3c1b961ad86682b87d02f09ea1 100644 (file)
@@ -6,6 +6,11 @@
 // License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
+//
+//  This file declares LLVMContextImpl, the opaque implementation 
+//  of LLVMContext.
+//
+//===----------------------------------------------------------------------===//
 
 #ifndef LLVM_LLVMCONTEXT_IMPL_H
 #define LLVM_LLVMCONTEXT_IMPL_H
@@ -17,4 +22,4 @@ class LLVMContextImpl {
 
 }
 
-#endif
\ No newline at end of file
+#endif