- Mar 17, 2005
-
-
rtoy authored
Helmut Eller's patch sent to cmucl-imp on 2005-03-08. This basically means tracing recursive functions will show all recursions during the trace and not just the final call. code/debug-int.lisp: o Apply Helmut's patch. Tweak it so when the known-return convention is being used, we tell MAKE-BOGUS-LRA that we're using the known-return so we can handle it properly. lisp/breakpoint.c: o Add an extra parameter to compute_offset so we know we're handling a function-end breakpoint or not. Needed because reg_CODE isn't pointing to the bogus lra in this case, so the offsets are all wrong. We compute the right offset for the known return and return the offset as negative so we can tell. o Adjust all callers of compute_offset. o Adjust handle_function_end_breakpoint to handle negative offsets from compute_offset so we can get the right code component for the bogus lra.
-
- Feb 24, 2005
-
-
rtoy authored
o When PPC_FUN_HACK is not defined, the raw_addr slot of an fdefn object should be on a word boundary, so change undefined_tramp and closure_tramp to be on such a boundary. Previously, these had a lowtag of 1. With this change, can we get rid of the other parts of a function definition that we don't use?
-
- Feb 18, 2005
-
-
rtoy authored
-
- Feb 09, 2005
-
-
rtoy authored
be necessary, but this is safe.)
-
- Feb 07, 2005
- Feb 06, 2005
-
-
rtoy authored
relatively straightforward port of the sparc version of linkage-tables. Some refinements are probably still needed, as well as some testing. Use boot-2005-02-ppc-linkage.lisp to bootstrap this change from the 2005-02 snapshot. * code/ppc-vm.lisp o Add appropriate FOREIGN-SYMBOL-ADDRESS-AUX and FIND-FOREIGN-SYMBOL functions for linkage-table. * compiler/generic/new-genesis.lisp o Basically do the same as the sparc port for linkage-tables. o need to extern-alien-name on the cold linkages since they C names depend on the backend conventions. * compiler/ppc/alloc.lisp o Load "undefined_tramp" appropriately for linkage-tables. * compiler/ppc/c-call.lisp o Define new vops (FOREIGN-SYMBOL-CODE-ADDRESS, FOREIGN-SYMBOL-DATA-ADDRESS) for linkage-tables so we can access correctly. * compiler/ppc/cell.lisp o Load "closure_tramp" appropriately for linkage-tables o Load "undefined_tramp" appropriately for linkage-tables * compiler/ppc/parms.lisp o Put the foreign linkage space start at the end of the static space to make it easier to bootstrap. (We need already mapped memory.) We can move this later. o Correct TARGET-FOREIGN-LINKAGE-ENTRY-SIZE. o Add new static-symbol *linkage-table-data* o While were at it, add SPARE-9 and SPARE-0 static symbols so we have 10 spares. * lisp/Config.ppc_darwin o Add -DLINKAGE_TABLE to CFLAGS/ASFLAGS if we have linkage-table support. * lisp/Darwin-os.c o Add os_dlsym to support linkage-tables. (This nees a little refactoring because we just copied the #defines for dlopen modes.) * lisp/os-common.c o The checking of the linkage tables that is done for sparc almost works for ppc, but not quite. Implement one for ppc. * lisp/ppc-arch.c o Add PPC version of arch_make_jump_entry, arch_make_linkage_entry, arch_linkage_entry. * lisp/ppc-assem.S o Add lazy_resolve_linkage to support linkage-tables. This needs some more work. o Add undefined_foreign_symbol_trap. This probably needs work, and definitely needs testing. * lisp/ppc-validate.h o Define the start of the linkage space and size.
-
cshapiro authored
demonstrably slower than extant compiler intrinsics or C runtime memset() implementations for blocks of memory greater than or equal to an x86 VM page.
-
- Feb 04, 2005
-
-
rtoy authored
MB. Martin Rydstrom says if the heap size is not a multiple of 8 MB on Solaris 10, he gets GC lossage with gencgc. Don't know why, but this works around the problem.
-
- Feb 03, 2005
-
-
rtoy authored
work on Solaris 10. (Eventually, he gets a GC lossage). But setting -dynamic-space-size 256 works fine. The difference is that the default is 256 MB - 32 KB. So change the default to just 256 MB. We don't understand why the old default causes funny things to happen on Solaris 10.
-
- Jan 13, 2005
-
-
fgilham authored
lisp.c into the correct <foo>-os.h files.
-
- Dec 24, 2004
-
-
rtoy authored
on Linux/x86, the Lisp signal handler for SIGSEGV overwrites the beginning of the control stack. For SIGSEGV we use an extra signal stack and when the signal isn't handled by the GC or by the stack overflow handler we call eventually call_into_lisp. call_into_lisp tests whether the current stack pointer points to the normal control stack. But the test fails because we use the extra signal stack, so call_into_lisp just sets the stack pointer to the beginning of the normal control stack. This is not much fun for debugging because the backtrace is truncated and it's also no longer possible to throw to the top-level-catcher because its frame was overwritten. I tried to fix that with the patch below. The idea is to switch back to the normal stack before calling the Lisp handler. The patch may not be very elegant but it is at least short :) .
-
- Oct 20, 2004
-
-
rtoy authored
10.3 was putting some malloc'ed areas in the old (bigger) static space, which causes cmucl not to run. Moving the space to 0x10000000 makes it no longer overlap. I don't understand the reason for this. OS X 10.2 doesn't have this problem. Use boot-2004-10-1-ppc.lisp to cross-compile this change.
-
- Oct 19, 2004
-
-
cwang authored
-
- Oct 16, 2004
-
-
rtoy authored
binding-stack to 128 MB each. Increase the heap to a maximum of 512 MB, but leave the default heap at 128 MB. The control-stack and binding-stack were moved down just below the heap. No bootstrap or cross-compiled required.
-
- Oct 15, 2004
-
-
cwang authored
-
- Sep 24, 2004
-
-
rtoy authored
with gencgc because the interrupt handler eventually calls Lisp code that might cons.
-
- Sep 21, 2004
-
-
emarsden authored
support. This is necessary for FILE-AUTHOR.
-
- Sep 14, 2004
-
-
rtoy authored
because it calls handle_breakpoint which eventually calls into Lisp. Gencgc allocation needs SIGILL enabled.
-
- Sep 11, 2004
-
-
rtoy authored
double-float-epsilon actually be epsilon on x86. No effect on other ports. The default precision is now 53-bit (double-float) instead of 64-bit (80-bit floats). However, to preserve C expectations, all calls to C have the precision set to 64-bit. This slows down calls to C, but we try to make syscalls and such fast by not changing precision for the call. By default ext:float-accuracy is 3. Use boot7.lisp to bootstrap.
-
- Aug 17, 2004
-
-
rtoy authored
executable and if the lisp.core is readable. o Add -debug-lisp-search so some information about how the search is progressing is displayed. o To support -debug-lisp-search, change the #ifdefs into code.
-
- Aug 06, 2004
- Aug 04, 2004
- Aug 02, 2004
-
-
cwang authored
Reported by Carl Shapiro
-
- Jul 30, 2004
-
-
rtoy authored
-
rtoy authored
-
rtoy authored
o Move the SC_OFFSET_{HI,LO} macros from sparc-lispregs to lispregs.h, so they can be used elsewhere. ppc-lispregs.h: o Define the register numbers so they can be used in the SC_OFFSET macros. ppc-assem.S: o Document what the byte 18<<2, 0, 0, 24 is supposed to do. o Use the SC_OFFSET macros in undefined_tramp instead of hard-wiring the register number.
-
- Jul 29, 2004
-
-
rtoy authored
the handler, which seems to be a bad idea since interrupt_handle_now has comments about alloc_sap while interrupts are disabled. Not 100% sure this is all right, but everything still appears to work.
-
rtoy authored
-
rtoy authored
#C(0d0 0d0) failing a typecase. Then doing a backtrace gave another error about some negative number not being a positive fixnum. The former error is caused by a bad definition of undefined_tramp. The latter error is caused by the debugger not being able to compute the offset correctly. (Fixes ported from sbcl.)
-
rtoy authored
doesn't like.
-
- Jul 27, 2004
- Jul 25, 2004
-
-
pmai authored
cleanup of the includes.
-
- Jul 24, 2004
-
-
rtoy authored
assertion, let's disable gc assertions on sparc now.
-