What would you even need PopCnt for? For instance, if you're using a bit field to count unique elements in a sequence (say, all elements are between 0 and 999, soo 1000-bit bitfield will do), you don't need PopCnt, you just read and write individual bits, and increment a counter each time you changed a bit from 0 to 1.