X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgencgc-internal.h;h=3cb2837421ea46a8dced5fad351f5c50fe629735;hb=f44f6d1adbaaa7057f1948369299c0b2a08bcd6e;hp=bbffe83e7c4a673da7109e8fddd669482474f8e3;hpb=379e3d3ee80c6b9dd9c59f8f76baa6d47c8c5b71;p=sbcl.git diff --git a/src/runtime/gencgc-internal.h b/src/runtime/gencgc-internal.h index bbffe83..3cb2837 100644 --- a/src/runtime/gencgc-internal.h +++ b/src/runtime/gencgc-internal.h @@ -51,10 +51,14 @@ int gencgc_handle_wp_violation(void *); * output the C version in genesis. -- JES, 2006-12-30. */ struct page { - /* This is the offset from the start of the page to the start of - * the alloc_region which contains/contained it. + /* This is the offset from the first byte of some object in memory + * prior to and no closer than the start of the page to the start + * of the page. Lower values here are better, 0 is ideal. This + * is useful for determining where to start when scanning forward + * through a heap page (either for conservative root validation or + * for scavenging). */ - os_vm_size_t region_start_offset; + os_vm_size_t scan_start_offset; /* the number of bytes of this page that are used. This may be less * than the actual bytes used for pages within the current @@ -112,9 +116,10 @@ extern struct page *page_table; /* forward declarations */ - +#ifdef LISP_FEATURE_X86 void sniff_code_object(struct code *code, os_vm_size_t displacement); void gencgc_apply_code_fixups(struct code *old_code, struct code *new_code); +#endif sword_t update_dynamic_space_free_pointer(void); void gc_alloc_update_page_tables(int page_type_flag, struct alloc_region *alloc_region);