factor/vm/dispatch.hpp

17 lines
258 B
C++
Raw Normal View History

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