Displaying 1 result from an estimated 1 matches for "hashtableti".
Did you mean:
hashtablety
2010 Jul 26
2
[LLVMdev] hacking clang IdentifierTable
Hi all,
Clang use a hash table to store all its identifiers. The hash table
definition is:
typedef llvm::StringMap<IdentifierInfo*, llvm::BumpPtrAllocator>
HashTableTy;
HashTableTy HashTable;
Can anyone explain the mechnism of handling the name string key collision
for me? Is there a IdentifierInfo objects chain or list for
variable or function with the same name?
Thanks very much!