2020-01-13 08:01:40 +01:00
|
|
|
/* Copyright 2001,2009-2015,2018,2020
|
2018-06-20 20:01:49 +02:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
This file is part of Guile.
|
|
|
|
|
|
|
|
|
|
Guile is free software: you can redistribute it and/or modify it
|
|
|
|
|
under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
Guile is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with Guile. If not, see
|
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
2001-04-16 03:43:48 +00:00
|
|
|
|
2013-11-19 21:45:07 +01:00
|
|
|
#ifndef _SCM_LOADER_H_
|
|
|
|
|
#define _SCM_LOADER_H_
|
2001-04-16 03:43:48 +00:00
|
|
|
|
2018-06-20 16:33:05 +02:00
|
|
|
#include <libguile/scm.h>
|
2001-04-16 03:43:48 +00:00
|
|
|
|
2018-06-17 09:24:22 +02:00
|
|
|
#ifdef BUILDING_LIBGUILE
|
|
|
|
|
|
|
|
|
|
/* The endianness marker in objcode. */
|
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
|
# define SCM_OBJCODE_ENDIANNESS "BE"
|
|
|
|
|
#else
|
|
|
|
|
# define SCM_OBJCODE_ENDIANNESS "LE"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define _SCM_CPP_STRINGIFY(x) # x
|
|
|
|
|
#define SCM_CPP_STRINGIFY(x) _SCM_CPP_STRINGIFY (x)
|
|
|
|
|
|
|
|
|
|
/* The word size marker in objcode. */
|
|
|
|
|
#define SCM_OBJCODE_WORD_SIZE SCM_CPP_STRINGIFY (SIZEOF_VOID_P)
|
|
|
|
|
|
|
|
|
|
/* Major and minor versions must be single characters. */
|
|
|
|
|
#define SCM_OBJCODE_MAJOR_VERSION 4
|
2020-01-13 08:01:40 +01:00
|
|
|
#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
|
2020-05-13 09:37:54 +02:00
|
|
|
#define SCM_OBJCODE_MINOR_VERSION 3
|
2018-06-17 09:24:22 +02:00
|
|
|
#define SCM_OBJCODE_MAJOR_VERSION_STRING \
|
|
|
|
|
SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION)
|
|
|
|
|
#define SCM_OBJCODE_MINOR_VERSION_STRING \
|
|
|
|
|
SCM_CPP_STRINGIFY(SCM_OBJCODE_MINOR_VERSION)
|
|
|
|
|
#define SCM_OBJCODE_VERSION_STRING \
|
|
|
|
|
SCM_OBJCODE_MAJOR_VERSION_STRING "." SCM_OBJCODE_MINOR_VERSION_STRING
|
|
|
|
|
#define SCM_OBJCODE_MACHINE_VERSION_STRING \
|
|
|
|
|
SCM_OBJCODE_ENDIANNESS "-" SCM_OBJCODE_WORD_SIZE "-" SCM_OBJCODE_VERSION_STRING
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-06-01 21:33:46 +02:00
|
|
|
SCM_API SCM scm_load_thunk_from_file (SCM filename);
|
|
|
|
|
SCM_API SCM scm_load_thunk_from_memory (SCM bv);
|
|
|
|
|
|
2018-07-29 16:11:38 +02:00
|
|
|
SCM_INTERNAL const uint8_t *
|
|
|
|
|
scm_find_slot_map_unlocked (const uint32_t *ip);
|
2014-01-26 20:55:04 +01:00
|
|
|
|
2013-11-19 21:45:07 +01:00
|
|
|
SCM_INTERNAL void scm_bootstrap_loader (void);
|
|
|
|
|
SCM_INTERNAL void scm_init_loader (void);
|
2001-04-16 03:43:48 +00:00
|
|
|
|
2013-11-19 21:45:07 +01:00
|
|
|
#endif /* _SCM_LOADER_H_ */
|