aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Annotation.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-08-23 17:07:56 +0000
committerChris Lattner <sabre@nondot.org>2001-08-23 17:07:56 +0000
commit8dc89a330c57c43f1eff23aabdb418874a2f38da (patch)
tree0dc8929af265fe4d487e8b05345e12f03c8a8f72 /lib/Support/Annotation.cpp
parent384e5b1595fbc766552f2f2f74586d7b53519623 (diff)
downloadexternal_llvm-8dc89a330c57c43f1eff23aabdb418874a2f38da.zip
external_llvm-8dc89a330c57c43f1eff23aabdb418874a2f38da.tar.gz
external_llvm-8dc89a330c57c43f1eff23aabdb418874a2f38da.tar.bz2
Add annotation support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Annotation.cpp')
-rw-r--r--lib/Support/Annotation.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/lib/Support/Annotation.cpp b/lib/Support/Annotation.cpp
new file mode 100644
index 0000000..735d01b
--- /dev/null
+++ b/lib/Support/Annotation.cpp
@@ -0,0 +1,63 @@
+//===-- Annotation.cpp - Implement the Annotation Classes --------*- C++ -*--=//
+//
+// This file implements the AnnotationManager class.
+//
+//===----------------------------------------------------------------------===//
+
+#include <map>
+#include "llvm/Annotation.h"
+
+typedef map<const string, unsigned> IDMapType;
+static unsigned IDCounter = 0; // Unique ID counter
+
+// Static member to ensure initialiation on demand.
+static IDMapType &getIDMap() { static IDMapType TheMap; return TheMap; }
+
+// On demand annotation creation support...
+typedef Annotation *(*AnnFactory)(AnnotationID, Annotable *);
+typedef map<unsigned, AnnFactory> FactMapType;
+static FactMapType &getFactMap() { static FactMapType FactMap; return FactMap; }
+
+
+AnnotationID AnnotationManager::getID(const string &Name) { // Name -> ID
+ IDMapType::iterator I = getIDMap().find(Name);
+ if (I == getIDMap().end()) {
+ getIDMap()[Name] = IDCounter++; // Add a new element
+ return IDCounter-1;
+ }
+ return I->second;
+}
+
+// getName - This function is especially slow, but that's okay because it should
+// only be used for debugging.
+//
+const string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name
+ IDMapType &TheMap = getIDMap();
+ for (IDMapType::iterator I = TheMap.begin(); ; ++I) {
+ assert(I != TheMap.end() && "Annotation ID is unknown!");
+ if (I->second == ID.ID) return I->first;
+ }
+}
+
+
+// registerAnnotationFactory - This method is used to register a callback
+// function used to create an annotation on demand if it is needed by the
+// Annotable::findOrCreateAnnotation method.
+//
+void AnnotationManager::registerAnnotationFactory(AnnotationID ID,
+ AnnFactory F) {
+ if (F)
+ getFactMap()[ID.ID] = F;
+ else
+ getFactMap().erase(ID.ID);
+}
+
+// createAnnotation - Create an annotation of the specified ID for the
+// specified object, using a register annotation creation function.
+//
+Annotation *AnnotationManager::createAnnotation(AnnotationID ID,
+ Annotable *Obj) {
+ FactMapType::iterator I = getFactMap().find(ID.ID);
+ if (I == getFactMap().end()) return 0;
+ return I->second(ID, Obj);
+}