VM: removing the unused callstack-bounds primitive

Probably needs new boot images
char-rename
Björn Lindqvist 2016-11-21 22:30:20 +01:00
parent e4bdbf1503
commit c55a6ef873
5 changed files with 1 additions and 13 deletions

View File

@ -313,10 +313,6 @@ CONSTANT: all-primitives {
{ object } { fixnum } f
}
{ "become" ( old new -- ) "become" { array array } { } f }
{
"callstack-bounds" ( -- start end ) "callstack_bounds"
{ } { alien alien } make-flushable
}
{
"check-datastack" ( array in# out# -- ? ) "check_datastack"
{ array integer integer } { object } make-flushable

View File

@ -37,7 +37,6 @@ PRIMITIVE: (execute) ( word -- )
PRIMITIVE: (identity-hashcode) ( obj -- code )
PRIMITIVE: become ( old new -- )
PRIMITIVE: c-to-factor ( -- )
PRIMITIVE: callstack-bounds ( -- start end )
PRIMITIVE: check-datastack ( array in# out# -- ? )
PRIMITIVE: compute-identity-hashcode ( obj -- )
PRIMITIVE: context-object ( n -- obj )

View File

@ -108,10 +108,4 @@ void factor_vm::primitive_set_innermost_stack_frame_quotation() {
*(cell*)inner = quot->entry_point + offset;
}
// Allocates memory (allot_alien)
void factor_vm::primitive_callstack_bounds() {
ctx->push(allot_alien(ctx->callstack_seg->start));
ctx->push(allot_alien(ctx->callstack_seg->end));
}
}

View File

@ -11,7 +11,7 @@ namespace factor {
_(bignum_shift) _(bignum_subtract) _(bignum_to_fixnum) \
_(bignum_to_fixnum_strict) _(bignum_xor) _(bits_double) _(bits_float) \
_(byte_array) _(callback) _(callback_room) \
_(callstack_bounds) _(callstack_for) _(callstack_to_array) \
_(callstack_for) _(callstack_to_array) \
_(check_datastack) _(clone) _(code_blocks) _(code_room) \
_(compact_gc) _(compute_identity_hashcode) _(context_object) \
_(context_object_for) _(current_callback) _(data_room) \

View File

@ -609,7 +609,6 @@ struct factor_vm {
void primitive_innermost_stack_frame_executing();
void primitive_innermost_stack_frame_scan();
void primitive_set_innermost_stack_frame_quotation();
void primitive_callstack_bounds();
template <typename Iterator, typename Fixup>
void iterate_callstack(context* ctx, Iterator& iterator, Fixup& fixup);