]> gitweb.factorcode.org Git - factor.git/blob - vm/dispatch.hpp
Merge branch 'new-math-parser' of git://factorcode.org/git/factor into new-math-parser
[factor.git] / vm / dispatch.hpp
1 namespace factor
2 {
3
4 struct dispatch_statistics {
5         cell megamorphic_cache_hits;
6         cell megamorphic_cache_misses;
7
8         cell cold_call_to_ic_transitions;
9         cell ic_to_pic_transitions;
10         cell pic_to_mega_transitions;
11
12         cell pic_tag_count;
13         cell pic_tuple_count;
14 };
15
16 }