OSDN Git Service

2005-02-16 Dave Brolley <brolley@redhat.com>
authorbrolley <brolley>
Wed, 16 Feb 2005 21:52:32 +0000 (21:52 +0000)
committerbrolley <brolley>
Wed, 16 Feb 2005 21:52:32 +0000 (21:52 +0000)
        * utils.scm: Update copyright years.
        * utils-gen.scm (gen-ifld-extract): Pass base-length to -gen-ifld-extrac
t-base.
        * sid.scm (gen-ifetch): Handle the case where bitsize == 24.

cgen/ChangeLog
cgen/sid.scm
cgen/utils-gen.scm
cgen/utils.scm

index db50553..1d5b722 100644 (file)
@@ -1,5 +1,8 @@
 2005-02-16  Dave Brolley  <brolley@redhat.com>
 
+       * utils.scm: Update copyright years.
+       * utils-gen.scm (gen-ifld-extract): Pass base-length to -gen-ifld-extract-base.
+       * sid.scm (gen-ifetch): Handle the case where bitsize == 24.
        * operand.scm (-derived-operand-parse): Move logit message from level 1
        to level 2.
 
index c0ecef3..dee51b7 100644 (file)
@@ -1,5 +1,5 @@
 ; Simulator generator support routines.
-; Copyright (C) 2000-2004 Red Hat, Inc.
+; Copyright (C) 2000-2005 Red Hat, Inc.
 ; This file is part of CGEN.
 
 ; One goal of this file is to provide cover functions for all methods.
                 (case bitsize
                   ((8) "UQI")
                   ((16) "UHI")
+                  ((24) "USI")
                   ((32) "USI")
                   (else (error "bad bitsize argument to gen-ifetch" bitsize)))
                 " (pc, "
index 5a9ac46..9d4c4ff 100644 (file)
@@ -1,5 +1,5 @@
 ; Application independent utilities for C/C++ code generation.
-; Copyright (C) 2000, 2001 Red Hat, Inc.
+; Copyright (C) 2000, 2001, 2005 Red Hat, Inc.
 ; This file is part of CGEN.
 ; See file COPYING.CGEN for details.
 
        (-gen-ifld-extract-base f total-length base-value)
        (if (ifld-beyond-base? f base-length total-length)
           (-gen-ifld-extract-beyond f base-length total-length var-list)
-          (-gen-ifld-extract-base f (min base-length total-length)
-                                  base-value)))
+          (-gen-ifld-extract-base f base-length base-value)))
    ";"
    (if macro? " \\\n" "\n")
    )
index 6f80272..0cc037e 100644 (file)
@@ -1,5 +1,5 @@
 ; Generic Utilities.
-; Copyright (C) 2000-2004 Red Hat, Inc.
+; Copyright (C) 2000-2005 Red Hat, Inc.
 ; This file is part of CGEN.
 ; See file COPYING.CGEN for details.
 
   (cons "\
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright 1996-2004 Free Software Foundation, Inc.
+Copyright 1996-2005 Free Software Foundation, Inc.
 "
        "\
 This program is free software; you can redistribute it and/or modify
@@ -1276,7 +1276,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
   (cons "\
 THIS FILE IS MACHINE GENERATED WITH CGEN.
 
-Copyright (C) 2000-2004 Red Hat, Inc.
+Copyright (C) 2000-2005 Red Hat, Inc.
 "
        "\
 "))