blob: e876bf4f38b27ccdf5363897880b835f5218059a [file] [log] [blame]
Chris Lattner8dc89a32001-08-23 17:07:56 +00001//===-- Annotation.cpp - Implement the Annotation Classes --------*- C++ -*--=//
2//
3// This file implements the AnnotationManager class.
4//
5//===----------------------------------------------------------------------===//
6
7#include <map>
8#include "llvm/Annotation.h"
Chris Lattner697954c2002-01-20 22:54:45 +00009using std::string;
10using std::map;
11using std::pair;
12using std::make_pair;
Chris Lattner8dc89a32001-08-23 17:07:56 +000013
14typedef map<const string, unsigned> IDMapType;
15static unsigned IDCounter = 0; // Unique ID counter
16
17// Static member to ensure initialiation on demand.
18static IDMapType &getIDMap() { static IDMapType TheMap; return TheMap; }
19
20// On demand annotation creation support...
Chris Lattnerc0f483d2001-09-07 16:44:01 +000021typedef Annotation *(*AnnFactory)(AnnotationID, const Annotable *, void *);
Chris Lattnerda8f0042001-08-27 05:19:10 +000022typedef map<unsigned, pair<AnnFactory,void*> > FactMapType;
Chris Lattner8dc89a32001-08-23 17:07:56 +000023static FactMapType &getFactMap() { static FactMapType FactMap; return FactMap; }
24
25
26AnnotationID AnnotationManager::getID(const string &Name) { // Name -> ID
27 IDMapType::iterator I = getIDMap().find(Name);
28 if (I == getIDMap().end()) {
29 getIDMap()[Name] = IDCounter++; // Add a new element
30 return IDCounter-1;
31 }
32 return I->second;
33}
34
Chris Lattner82072d42001-09-09 21:02:38 +000035// getID - Name -> ID + registration of a factory function for demand driven
36// annotation support.
37AnnotationID AnnotationManager::getID(const string &Name, Factory Fact,
Chris Lattner60bfeb82002-07-24 20:17:22 +000038 void *Data) {
Chris Lattner82072d42001-09-09 21:02:38 +000039 AnnotationID Result(getID(Name));
40 registerAnnotationFactory(Result, Fact, Data);
41 return Result;
42}
43
44
Chris Lattner8dc89a32001-08-23 17:07:56 +000045// getName - This function is especially slow, but that's okay because it should
46// only be used for debugging.
47//
48const string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name
49 IDMapType &TheMap = getIDMap();
50 for (IDMapType::iterator I = TheMap.begin(); ; ++I) {
51 assert(I != TheMap.end() && "Annotation ID is unknown!");
52 if (I->second == ID.ID) return I->first;
53 }
54}
55
56
57// registerAnnotationFactory - This method is used to register a callback
58// function used to create an annotation on demand if it is needed by the
59// Annotable::findOrCreateAnnotation method.
60//
61void AnnotationManager::registerAnnotationFactory(AnnotationID ID,
Chris Lattnerda8f0042001-08-27 05:19:10 +000062 AnnFactory F,
63 void *ExtraData) {
Chris Lattner8dc89a32001-08-23 17:07:56 +000064 if (F)
Chris Lattnerda8f0042001-08-27 05:19:10 +000065 getFactMap()[ID.ID] = make_pair(F, ExtraData);
Chris Lattner8dc89a32001-08-23 17:07:56 +000066 else
67 getFactMap().erase(ID.ID);
68}
69
70// createAnnotation - Create an annotation of the specified ID for the
71// specified object, using a register annotation creation function.
72//
73Annotation *AnnotationManager::createAnnotation(AnnotationID ID,
Chris Lattnerc0f483d2001-09-07 16:44:01 +000074 const Annotable *Obj) {
Chris Lattner8dc89a32001-08-23 17:07:56 +000075 FactMapType::iterator I = getFactMap().find(ID.ID);
76 if (I == getFactMap().end()) return 0;
Chris Lattnerda8f0042001-08-27 05:19:10 +000077 return I->second.first(ID, Obj, I->second.second);
Chris Lattner8dc89a32001-08-23 17:07:56 +000078}