search for: zhaokang

Displaying 2 results from an estimated 2 matches for "zhaokang".

Did you mean: chaoyang
2016 Jul 25
3
How to use map/set in LLVM to disable automatic sorting?
Hello LLVM, We found that many LLVM passes use map/set containers to increase the searching efficiency. Although map/set has automatic sorting feature, the results after the same pass transformation are still the same. If native map/set, we think the order after inserting new element may change. So, my question is, does LLVM use its own-defined structure instead of native map/set? Or, LLVM
2016 Jul 28
0
How to use map/set in LLVM to disable automatic sorting?
On 7/27/16 8:54 PM, ZhaoKang wrote: > Jon, > > Thanks a lot for your reply! > We will look the detailed implementation in LLVM. > In my opinion, it seems that SetVector class just defines such type, which is has the same efficiency with set, but stays a stable order. Time-efficiency for set lookup should be the...