Displaying 2 results from an estimated 2 matches for "doublekey".
2015 Jul 29
2
[LLVMdev] What is getTombstoneKey?
Hi, All:
I am trying to extend EarlyCSE.cpp to do more commoning of GEP instruction,
it requires a hashtable with two keys, I defined
typedef ScopedHashTable<DoubleKey, std::pair<Value *, unsigned>,
DenseMapInfo<Value *>, LoadMapAllocator>
LoadHTType;
I declared a DoubleKey struct similar to CallValue but with two Value *
member, However I have problem to implement getTombstoneKey() because I
don't know what it i...
2015 Jul 29
0
[LLVMdev] What is getTombstoneKey?
On Wed, Jul 29, 2015 at 7:51 PM, Lawrence <lawrence at codeaurora.org> wrote:
> Hi, All:
>
>
>
> I am trying to extend EarlyCSE.cpp to do more commoning of GEP instruction,
> it requires a hashtable with two keys, I defined
>
>
>
> typedef ScopedHashTable<DoubleKey, std::pair<Value *, unsigned>,
>
> DenseMapInfo<Value *>, LoadMapAllocator>
> LoadHTType;
>
>
>
> I declared a DoubleKey struct similar to CallValue but with two Value *
> member, However I have problem to implement getTombstoneKey()...