CMUCL commit: src/compiler/x86 (11 files)

Raymond Toy rtoy at common-lisp.net
Wed Jul 14 15:14:53 CEST 2010


    Date: Wednesday, July 14, 2010 @ 09:14:53
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/compiler/x86

Modified: nlx.lisp parms.lisp pred.lisp print.lisp sap.lisp static-fn.lisp
          subprim.lisp system.lisp type-vops.lisp values.lisp vm.lisp

Oops.  All of these files should not be in the "cmucl" domain but the
"cmucl-x86-vm" domain.


----------------+
 nlx.lisp       |    4 ++--
 parms.lisp     |    4 ++--
 pred.lisp      |    4 ++--
 print.lisp     |    4 ++--
 sap.lisp       |    4 ++--
 static-fn.lisp |    4 ++--
 subprim.lisp   |    4 ++--
 system.lisp    |    4 ++--
 type-vops.lisp |    4 ++--
 values.lisp    |    4 ++--
 vm.lisp        |    4 ++--
 11 files changed, 22 insertions(+), 22 deletions(-)


Index: src/compiler/x86/nlx.lisp
diff -u src/compiler/x86/nlx.lisp:1.17 src/compiler/x86/nlx.lisp:1.18
--- src/compiler/x86/nlx.lisp:1.17	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/nlx.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/nlx.lisp,v 1.17 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/nlx.lisp,v 1.18 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -19,7 +19,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996,1997,1998.
 ;;;
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 ;;; MAKE-NLX-SP-TN  --  Interface
 ;;;
Index: src/compiler/x86/parms.lisp
diff -u src/compiler/x86/parms.lisp:1.39 src/compiler/x86/parms.lisp:1.40
--- src/compiler/x86/parms.lisp:1.39	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/parms.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/compiler/x86/parms.lisp,v 1.39 2010-03-19 15:19:01 rtoy Exp $")
+  "$Header: /project/cmucl/cvsroot/src/compiler/x86/parms.lisp,v 1.40 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -23,7 +23,7 @@
 
 (in-package :x86)
 (use-package :c)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 ;;; ### Note: we simultaneously use ``word'' to mean a 32 bit quantity and
 ;;; a 16 bit quantity depending on context.  This is because Intel insists
Index: src/compiler/x86/pred.lisp
diff -u src/compiler/x86/pred.lisp:1.5 src/compiler/x86/pred.lisp:1.6
--- src/compiler/x86/pred.lisp:1.5	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/pred.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/pred.lisp,v 1.5 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/pred.lisp,v 1.6 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -18,7 +18,7 @@
 ;;; 
 
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 ;;;; The Branch VOP.
Index: src/compiler/x86/print.lisp
diff -u src/compiler/x86/print.lisp:1.6 src/compiler/x86/print.lisp:1.7
--- src/compiler/x86/print.lisp:1.6	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/print.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/print.lisp,v 1.6 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/print.lisp,v 1.7 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -18,7 +18,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996.
 ;;;
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 (define-vop (print)
   (:args (object :scs (descriptor-reg any-reg)))
Index: src/compiler/x86/sap.lisp
diff -u src/compiler/x86/sap.lisp:1.12 src/compiler/x86/sap.lisp:1.13
--- src/compiler/x86/sap.lisp:1.12	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/sap.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/sap.lisp,v 1.12 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/sap.lisp,v 1.13 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -19,7 +19,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996,1997,1998,1999.
 ;;;
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 ;;;; Moves and coercions:
Index: src/compiler/x86/static-fn.lisp
diff -u src/compiler/x86/static-fn.lisp:1.7 src/compiler/x86/static-fn.lisp:1.8
--- src/compiler/x86/static-fn.lisp:1.7	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/static-fn.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/static-fn.lisp,v 1.7 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/static-fn.lisp,v 1.8 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -20,7 +20,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996,1997.
 ;;;
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 (define-vop (static-function-template)
Index: src/compiler/x86/subprim.lisp
diff -u src/compiler/x86/subprim.lisp:1.6 src/compiler/x86/subprim.lisp:1.7
--- src/compiler/x86/subprim.lisp:1.6	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/subprim.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/subprim.lisp,v 1.6 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/subprim.lisp,v 1.7 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -18,7 +18,7 @@
 ;;; Debugged by Paul F. Werkowski Spring/Summer 1995.
 ;;; 
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 
Index: src/compiler/x86/system.lisp
diff -u src/compiler/x86/system.lisp:1.16 src/compiler/x86/system.lisp:1.17
--- src/compiler/x86/system.lisp:1.16	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/system.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/system.lisp,v 1.16 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/system.lisp,v 1.17 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -20,7 +20,7 @@
 ;;;
 
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 ;;;; Type frobbing VOPs
Index: src/compiler/x86/type-vops.lisp
diff -u src/compiler/x86/type-vops.lisp:1.14 src/compiler/x86/type-vops.lisp:1.15
--- src/compiler/x86/type-vops.lisp:1.14	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/type-vops.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/type-vops.lisp,v 1.14 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/type-vops.lisp,v 1.15 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;; 
@@ -20,7 +20,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996,1997,1998.
 ;;;
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 
Index: src/compiler/x86/values.lisp
diff -u src/compiler/x86/values.lisp:1.7 src/compiler/x86/values.lisp:1.8
--- src/compiler/x86/values.lisp:1.7	Fri Mar 19 11:19:01 2010
+++ src/compiler/x86/values.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/values.lisp,v 1.7 2010-03-19 15:19:01 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/values.lisp,v 1.8 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -20,7 +20,7 @@
 ;;; Enhancements/debugging by Douglas T. Crosher 1996.
 
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 (define-vop (reset-stack-pointer)
   (:args (ptr :scs (any-reg)))
Index: src/compiler/x86/vm.lisp
diff -u src/compiler/x86/vm.lisp:1.18 src/compiler/x86/vm.lisp:1.19
--- src/compiler/x86/vm.lisp:1.18	Wed Jun 30 23:03:27 2010
+++ src/compiler/x86/vm.lisp	Wed Jul 14 09:14:53 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /project/cmucl/cvsroot/src/compiler/x86/vm.lisp,v 1.18 2010-07-01 03:03:27 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/vm.lisp,v 1.19 2010-07-14 13:14:53 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -20,7 +20,7 @@
 ;;;
 
 (in-package :x86)
-(intl:textdomain "cmucl")
+(intl:textdomain "cmucl-x86-vm")
 
 
 ;;;; Register specs



More information about the cmucl-commit mailing list