Lines Matching refs:Name
29 << *VI->getValue()->getType() << "' Name = '"
53 // Insert a value into the symbol table with the specified name...
58 // Try inserting the name, assuming it won't conflict.
67 // The name is too already used, just free it so we can allocate a new name.
80 /// createValueName - This method attempts to create a value name and insert
81 /// it into the symbol table with the specified name. If it conflicts, it
82 /// auto-renames the name and returns that instead.
83 ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {
84 // In the common case, the name is not already in the symbol table.
85 auto IterBool = vmap.insert(std::make_pair(Name, V));
93 SmallString<256> UniqueName(Name.begin(), Name.end());