opnsense-src/contrib/llvm/lib/IR/ValueSymbolTable.cpp

116 lines
3.9 KiB
C++
Raw Normal View History

2009-06-02 13:52:33 -04:00
//===-- ValueSymbolTable.cpp - Implement the ValueSymbolTable class -------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the ValueSymbolTable class for the IR library.
2009-06-02 13:52:33 -04:00
//
//===----------------------------------------------------------------------===//
#include "llvm/IR/ValueSymbolTable.h"
2009-06-02 13:52:33 -04:00
#include "llvm/ADT/SmallString.h"
#include "llvm/IR/GlobalValue.h"
#include "llvm/IR/Type.h"
2009-06-02 13:52:33 -04:00
#include "llvm/Support/Debug.h"
2009-10-14 13:57:32 -04:00
#include "llvm/Support/raw_ostream.h"
2009-06-02 13:52:33 -04:00
using namespace llvm;
#define DEBUG_TYPE "valuesymtab"
2009-06-02 13:52:33 -04:00
// 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-15 10:37:28 -05:00
dbgs() << "Value still in symbol table! Type = '"
<< *VI->getValue()->getType() << "' Name = '"
2009-10-14 13:57:32 -04:00
<< VI->getKeyData() << "'\n";
2009-06-02 13:52:33 -04:00
assert(vmap.empty() && "Values remain in symbol table!");
#endif
}
// Insert a value into the symbol table with the specified name...
//
void ValueSymbolTable::reinsertValue(Value* V) {
assert(V->hasName() && "Can't insert nameless Value into symbol table");
// Try inserting the name, assuming it won't conflict.
if (vmap.insert(V->getValueName())) {
//DEBUG(dbgs() << " Inserted value: " << V->getValueName() << ": " << *V << "\n");
2009-06-02 13:52:33 -04:00
return;
}
// Otherwise, there is a naming conflict. Rename this value.
2009-10-14 13:57:32 -04:00
SmallString<256> UniqueName(V->getName().begin(), V->getName().end());
2009-06-02 13:52:33 -04:00
// The name is too already used, just free it so we can allocate a new name.
V->getValueName()->Destroy();
2009-06-02 13:52:33 -04:00
unsigned BaseSize = UniqueName.size();
while (1) {
2009-10-14 13:57:32 -04:00
// Trim any suffix off and append the next number.
2009-06-02 13:52:33 -04:00
UniqueName.resize(BaseSize);
raw_svector_ostream(UniqueName) << "." << ++LastUnique;
2009-10-14 13:57:32 -04:00
2009-06-02 13:52:33 -04:00
// Try insert the vmap entry with this suffix.
auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
if (IterBool.second) {
2009-06-02 13:52:33 -04:00
// Newly inserted name. Success!
V->setValueName(&*IterBool.first);
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << " Inserted value: " << UniqueName << ": " << *V << "\n");
2009-06-02 13:52:33 -04:00
return;
}
}
}
void ValueSymbolTable::removeValueName(ValueName *V) {
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << " Removing Value: " << V->getKeyData() << "\n");
2009-06-02 13:52:33 -04:00
// Remove the value from the symbol table.
vmap.remove(V);
}
/// 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-18 09:58:34 -05:00
ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {
2009-06-02 13:52:33 -04:00
// In the common case, the name is not already in the symbol table.
auto IterBool = vmap.insert(std::make_pair(Name, V));
if (IterBool.second) {
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": "
2009-06-02 13:52:33 -04:00
// << *V << "\n");
return &*IterBool.first;
2009-06-02 13:52:33 -04:00
}
// Otherwise, there is a naming conflict. Rename this value.
2010-04-02 04:54:30 -04:00
SmallString<256> UniqueName(Name.begin(), Name.end());
2009-06-02 13:52:33 -04:00
while (1) {
2009-10-14 13:57:32 -04:00
// Trim any suffix off and append the next number.
UniqueName.resize(Name.size());
raw_svector_ostream(UniqueName) << ++LastUnique;
2009-06-02 13:52:33 -04:00
// Try insert the vmap entry with this suffix.
auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
if (IterBool.second) {
// DEBUG(dbgs() << " Inserted value: " << UniqueName << ": " << *V <<
// "\n");
return &*IterBool.first;
2009-06-02 13:52:33 -04:00
}
}
}
// dump - print out the symbol table
//
void ValueSymbolTable::dump() const {
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << "ValueSymbolTable:\n");
2009-06-02 13:52:33 -04:00
for (const_iterator I = begin(), E = end(); I != E; ++I) {
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << " '" << I->getKeyData() << "' = ");
2009-06-02 13:52:33 -04:00
I->getValue()->dump();
2010-01-15 10:37:28 -05:00
//DEBUG(dbgs() << "\n");
2009-06-02 13:52:33 -04:00
}
}