factor/vm/dispatch.hpp

16 lines
265 B
C++
Raw Normal View History

2013-05-11 21:57:45 -04:00
namespace factor {
2009-05-04 02:46:13 -04:00
2009-11-05 02:07:59 -05:00
struct dispatch_statistics {
2013-05-11 21:57:45 -04:00
cell megamorphic_cache_hits;
cell megamorphic_cache_misses;
2009-11-05 02:07:59 -05:00
2013-05-11 21:57:45 -04:00
cell cold_call_to_ic_transitions;
cell ic_to_pic_transitions;
cell pic_to_mega_transitions;
2009-11-05 02:07:59 -05:00
2013-05-11 21:57:45 -04:00
cell pic_tag_count;
cell pic_tuple_count;
2009-11-05 02:07:59 -05:00
};
2009-05-04 02:46:13 -04:00
}