123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- #include <stdio.h>
- #include "scheme48.h"
- static s48_value s48_provide_asm_values(s48_value asm_vector);
- static s48_value s48_malloc_byte_vector(s48_value length);
- static s48_value s48_stob_start_address(s48_value stob);
- static s48_value s48_free_byte_vector(s48_value byte_vector);
- void
- s48_init_asm_glue(void)
- {
- S48_EXPORT_FUNCTION(s48_provide_asm_values);
- S48_EXPORT_FUNCTION(s48_malloc_byte_vector);
- S48_EXPORT_FUNCTION(s48_stob_start_address);
- S48_EXPORT_FUNCTION(s48_free_byte_vector);
- }
- static s48_value
- s48_provide_asm_values(s48_value asm_vector)
- {
- extern void s48_stack_gc();
- extern long s48_unknown_call();
- extern long s48_unknown_return();
- extern long s48_interrupt_handler();
- extern long s48_exception_handler();
- extern long s48_restart_vm();
- extern long s48_gc_for_native_code();
- extern long s48_native_add();
- extern long s48_native_sub();
- extern long s48_native_mul();
- extern long s48_native_E();
- extern long s48_native_L();
- extern long s48_native_G();
- extern long s48_native_LE();
- extern long s48_native_GE();
- extern long s48_native_bitwise_not;
- extern long s48_native_bit_count;
- extern long s48_native_bitwise_and;
- extern long s48_native_bitwise_ior;
- extern long s48_native_bitwise_xor;
- extern long s48_restart_vm2();
- extern long s48_Sstack_limitS;
- extern long s48_ShpS;
- extern long s48_SlimitS;
- /* The order of the vector has to match the enumatation asm-external in
- s48-compiler/asm-externals.scm */
- /* 0 *val* */
- /* 1 *cont* */
- /* 2 *stack* */
- S48_VECTOR_SET(asm_vector, 3, s48_enter_fixnum((long) &s48_Sstack_limitS));
- S48_VECTOR_SET(asm_vector, 4, s48_enter_fixnum((long) &s48_stack_gc));
- S48_VECTOR_SET(asm_vector, 5, s48_enter_fixnum((long) &s48_ShpS));
- S48_VECTOR_SET(asm_vector, 6, s48_enter_fixnum((long) &s48_SlimitS));
- S48_VECTOR_SET(asm_vector, 7, s48_enter_fixnum((long) &s48_unknown_call));
- S48_VECTOR_SET(asm_vector, 8, s48_enter_fixnum((long) &s48_unknown_return));
- S48_VECTOR_SET(asm_vector, 9, s48_enter_fixnum((long) &s48_interrupt_handler));
- S48_VECTOR_SET(asm_vector, 10, s48_enter_fixnum((long) &s48_exception_handler));
- S48_VECTOR_SET(asm_vector, 11, s48_enter_fixnum((long) &s48_restart_vm));
- S48_VECTOR_SET(asm_vector, 12, s48_enter_fixnum((long) &s48_gc_for_native_code));
- S48_VECTOR_SET(asm_vector, 13, s48_enter_fixnum((long) &s48_native_add));
- S48_VECTOR_SET(asm_vector, 14, s48_enter_fixnum((long) &s48_native_sub));
- S48_VECTOR_SET(asm_vector, 15, s48_enter_fixnum((long) &s48_native_mul));
- S48_VECTOR_SET(asm_vector, 16, s48_enter_fixnum((long) &s48_native_E));
- S48_VECTOR_SET(asm_vector, 17, s48_enter_fixnum((long) &s48_native_L));
- S48_VECTOR_SET(asm_vector, 18, s48_enter_fixnum((long) &s48_native_G));
- S48_VECTOR_SET(asm_vector, 19, s48_enter_fixnum((long) &s48_native_LE));
- S48_VECTOR_SET(asm_vector, 20, s48_enter_fixnum((long) &s48_native_GE));
- S48_VECTOR_SET(asm_vector, 21, s48_enter_fixnum((long) &s48_native_bitwise_not));
- S48_VECTOR_SET(asm_vector, 22, s48_enter_fixnum((long) &s48_native_bit_count));
- S48_VECTOR_SET(asm_vector, 23, s48_enter_fixnum((long) &s48_native_bitwise_and));
- S48_VECTOR_SET(asm_vector, 24, s48_enter_fixnum((long) &s48_native_bitwise_ior));
- S48_VECTOR_SET(asm_vector, 25, s48_enter_fixnum((long) &s48_native_bitwise_xor));
- S48_VECTOR_SET(asm_vector, 26, s48_enter_fixnum((long) &s48_restart_vm2));
- return S48_UNSPECIFIC;
- }
- int
- s48_is_integer_or_flonum(s48_value thing)
- {
- return (S48_FIXNUM_P (thing) || S48_BIGNUM_P (thing) || S48_DOUBLE_P (thing));
- }
- /*
- * Make a byte-vector that is outside the heap (and thus won't be moved (or
- * freed) by the GC).
- */
- static s48_value
- s48_malloc_byte_vector(s48_value length)
- {
- int c_length = s48_extract_fixnum(length);
- int bytes = (c_length + 4 + 3) & -4; /* space for header + round up */
- char *bv = (char *)malloc(bytes);
- if (bv == NULL)
- s48_raise_out_of_memory_error();
- *((long *) bv) = (c_length << 8)
- | (S48_STOBTYPE_BYTE_VECTOR << 2)
- | S48_HEADER_TAG;
- return (s48_value) ((((long) bv) + 4) | S48_STOB_TAG);
- }
- /*
- * Free up a malloc'ed byte vector.
- */
- static s48_value
- s48_free_byte_vector(s48_value byte_vector)
- {
- if (!S48_BYTE_VECTOR_P(byte_vector))
- s48_raise_argument_type_error(byte_vector);
- free((void *) ((byte_vector & -4)- 4));
- return S48_UNSPECIFIC;
- }
- /*
- * The assembler needs to be able to get the start address of a stored
- * object.
- */
- static s48_value
- s48_stob_start_address(s48_value stob)
- {
- if (!S48_STOB_P(stob))
- s48_raise_argument_type_error(stob);
-
- return s48_enter_integer((long) S48_ADDRESS_AFTER_HEADER(stob, void));
- }
- s48_value
- s48_is_integer_or_floanum(s48_value value)
- {
- return (S48_FIXNUM_P (value) || S48_BIGNUM_P (value) || S48_DOUBLE_P (value));
- }
- s48_value
- s48_are_integers_or_floanums(s48_value value1, s48_value value2)
- {
- return (((S48_FIXNUM_P (value1) || S48_BIGNUM_P (value1)) &&
- (S48_FIXNUM_P (value2) || S48_BIGNUM_P (value2))) ||
- ((S48_DOUBLE_P (value1) && S48_DOUBLE_P (value2))));
- }
- s48_value
- s48_is_integer(s48_value value)
- {
- return (S48_FIXNUM_P (value) || S48_BIGNUM_P (value));
- }
- s48_value
- s48_are_integers(s48_value value1, s48_value value2)
- {
- return (((S48_FIXNUM_P (value1) || S48_BIGNUM_P (value1)) &&
- (S48_FIXNUM_P (value2) || S48_BIGNUM_P (value2))));
- }
- long ignore_values_native_protocol = 186;
- long jmp_count = 10; /* just a guess: jmp continue */
- long first_opcode_index = 13; /* from vm/package-defs.scm */
- long
- s48_make_native_return_code(char* jmp_to_continue, long frame_size)
- {
- long return_code, i;
- return_code = s48_make_blank_return_code(ignore_values_native_protocol, frame_size, jmp_count);
- for (i=0; i < jmp_count; i++)
- S48_BYTE_VECTOR_SET(return_code, i + first_opcode_index, jmp_to_continue[i]);
- fprintf (stderr, "Generated return code at %d (%x) from %d with fsize:%d\n", return_code, return_code, (long) jmp_to_continue, frame_size);
- return return_code;
- }
|