]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/entry_points.cpp
vm: change "profiler" names to "counting_profiler"
[factor.git] / vm / entry_points.cpp
old mode 100644 (file)
new mode 100755 (executable)
index e07e343..724874e
@@ -7,23 +7,51 @@ void factor_vm::c_to_factor(cell quot)
 {
        /* First time this is called, wrap the c-to-factor sub-primitive inside
        of a callback stub, which saves and restores non-volatile registers
-       as per platform ABI conventions, so that the Factor compiler can treat
+       per platform ABI conventions, so that the Factor compiler can treat
        all registers as volatile */
        if(!c_to_factor_func)
        {
                tagged<word> c_to_factor_word(special_objects[C_TO_FACTOR_WORD]);
                code_block *c_to_factor_block = callbacks->add(c_to_factor_word.value(),0);
-               c_to_factor_func = (c_to_factor_func_type)c_to_factor_block->entry_point();
+               void* func = c_to_factor_block->entry_point();
+               CODE_TO_FUNCTION_POINTER_CALLBACK(this, func);
+               c_to_factor_func = (c_to_factor_func_type)func;
        }
-
        c_to_factor_func(quot);
 }
 
+template<typename Func> Func factor_vm::get_entry_point(cell n)
+{
+       /* We return word->code->entry_point() and not word->entry_point,
+       because if counting_profiler is enabled, we don't want to go through the
+       entry point's counting_profiler stub. This clobbers registers, since entry
+       points use the C ABI and not the Factor ABI. */
+       tagged<word> entry_point_word(special_objects[n]);
+       return (Func)entry_point_word->code->entry_point();
+}
+
 void factor_vm::unwind_native_frames(cell quot, stack_frame *to)
 {
-       tagged<word> unwind_native_frames_word(special_objects[UNWIND_NATIVE_FRAMES_WORD]);
-       unwind_native_frames_func_type unwind_native_frames_func = (unwind_native_frames_func_type)unwind_native_frames_word->entry_point;
-       unwind_native_frames_func(quot,to);
+       tagged<word> entry_point_word(special_objects[UNWIND_NATIVE_FRAMES_WORD]);
+       void *func = entry_point_word->code->entry_point();
+       CODE_TO_FUNCTION_POINTER(func);
+       ((unwind_native_frames_func_type)func)(quot,to);
+}
+
+cell factor_vm::get_fpu_state()
+{
+       tagged<word> entry_point_word(special_objects[GET_FPU_STATE_WORD]);
+       void *func = entry_point_word->code->entry_point();
+       CODE_TO_FUNCTION_POINTER(func);
+       return ((get_fpu_state_func_type)func)();
+}
+
+void factor_vm::set_fpu_state(cell state)
+{
+       tagged<word> entry_point_word(special_objects[SET_FPU_STATE_WORD]);
+       void *func = entry_point_word->code->entry_point();
+       CODE_TO_FUNCTION_POINTER(func);
+       ((set_fpu_state_func_type)func)(state);
 }
 
 }