From 8524260d0fa86249ad9cefb3432671ef3d095e2f Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Sat, 16 Apr 2005 14:42:19 +0000
Subject: [PATCH] Based on some discussions on #lisp, allocate-vector for ppc
 needs to write a word to the vector to make sure it's paged in, like on
 sparc.

---
 assembly/ppc/array.lisp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/assembly/ppc/array.lisp b/assembly/ppc/array.lisp
index 65b5cd7db..7516acba2 100644
--- a/assembly/ppc/array.lisp
+++ b/assembly/ppc/array.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/array.lisp,v 1.4 2004/09/08 02:10:54 rtoy Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/ppc/array.lisp,v 1.5 2005/04/16 14:42:19 rtoy Exp $
 ;;;
 ;;;    This file contains the support routines for arrays and vectors.
 ;;;
@@ -37,6 +37,9 @@
     (inst srwi ndescr type vm:word-shift)
     (storew ndescr vector 0 vm:other-pointer-type)
     (storew length vector vm:vector-length-slot vm:other-pointer-type))
+  ;; Like the sparc port, we need to touch the last word to make sure
+  ;; this page is paged in.  Do we need to touch all pages?
+  (storew zero-tn alloc-tn -1)
   (move result vector))
 
 
-- 
GitLab