2003-10-13 03:32:08 +00:00
|
|
|
//===-- Annotation.cpp - Implement the Annotation Classes -----------------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-08-23 17:07:56 +00:00
|
|
|
//
|
|
|
|
// This file implements the AnnotationManager class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include <map>
|
2003-01-14 21:29:58 +00:00
|
|
|
#include "Support/Annotation.h"
|
2003-12-14 21:35:53 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-05-22 21:59:35 +00:00
|
|
|
typedef std::map<const std::string, unsigned> IDMapType;
|
2001-08-23 17:07:56 +00:00
|
|
|
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...
|
2001-09-07 16:44:01 +00:00
|
|
|
typedef Annotation *(*AnnFactory)(AnnotationID, const Annotable *, void *);
|
2003-05-22 21:59:35 +00:00
|
|
|
typedef std::map<unsigned, std::pair<AnnFactory,void*> > FactMapType;
|
2003-01-13 00:52:43 +00:00
|
|
|
|
|
|
|
static FactMapType *TheFactMap = 0;
|
|
|
|
static FactMapType &getFactMap() {
|
|
|
|
if (TheFactMap == 0)
|
|
|
|
TheFactMap = new FactMapType();
|
|
|
|
return *TheFactMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eraseFromFactMap(unsigned ID) {
|
|
|
|
assert(TheFactMap && "No entries found!");
|
|
|
|
TheFactMap->erase(ID);
|
|
|
|
if (TheFactMap->empty()) { // Delete when empty
|
|
|
|
delete TheFactMap;
|
|
|
|
TheFactMap = 0;
|
|
|
|
}
|
|
|
|
}
|
2001-08-23 17:07:56 +00:00
|
|
|
|
|
|
|
|
2003-05-22 21:59:35 +00:00
|
|
|
AnnotationID AnnotationManager::getID(const std::string &Name) { // Name -> ID
|
2001-08-23 17:07:56 +00:00
|
|
|
IDMapType::iterator I = getIDMap().find(Name);
|
|
|
|
if (I == getIDMap().end()) {
|
|
|
|
getIDMap()[Name] = IDCounter++; // Add a new element
|
|
|
|
return IDCounter-1;
|
|
|
|
}
|
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
2001-09-09 21:02:38 +00:00
|
|
|
// getID - Name -> ID + registration of a factory function for demand driven
|
|
|
|
// annotation support.
|
2003-05-22 21:59:35 +00:00
|
|
|
AnnotationID AnnotationManager::getID(const std::string &Name, Factory Fact,
|
2002-07-24 20:17:22 +00:00
|
|
|
void *Data) {
|
2001-09-09 21:02:38 +00:00
|
|
|
AnnotationID Result(getID(Name));
|
|
|
|
registerAnnotationFactory(Result, Fact, Data);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-23 17:07:56 +00:00
|
|
|
// getName - This function is especially slow, but that's okay because it should
|
|
|
|
// only be used for debugging.
|
|
|
|
//
|
2003-05-22 21:59:35 +00:00
|
|
|
const std::string &AnnotationManager::getName(AnnotationID ID) { // ID -> Name
|
2001-08-23 17:07:56 +00:00
|
|
|
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,
|
2001-08-27 05:19:10 +00:00
|
|
|
AnnFactory F,
|
|
|
|
void *ExtraData) {
|
2001-08-23 17:07:56 +00:00
|
|
|
if (F)
|
2003-05-22 21:59:35 +00:00
|
|
|
getFactMap()[ID.ID] = std::make_pair(F, ExtraData);
|
2001-08-23 17:07:56 +00:00
|
|
|
else
|
2003-01-13 00:52:43 +00:00
|
|
|
eraseFromFactMap(ID.ID);
|
2001-08-23 17:07:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// createAnnotation - Create an annotation of the specified ID for the
|
|
|
|
// specified object, using a register annotation creation function.
|
|
|
|
//
|
|
|
|
Annotation *AnnotationManager::createAnnotation(AnnotationID ID,
|
2001-09-07 16:44:01 +00:00
|
|
|
const Annotable *Obj) {
|
2001-08-23 17:07:56 +00:00
|
|
|
FactMapType::iterator I = getFactMap().find(ID.ID);
|
|
|
|
if (I == getFactMap().end()) return 0;
|
2001-08-27 05:19:10 +00:00
|
|
|
return I->second.first(ID, Obj, I->second.second);
|
2001-08-23 17:07:56 +00:00
|
|
|
}
|