2006-01-10 10:51:48 +01:00
|
|
|
//===-- ValueSymbolTable.cpp - Implement the ValueSymbolTable class -------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-01-10 10:51:48 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ValueSymbolTable class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-02-05 21:47:22 +01:00
|
|
|
#define DEBUG_TYPE "valuesymtab"
|
2006-01-10 10:51:48 +01:00
|
|
|
#include "llvm/GlobalValue.h"
|
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/ValueSymbolTable.h"
|
2008-06-27 23:26:26 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2006-11-17 09:03:48 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-24 12:05:20 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2006-01-10 10:51:48 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// Class destructor
|
|
|
|
ValueSymbolTable::~ValueSymbolTable() {
|
|
|
|
#ifndef NDEBUG // Only do this in -g mode...
|
|
|
|
for (iterator VI = vmap.begin(), VE = vmap.end(); VI != VE; ++VI)
|
2010-01-05 02:30:06 +01:00
|
|
|
dbgs() << "Value still in symbol table! Type = '"
|
2009-07-24 12:05:20 +02:00
|
|
|
<< VI->getValue()->getType()->getDescription() << "' Name = '"
|
|
|
|
<< VI->getKeyData() << "'\n";
|
2007-02-07 07:28:48 +01:00
|
|
|
assert(vmap.empty() && "Values remain in symbol table!");
|
2006-01-10 10:51:48 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert a value into the symbol table with the specified name...
|
|
|
|
//
|
2007-02-12 06:18:08 +01:00
|
|
|
void ValueSymbolTable::reinsertValue(Value* V) {
|
2006-01-10 10:51:48 +01:00
|
|
|
assert(V->hasName() && "Can't insert nameless Value into symbol table");
|
|
|
|
|
2007-02-07 06:22:49 +01:00
|
|
|
// Try inserting the name, assuming it won't conflict.
|
2007-02-12 06:18:08 +01:00
|
|
|
if (vmap.insert(V->Name)) {
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " Inserted value: " << V->Name << ": " << *V << "\n");
|
2007-02-07 06:22:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, there is a naming conflict. Rename this value.
|
2009-08-19 21:22:52 +02:00
|
|
|
SmallString<256> UniqueName(V->getName().begin(), V->getName().end());
|
2008-06-27 23:26:26 +02:00
|
|
|
|
|
|
|
// The name is too already used, just free it so we can allocate a new name.
|
2007-02-12 06:18:08 +01:00
|
|
|
V->Name->Destroy();
|
|
|
|
|
2007-02-07 06:52:51 +01:00
|
|
|
unsigned BaseSize = UniqueName.size();
|
2007-02-12 06:18:08 +01:00
|
|
|
while (1) {
|
2009-08-19 21:22:52 +02:00
|
|
|
// Trim any suffix off and append the next number.
|
2007-02-07 06:52:51 +01:00
|
|
|
UniqueName.resize(BaseSize);
|
2009-08-19 21:22:52 +02:00
|
|
|
raw_svector_ostream(UniqueName) << ++LastUnique;
|
|
|
|
|
2007-02-07 07:25:36 +01:00
|
|
|
// Try insert the vmap entry with this suffix.
|
2010-03-31 18:04:26 +02:00
|
|
|
ValueName &NewName = vmap.GetOrCreateValue(UniqueName);
|
2007-02-12 06:18:08 +01:00
|
|
|
if (NewName.getValue() == 0) {
|
|
|
|
// Newly inserted name. Success!
|
|
|
|
NewName.setValue(V);
|
|
|
|
V->Name = &NewName;
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " Inserted value: " << UniqueName << ": " << *V << "\n");
|
2007-02-12 06:18:08 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-01-10 10:51:48 +01:00
|
|
|
}
|
|
|
|
|
2007-02-12 06:18:08 +01:00
|
|
|
void ValueSymbolTable::removeValueName(ValueName *V) {
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " Removing Value: " << V->getKeyData() << "\n");
|
2008-06-27 23:26:26 +02:00
|
|
|
// Remove the value from the symbol table.
|
2007-02-12 06:18:08 +01:00
|
|
|
vmap.remove(V);
|
2006-01-10 10:51:48 +01:00
|
|
|
}
|
|
|
|
|
2007-02-12 06:18:08 +01:00
|
|
|
/// createValueName - This method attempts to create a value name and insert
|
|
|
|
/// it into the symbol table with the specified name. If it conflicts, it
|
|
|
|
/// auto-renames the name and returns that instead.
|
2009-11-06 11:58:06 +01:00
|
|
|
ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {
|
2008-06-27 23:26:26 +02:00
|
|
|
// In the common case, the name is not already in the symbol table.
|
2009-07-23 20:52:12 +02:00
|
|
|
ValueName &Entry = vmap.GetOrCreateValue(Name);
|
2007-02-12 06:18:08 +01:00
|
|
|
if (Entry.getValue() == 0) {
|
|
|
|
Entry.setValue(V);
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": "
|
2007-02-25 21:42:59 +01:00
|
|
|
// << *V << "\n");
|
2007-02-12 06:18:08 +01:00
|
|
|
return &Entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, there is a naming conflict. Rename this value.
|
2010-03-31 18:04:26 +02:00
|
|
|
SmallString<256> UniqueName(Name.begin(), Name.end());
|
2008-06-27 23:26:26 +02:00
|
|
|
|
2007-02-12 06:18:08 +01:00
|
|
|
while (1) {
|
2009-08-19 21:22:52 +02:00
|
|
|
// Trim any suffix off and append the next number.
|
2009-07-23 20:52:12 +02:00
|
|
|
UniqueName.resize(Name.size());
|
2009-08-19 21:22:52 +02:00
|
|
|
raw_svector_ostream(UniqueName) << ++LastUnique;
|
2008-06-27 23:26:26 +02:00
|
|
|
|
2007-02-12 06:18:08 +01:00
|
|
|
// Try insert the vmap entry with this suffix.
|
2010-03-31 18:04:26 +02:00
|
|
|
ValueName &NewName = vmap.GetOrCreateValue(UniqueName);
|
2007-02-12 06:18:08 +01:00
|
|
|
if (NewName.getValue() == 0) {
|
|
|
|
// Newly inserted name. Success!
|
|
|
|
NewName.setValue(V);
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " Inserted value: " << UniqueName << ": " << *V << "\n");
|
2007-02-12 06:18:08 +01:00
|
|
|
return &NewName;
|
|
|
|
}
|
|
|
|
}
|
2006-01-10 10:51:48 +01:00
|
|
|
}
|
|
|
|
|
2007-02-12 06:18:08 +01:00
|
|
|
|
2006-01-10 10:51:48 +01:00
|
|
|
// dump - print out the symbol table
|
|
|
|
//
|
|
|
|
void ValueSymbolTable::dump() const {
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << "ValueSymbolTable:\n");
|
2007-02-12 06:18:08 +01:00
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << " '" << I->getKeyData() << "' = ");
|
2007-02-12 06:18:08 +01:00
|
|
|
I->getValue()->dump();
|
2010-01-05 02:30:06 +01:00
|
|
|
//DEBUG(dbgs() << "\n");
|
2007-02-12 06:18:08 +01:00
|
|
|
}
|
2006-01-10 10:51:48 +01:00
|
|
|
}
|