Skip to content

Commit

Permalink
Merge branch 'main'
Browse files Browse the repository at this point in the history
of github.com:clasp-developers/clasp
  • Loading branch information
drmeister committed Sep 23, 2023
2 parents 0670a4c + 0d1ce71 commit f8265e4
Show file tree
Hide file tree
Showing 16 changed files with 196 additions and 542 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Version 2.4.0 (LLVM15/LLVM16) Pending

## Added
* Debug source position info for bytecode.
* Bytecode stores source location info for debugging.
* Bytecode stores variable info, so that variables can be viewed in the debugger.
* The bytecode compiler tracks source positions for error reporting.
* Circle detection for load forms in bytecode FASL.
* Bytecode functions can be compiled directly into native code with `cl:compile` (experimental).
* Support for Linux AARCH64.

## Fixed
* Avoid segmentation faults from incorrectly calling MP:PROCESS-JOIN in
Expand Down
10 changes: 7 additions & 3 deletions include/clasp/core/configure_clasp.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ THE SOFTWARE.
#error "We are sorry but this address model is not supported yet."
#endif

#if defined( _TARGET_OS_DARWIN ) && defined( __arm64__ )
#if defined( _TARGET_OS_DARWIN ) && defined( __aarch64__ )
# define CLASP_APPLE_SILICON 1
#endif

Expand All @@ -96,8 +96,12 @@ THE SOFTWARE.

#if defined( _ADDRESS_MODEL_64 )

#define GCROOTS_IN_MODULE_NAME "__clasp_gcroots_in_module_"
#define LITERALS_NAME "__clasp_literals_"
#define __EX(var) #var
#define CXX_MACRO_STRING(var) __EX(var)
#define CLASP_GCROOTS_IN_MODULE(NAME) __clasp_gcroots_in_module_ ## NAME
#define GCROOTS_IN_MODULE_NAME CXX_MACRO_STRING(CLASP_GCROOTS_IN_MODULE())
#define CLASP_LITERALS(NAME) __clasp_literals_ ## NAME
#define LITERALS_NAME CXX_MACRO_STRING(CLASP_LITERALS())
#define INTPTR_BITS 64

typedef uint64_t bit_array_word; // "word" for bit array purposes (see gcbitarray.h)
Expand Down
2 changes: 1 addition & 1 deletion include/clasp/core/lispCallingConvention.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ LCC_RETURN_RAW general_entry_point_redirect_7(core::T_O* closure, core::T_O* far


/*! This is X86_64 dependent code */
#if (defined(X86_64) || defined(ARM64)) && defined(_ADDRESS_MODEL_64)
#if defined(__x86_64__) || defined(__aarch64__)

// This is VERY HACKISH
// it's based on the System V Application Binary Interface for X86_64
Expand Down
129 changes: 67 additions & 62 deletions src/core/corePackage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1235,73 +1235,78 @@ void CoreExposer_O::define_essential_globals(LispPtr lisp) {
_sym_STARdebugVaslistSTAR->defparameter(nil<core::T_O>());
_sym_STARdebug_dtree_interpreterSTAR->defparameter(nil<core::T_O>());
_sym_STARdebug_symbol_lookupSTAR->defparameter(nil<core::T_O>());
#if defined(__x86_64__)
SYMBOL_EXPORT_SC_(KeywordPkg, 64_bit);
Symbol_sp address_model = kw::_sym_64_bit;

#if defined(__APPLE__) && defined(__MACH__)
#include <TargetConditionals.h>

#if TARGET_OS_IPHONE == 1
#error Currently iPhone simulator and iOS are not supported
#elif TARGET_OS_MAC == 1

SYMBOL_EXPORT_SC_(KeywordPkg, target_os_darwin);
Symbol_sp target_os = kw::_sym_target_os_darwin;

#else
#error Your TargetConditionals.h file says you are not a Mac or iPhone?????
List_sp features = nil<core::T_O>();
features = Cons_O::create(_lisp->internKeyword("CLASP"), features);
features = Cons_O::create(_lisp->internKeyword("COMMON-LISP"), features);
features = Cons_O::create(_lisp->internKeyword("ANSI-CL"), features);
features = Cons_O::create(_lisp->internKeyword("IEEE-FLOATING-POINT"), features);
features = Cons_O::create(_lisp->internKeyword("64-BIT"), features);
#ifdef _TARGET_OS_DARWIN
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("BSD"), features);
features = Cons_O::create(_lisp->internKeyword("DARWIN"), features);
#endif

#elif defined(__linux__)

SYMBOL_EXPORT_SC_(KeywordPkg, target_os_linux);
Symbol_sp target_os = kw::_sym_target_os_linux;

#elif defined(__FreeBSD__)

SYMBOL_EXPORT_SC_(KeywordPkg, target_os_freebsd);
Symbol_sp target_os = kw::_sym_target_os_freebsd;

#elif defined(CLASP_APPLE_SILICON)
#error "__arm__ is defined"
#else
#error Currently only MacOSX, linux and FreeBSD are supported for x86_64
#ifdef _TARGET_OS_LINUX
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("LINUX"), features);
#endif

#elif defined(__i386__)

SYMBOL_EXPORT_SC_(KeywordPkg, 32_bit);
Symbol_sp address_model = kw::_sym_32_bit;

#if defined(__linux__)

SYMBOL_EXPORT_SC_(KeywordPkg, target_os_linux);
Symbol_sp target_os = kw::_sym_target_os_linux;

#else
#error Currently only linux is supported for i386
#ifdef _TARGET_OS_FREEBSD
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("BSD"), features);
features = Cons_O::create(_lisp->internKeyword("FREEBSD"), features);
#endif

#elif defined(CLASP_APPLE_SILICON)

SYMBOL_EXPORT_SC_(KeywordPkg, target_os_darwin);
Symbol_sp target_os = kw::_sym_target_os_darwin;
SYMBOL_EXPORT_SC_(KeywordPkg, 64_bit);
Symbol_sp address_model = kw::_sym_64_bit;

#else
#error Currently only x86_64 and i386 is supported
#ifdef __x86_64__
features = Cons_O::create(_lisp->internKeyword("X86-64"), features);
#endif

ql::list features;
features << target_os;
features << address_model;

// Now add other standard features
// features << kw::_sym_brcl;

cl::_sym_STARfeaturesSTAR->exportYourself()->defparameter(features.cons());
#ifdef __aarch64__
features = Cons_O::create(_lisp->internKeyword("ARM64"), features);
#endif
#ifdef CLASP_UNICODE
features = Cons_O::create(_lisp->internKeyword("UNICODE"), features);
#endif
features = Cons_O::create(_lisp->internKeyword("LLVM" CXX_MACRO_STRING(__clang_major__)), features);
#ifdef VARARGS
features = Cons_O::create(_lisp->internKeyword("VARARGS"), features);
#endif
#ifdef POLYMORPHIC_SMART_PTR
features = Cons_O::create(_lisp->internKeyword("POLYMORPHIC-SMART-PTR"), features);
#endif
#ifdef _DEBUG_BUILD
features = Cons_O::create(_lisp->internKeyword("DEBUG-BUILD"), features);
#else // _RELEASE_BUILD
features = Cons_O::create(_lisp->internKeyword("RELEASE-BUILD"), features);
#endif
#ifdef USE_MPI
features = Cons_O::create(_lisp->internKeyword("USE-MPI"), features);
#endif
#if defined(USE_BOEHM)
features = Cons_O::create(_lisp->internKeyword("USE-BOEHM"), features);
#elif defined(USE_MPS)
features = Cons_O::create(_lisp->internKeyword("USE-MPS"), features);
#elif defined(USE_MMTK)
features = Cons_O::create(_lisp->internKeyword("USE-MMTK"), features);
#endif
#ifdef USE_PRECISE_GC
// Informs CL that precise GC is being used
features = Cons_O::create(_lisp->internKeyword("USE-PRECISE-GC"), features);
#endif
#ifdef CLASP_THREADS
features = Cons_O::create(_lisp->internKeyword("THREADS"),features);
#endif
#if TAG_BITS==4
features = Cons_O::create(_lisp->internKeyword("TAG-BITS4"),features);
#endif
#ifdef CLASP_EXTENSIONS
features = Cons_O::create(_lisp->internKeyword("EXTENSIONS"),features);
#endif
#if CLASP_BUILD_MODE == 6
features = Cons_O::create(_lisp->internKeyword("BYTECODE"), features);
#endif
cl::_sym_STARfeaturesSTAR->exportYourself()->defparameter(features);
}

void add_defsetf_access_update(Symbol_sp access_fn, Symbol_sp update_fn) {
Expand Down
3 changes: 3 additions & 0 deletions src/core/cscript.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,6 @@
#~"hwinfo.cc"
#~"clasp_ffi_package.cc"
#~"fli.cc")

(k:sources :trampoline
#~"trampoline/trampoline.cc")
71 changes: 0 additions & 71 deletions src/core/lisp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -599,77 +599,6 @@ void Lisp::startupLispEnvironment() {
gctools::initialize_unix_signal_handlers();
this->_Booted = true;

List_sp features = cl::_sym_STARfeaturesSTAR->symbolValue();
features = Cons_O::create(_lisp->internKeyword("CLASP"), features);
features = Cons_O::create(_lisp->internKeyword("COMMON-LISP"), features);
features = Cons_O::create(_lisp->internKeyword("ANSI-CL"), features);
features = Cons_O::create(_lisp->internKeyword("IEEE-FLOATING-POINT"), features);
#ifdef _TARGET_OS_DARWIN
features = Cons_O::create(_lisp->internKeyword("DARWIN"), features);
features = Cons_O::create(_lisp->internKeyword("BSD"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
#endif
#ifdef _TARGET_OS_LINUX
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("LINUX"), features);
#endif
#ifdef _TARGET_OS_FREEBSD
features = Cons_O::create(_lisp->internKeyword("UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("OS-UNIX"), features);
features = Cons_O::create(_lisp->internKeyword("FREEBSD"), features);
features = Cons_O::create(_lisp->internKeyword("BSD"), features);
#endif
#ifdef X86_64
features = Cons_O::create(_lisp->internKeyword("X86-64"), features);
#endif
#ifdef ARM64
features = Cons_O::create(_lisp->internKeyword("ARM64"), features);
#endif
#ifdef CLASP_UNICODE
features = Cons_O::create(_lisp->internKeyword("UNICODE"), features);
#endif
features = Cons_O::create(_lisp->internKeyword("LLVM" CXX_MACRO_STRING(__clang_major__)), features);
#ifdef VARARGS
features = Cons_O::create(_lisp->internKeyword("VARARGS"), features);
#endif
#ifdef POLYMORPHIC_SMART_PTR
features = Cons_O::create(_lisp->internKeyword("POLYMORPHIC-SMART-PTR"), features);
#endif
#ifdef _DEBUG_BUILD
features = Cons_O::create(_lisp->internKeyword("DEBUG-BUILD"), features);
#else // _RELEASE_BUILD
features = Cons_O::create(_lisp->internKeyword("RELEASE-BUILD"), features);
#endif
#ifdef USE_MPI
features = Cons_O::create(_lisp->internKeyword("USE-MPI"), features);
#endif
#if defined(USE_BOEHM)
features = Cons_O::create(_lisp->internKeyword("USE-BOEHM"), features);
#elif defined(USE_MPS)
features = Cons_O::create(_lisp->internKeyword("USE-MPS"), features);
#elif defined(USE_MMTK)
features = Cons_O::create(_lisp->internKeyword("USE-MMTK"), features);
#endif
#ifdef USE_PRECISE_GC
// Informs CL that precise GC is being used
features = Cons_O::create(_lisp->internKeyword("USE-PRECISE-GC"), features);
#endif
#ifdef CLASP_THREADS
features = Cons_O::create(_lisp->internKeyword("THREADS"),features);
#endif
#if TAG_BITS==4
features = Cons_O::create(_lisp->internKeyword("TAG-BITS4"),features);
#endif
#ifdef CLASP_EXTENSIONS
features = Cons_O::create(_lisp->internKeyword("EXTENSIONS"),features);
#endif
#if CLASP_BUILD_MODE == 6
features = Cons_O::create(_lisp->internKeyword("BYTECODE"), features);
#endif
cl::_sym_STARfeaturesSTAR->setf_symbolValue(features);

globals_->_InitFileName = "sys:src;lisp;" KERNEL_NAME ";init.lisp";
}

Expand Down
21 changes: 0 additions & 21 deletions src/core/trampoline/makefile

This file was deleted.

Loading

0 comments on commit f8265e4

Please sign in to comment.