]> gitweb.factorcode.org Git - factor.git/blob - vm/dispatch.hpp
xmode.rules: removing test no longer needed
[factor.git] / vm / dispatch.hpp
1 namespace factor {
2
3 struct dispatch_statistics {
4   cell megamorphic_cache_hits;
5   cell megamorphic_cache_misses;
6
7   cell cold_call_to_ic_transitions;
8   cell ic_to_pic_transitions;
9   cell pic_to_mega_transitions;
10
11   cell pic_tag_count;
12   cell pic_tuple_count;
13 };
14
15 }