VM: Refactor dispatch to Factor style
parent
6955dd8565
commit
d5f66d9561
|
@ -1,14 +1,11 @@
|
|||
#include "master.hpp"
|
||||
|
||||
namespace factor
|
||||
{
|
||||
namespace factor {
|
||||
|
||||
cell factor_vm::search_lookup_alist(cell table, cell klass)
|
||||
{
|
||||
cell factor_vm::search_lookup_alist(cell table, cell klass) {
|
||||
array* elements = untag<array>(table);
|
||||
fixnum index = array_capacity(elements) - 2;
|
||||
while(index >= 0)
|
||||
{
|
||||
while (index >= 0) {
|
||||
if (array_nth(elements, index) == klass)
|
||||
return array_nth(elements, index + 1);
|
||||
else
|
||||
|
@ -18,8 +15,7 @@ cell factor_vm::search_lookup_alist(cell table, cell klass)
|
|||
return false_object;
|
||||
}
|
||||
|
||||
cell factor_vm::search_lookup_hash(cell table, cell klass, cell hashcode)
|
||||
{
|
||||
cell factor_vm::search_lookup_hash(cell table, cell klass, cell hashcode) {
|
||||
array* buckets = untag<array>(table);
|
||||
cell bucket = array_nth(buckets, hashcode & (array_capacity(buckets) - 1));
|
||||
if (TAG(bucket) == ARRAY_TYPE)
|
||||
|
@ -28,34 +24,30 @@ cell factor_vm::search_lookup_hash(cell table, cell klass, cell hashcode)
|
|||
return bucket;
|
||||
}
|
||||
|
||||
cell factor_vm::nth_superclass(tuple_layout *layout, fixnum echelon)
|
||||
{
|
||||
cell factor_vm::nth_superclass(tuple_layout* layout, fixnum echelon) {
|
||||
cell* ptr = (cell*)(layout + 1);
|
||||
return ptr[echelon * 2];
|
||||
}
|
||||
|
||||
cell factor_vm::nth_hashcode(tuple_layout *layout, fixnum echelon)
|
||||
{
|
||||
cell factor_vm::nth_hashcode(tuple_layout* layout, fixnum echelon) {
|
||||
cell* ptr = (cell*)(layout + 1);
|
||||
return ptr[echelon * 2 + 1];
|
||||
}
|
||||
|
||||
cell factor_vm::lookup_tuple_method(cell obj, cell methods)
|
||||
{
|
||||
cell factor_vm::lookup_tuple_method(cell obj, cell methods) {
|
||||
tuple_layout* layout = untag<tuple_layout>(untag<tuple>(obj)->layout);
|
||||
|
||||
array* echelons = untag<array>(methods);
|
||||
|
||||
fixnum echelon = std::min(untag_fixnum(layout->echelon),(fixnum)array_capacity(echelons) - 1);
|
||||
fixnum echelon = std::min(untag_fixnum(layout->echelon),
|
||||
(fixnum) array_capacity(echelons) - 1);
|
||||
|
||||
while(echelon >= 0)
|
||||
{
|
||||
while (echelon >= 0) {
|
||||
cell echelon_methods = array_nth(echelons, echelon);
|
||||
|
||||
if (tagged<object>(echelon_methods).type_p(WORD_TYPE))
|
||||
return echelon_methods;
|
||||
else if(to_boolean(echelon_methods))
|
||||
{
|
||||
else if (to_boolean(echelon_methods)) {
|
||||
cell klass = nth_superclass(layout, echelon);
|
||||
cell hashcode = untag_fixnum(nth_hashcode(layout, echelon));
|
||||
cell result = search_lookup_hash(echelon_methods, klass, hashcode);
|
||||
|
@ -70,31 +62,26 @@ cell factor_vm::lookup_tuple_method(cell obj, cell methods)
|
|||
return false_object;
|
||||
}
|
||||
|
||||
cell factor_vm::lookup_method(cell obj, cell methods)
|
||||
{
|
||||
cell factor_vm::lookup_method(cell obj, cell methods) {
|
||||
cell tag = TAG(obj);
|
||||
cell method = array_nth(untag<array>(methods), tag);
|
||||
|
||||
if(tag == TUPLE_TYPE)
|
||||
{
|
||||
if (tag == TUPLE_TYPE) {
|
||||
if (TAG(method) == ARRAY_TYPE)
|
||||
return lookup_tuple_method(obj, method);
|
||||
else
|
||||
return method;
|
||||
}
|
||||
else
|
||||
} else
|
||||
return method;
|
||||
}
|
||||
|
||||
void factor_vm::primitive_lookup_method()
|
||||
{
|
||||
void factor_vm::primitive_lookup_method() {
|
||||
cell methods = ctx->pop();
|
||||
cell obj = ctx->pop();
|
||||
ctx->push(lookup_method(obj, methods));
|
||||
}
|
||||
|
||||
cell factor_vm::object_class(cell obj)
|
||||
{
|
||||
cell factor_vm::object_class(cell obj) {
|
||||
cell tag = TAG(obj);
|
||||
if (tag == TUPLE_TYPE)
|
||||
return untag<tuple>(obj)->layout;
|
||||
|
@ -102,22 +89,19 @@ cell factor_vm::object_class(cell obj)
|
|||
return tag_fixnum(tag);
|
||||
}
|
||||
|
||||
cell factor_vm::method_cache_hashcode(cell klass, array *array)
|
||||
{
|
||||
cell factor_vm::method_cache_hashcode(cell klass, array* array) {
|
||||
cell capacity = (array_capacity(array) >> 1) - 1;
|
||||
return ((klass >> TAG_BITS) & capacity) << 1;
|
||||
}
|
||||
|
||||
void factor_vm::update_method_cache(cell cache, cell klass, cell method)
|
||||
{
|
||||
void factor_vm::update_method_cache(cell cache, cell klass, cell method) {
|
||||
array* cache_elements = untag<array>(cache);
|
||||
cell hashcode = method_cache_hashcode(klass, cache_elements);
|
||||
set_array_nth(cache_elements, hashcode, klass);
|
||||
set_array_nth(cache_elements, hashcode + 1, method);
|
||||
}
|
||||
|
||||
void factor_vm::primitive_mega_cache_miss()
|
||||
{
|
||||
void factor_vm::primitive_mega_cache_miss() {
|
||||
dispatch_stats.megamorphic_cache_misses++;
|
||||
|
||||
cell cache = ctx->pop();
|
||||
|
@ -133,19 +117,17 @@ void factor_vm::primitive_mega_cache_miss()
|
|||
ctx->push(method);
|
||||
}
|
||||
|
||||
void factor_vm::primitive_reset_dispatch_stats()
|
||||
{
|
||||
void factor_vm::primitive_reset_dispatch_stats() {
|
||||
memset(&dispatch_stats, 0, sizeof(dispatch_statistics));
|
||||
}
|
||||
|
||||
/* Allocates memory */
|
||||
void factor_vm::primitive_dispatch_stats()
|
||||
{
|
||||
void factor_vm::primitive_dispatch_stats() {
|
||||
ctx->push(tag<byte_array>(byte_array_from_value(&dispatch_stats)));
|
||||
}
|
||||
|
||||
void quotation_jit::emit_mega_cache_lookup(cell methods_, fixnum index, cell cache_)
|
||||
{
|
||||
void quotation_jit::emit_mega_cache_lookup(cell methods_, fixnum index,
|
||||
cell cache_) {
|
||||
data_root<array> methods(methods_, parent);
|
||||
data_root<array> cache(cache_, parent);
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
namespace factor
|
||||
{
|
||||
namespace factor {
|
||||
|
||||
struct dispatch_statistics {
|
||||
cell megamorphic_cache_hits;
|
||||
|
|
Loading…
Reference in New Issue