VM: lets merge entry_points.hpp with vm.hpp, so you have one less header

file to worry about
db4
Björn Lindqvist 2015-08-03 15:07:48 +02:00
parent 282c52b872
commit ae725b737a
4 changed files with 5 additions and 10 deletions

View File

@ -104,7 +104,6 @@ ifdef CONFIG
vm/image.hpp \
vm/callbacks.hpp \
vm/dispatch.hpp \
vm/entry_points.hpp \
vm/safepoints.hpp \
vm/vm.hpp \
vm/allot.hpp \

View File

@ -1,8 +0,0 @@
namespace factor {
typedef void (*c_to_factor_func_type)(cell quot);
typedef void (*unwind_native_frames_func_type)(cell quot, cell to);
typedef cell (*get_fpu_state_func_type)();
typedef void (*set_fpu_state_func_type)(cell state);
}

View File

@ -122,7 +122,6 @@ namespace factor { struct factor_vm; }
#include "image.hpp"
#include "callbacks.hpp"
#include "dispatch.hpp"
#include "entry_points.hpp"
#include "safepoints.hpp"
#include "vm.hpp"
#include "allot.hpp"

View File

@ -2,6 +2,11 @@ using namespace std;
namespace factor {
typedef void (*c_to_factor_func_type)(cell quot);
typedef void (*unwind_native_frames_func_type)(cell quot, cell to);
typedef cell (*get_fpu_state_func_type)();
typedef void (*set_fpu_state_func_type)(cell state);
struct growable_array;
struct code_root;