From ab17e2b10cc953c7d0091797c815bdd728a17967 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Mon, 15 May 2006 11:56:21 +0000 Subject: [PATCH] 0.9.12.25: Micro-optimization of BOUNDP for x86 and x86-64 (#-sb-thread only). --- src/compiler/x86-64/cell.lisp | 6 +++--- src/compiler/x86/cell.lisp | 6 +++--- version.lisp-expr | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/compiler/x86-64/cell.lisp b/src/compiler/x86-64/cell.lisp index 49aef07de..60171da09 100644 --- a/src/compiler/x86-64/cell.lisp +++ b/src/compiler/x86-64/cell.lisp @@ -203,10 +203,10 @@ (:args (object :scs (descriptor-reg))) (:conditional) (:info target not-p) - (:temporary (:sc descriptor-reg :from (:argument 0)) value) (:generator 9 - (loadw value object symbol-value-slot other-pointer-lowtag) - (inst cmp value unbound-marker-widetag) + (inst cmp (make-ea-for-object-slot object symbol-value-slot + other-pointer-lowtag) + unbound-marker-widetag) (inst jmp (if not-p :e :ne) target))) diff --git a/src/compiler/x86/cell.lisp b/src/compiler/x86/cell.lisp index f844f871b..6aaf63afd 100644 --- a/src/compiler/x86/cell.lisp +++ b/src/compiler/x86/cell.lisp @@ -206,10 +206,10 @@ (:args (object :scs (descriptor-reg))) (:conditional) (:info target not-p) - (:temporary (:sc descriptor-reg :from (:argument 0)) value) (:generator 9 - (loadw value object symbol-value-slot other-pointer-lowtag) - (inst cmp value unbound-marker-widetag) + (inst cmp (make-ea-for-object-slot object symbol-value-slot + other-pointer-lowtag) + unbound-marker-widetag) (inst jmp (if not-p :e :ne) target))) diff --git a/version.lisp-expr b/version.lisp-expr index 52bd08a27..6cc5ae619 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.12.24" +"0.9.12.25"