guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 24/24: Remove load-typed-array, make-array opcodes


From: Andy Wingo
Subject: [Guile-commits] 24/24: Remove load-typed-array, make-array opcodes
Date: Tue, 10 Apr 2018 13:24:16 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit 59f1f5a6a70ee2077a40686aa9a10e3ba045a07f
Author: Andy Wingo <address@hidden>
Date:   Tue Apr 10 19:14:15 2018 +0200

    Remove load-typed-array, make-array opcodes
    
    * libguile/vm-engine.c (load-typed-array, make-array): Remove these
      apparently unused opcodes.  Yay!
---
 libguile/vm-engine.c | 54 ++--------------------------------------------------
 1 file changed, 2 insertions(+), 52 deletions(-)

diff --git a/libguile/vm-engine.c b/libguile/vm-engine.c
index 4801154..691be9a 100644
--- a/libguile/vm-engine.c
+++ b/libguile/vm-engine.c
@@ -2192,58 +2192,8 @@ VM_NAME (scm_i_thread *thread, struct scm_vm *vp,
   VM_DEFINE_OP (111, unused_111, NULL, NOP)
   VM_DEFINE_OP (112, unused_112, NULL, NOP)
   VM_DEFINE_OP (113, unused_113, NULL, NOP)
-    {
-      vm_error_bad_instruction (op);
-      abort (); /* never reached */
-    }
-
-  
-
-  /*
-   * Arrays, packed uniform arrays, and bytevectors.
-   */
-
-  /* load-typed-array dst:24 _:8 type:24 _:8 shape:24 offset:32 len:32
-   *
-   * Load the contiguous typed array located at OFFSET 32-bit words away
-   * from the instruction pointer, and store into DST.  LEN is a byte
-   * length.  OFFSET is signed.
-   */
-  VM_DEFINE_OP (114, load_typed_array, "load-typed-array", OP5 (X8_S24, 
X8_S24, X8_S24, N32, C32) | OP_DST)
-    {
-      scm_t_uint32 dst, type, shape;
-      scm_t_int32 offset;
-      scm_t_uint32 len;
-
-      UNPACK_24 (op, dst);
-      UNPACK_24 (ip[1], type);
-      UNPACK_24 (ip[2], shape);
-      offset = ip[3];
-      len = ip[4];
-      SYNC_IP ();
-      SP_SET (dst, scm_from_contiguous_typed_array (SP_REF (type),
-                                                       SP_REF (shape),
-                                                       ip + offset, len));
-      NEXT (5);
-    }
-
-  /* make-array dst:24 _:8 type:24 _:8 fill:24 _:8 bounds:24
-   *
-   * Make a new array with TYPE, FILL, and BOUNDS, storing it in DST.
-   */
-  VM_DEFINE_OP (115, make_array, "make-array", OP4 (X8_S24, X8_S24, X8_S24, 
X8_S24) | OP_DST)
-    {
-      scm_t_uint32 dst, type, fill, bounds;
-      UNPACK_24 (op, dst);
-      UNPACK_24 (ip[1], type);
-      UNPACK_24 (ip[2], fill);
-      UNPACK_24 (ip[3], bounds);
-      SYNC_IP ();
-      SP_SET (dst, scm_make_typed_array (SP_REF (type), SP_REF (fill),
-                                            SP_REF (bounds)));
-      NEXT (4);
-    }
-
+  VM_DEFINE_OP (114, unused_114, NULL, NOP)
+  VM_DEFINE_OP (115, unused_115, NULL, NOP)
   VM_DEFINE_OP (116, unused_116, NULL, NOP)
   VM_DEFINE_OP (117, unused_117, NULL, NOP)
   VM_DEFINE_OP (118, unused_118, NULL, NOP)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]