Displaying 2 results from an estimated 2 matches for "59984".
Did you mean:
9984
2011 Jul 20
3
Memory Usage in Top and System Monitor
Can someone help clear up some confusion in reading memory usage in Top and System monitor. Here is a picture of both.
http://s1176.photobucket.com/albums/x327/ionosphere2011/
Why does "System Monitor" show 1.7gb free out of 8gb. While Top shows all 8gb being used?
If 1.7gb is free then it should not be using swap space so I assume "System Monitor" is reporting it
2018 May 10
0
suboptimal type isomorphy handling involving opaque structs
...Linux kernel compilation
units, this effect causes lots of duplicated types because it
propagates upwards through the type hierarchy. In a Linux kernel build
with 2256 compilation units:
$ egrep '^%struct\.[0-9a-z_]+[. ]' llvm_bitcode_linked.ll | egrep -v
'^%struct\.anon\.' | wc -l
59984
$ egrep '^%struct\.[0-9a-z_]+ ' llvm_bitcode_linked.ll | egrep -v
'^%struct\.anon\.' | wc -l
4463
So there are 4463 unique struct names, but 59984 named struct types.
Many structs are duplicated a few hundred times (these aren't all,
just the most common ones):
$ egrep '^%...