public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier@gentoo.org>
To: gdb-patches@sourceware.org
Subject: [PATCH 2/6] sim: cr16: delete unused memory helpers [committed]
Date: Mon, 16 Nov 2015 03:19:00 -0000	[thread overview]
Message-ID: <1447643682-3812-2-git-send-email-vapier@gentoo.org> (raw)
In-Reply-To: <1447643682-3812-1-git-send-email-vapier@gentoo.org>

These aren't used anywhere and are just leftover from the d10v port.
Delete them so follow up commits are easier to follow.
---
 sim/cr16/ChangeLog  |  6 ++++++
 sim/cr16/cr16_sim.h |  5 -----
 sim/cr16/endian.c   | 15 ---------------
 3 files changed, 6 insertions(+), 20 deletions(-)

diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog
index 360b234..aaf44eb 100644
--- a/sim/cr16/ChangeLog
+++ b/sim/cr16/ChangeLog
@@ -1,5 +1,11 @@
 2015-11-15  Mike Frysinger  <vapier@gentoo.org>
 
+	* cr16_sim.h (get_longlong, write_longlong, WRITE_16, READ_64,
+	WRITE_64): Delete.
+	* endian.c (get_longlong, write_longlong): Likewise.
+
+2015-11-15  Mike Frysinger  <vapier@gentoo.org>
+
 	* Makefile.in (SIM_OBJS): Add sim-reg.o.
 	* interp.c (cr16_reg_fetch, cr16_reg_store): Add prototypes.
 	(sim_open): Call CPU_REG_FETCH/CPU_REG_STORE.
diff --git a/sim/cr16/cr16_sim.h b/sim/cr16/cr16_sim.h
index 5e0eabe..e9769ac 100644
--- a/sim/cr16/cr16_sim.h
+++ b/sim/cr16/cr16_sim.h
@@ -436,10 +436,8 @@ extern bfd_vma decode_pc (void);
 #else
 extern uint32 get_longword (uint8 *);
 extern uint16 get_word (uint8 *);
-extern int64 get_longlong (uint8 *);
 extern void write_word (uint8 *addr, uint16 data);
 extern void write_longword (uint8 *addr, uint32 data);
-extern void write_longlong (uint8 *addr, int64 data);
 #endif
 
 #define SW(addr,data)		write_word(dmem_addr(addr),data)
@@ -447,9 +445,6 @@ extern void write_longlong (uint8 *addr, int64 data);
 #define SLW(addr,data)  	write_longword(dmem_addr(addr),data)
 #define RLW(x)			get_longword(dmem_addr(x))
 #define READ_16(x)		get_word(x)
-#define WRITE_16(addr,data)	write_word(addr,data)
-#define READ_64(x)		get_longlong(x)
-#define WRITE_64(addr,data)	write_longlong(addr,data)
 
 #define JMP(x)			do { SET_PC (x); State.pc_changed = 1; } while (0)
 
diff --git a/sim/cr16/endian.c b/sim/cr16/endian.c
index 3cf2f22..03f79ac 100644
--- a/sim/cr16/endian.c
+++ b/sim/cr16/endian.c
@@ -39,14 +39,6 @@ get_longword (uint8 *x)
   return (((uint32) *(uint16 *)x) << 16) | ((uint32) *(uint16 *)(x+2));
 }
 
-ENDIAN_INLINE int64
-get_longlong (uint8 *x)
-{
-  uint32 top = get_longword (x);
-  uint32 bottom = get_longword (x+4);
-  return (((int64)top)<<32) | (int64)bottom;
-}
-
 ENDIAN_INLINE void
 write_word (uint8 *addr, uint16 data)
 {
@@ -61,10 +53,3 @@ write_longword (uint8 *addr, uint32 data)
   *(uint16 *)(addr + 2) = (uint16)(data >> 16);
   *(uint16 *)(addr) = (uint16)data;
 }
-
-ENDIAN_INLINE void
-write_longlong (uint8 *addr, int64 data)
-{
-  write_longword (addr+4, (uint32)(data >> 32));
-  write_longword (addr, (uint32)data);
-}
-- 
2.6.2

  parent reply	other threads:[~2015-11-16  3:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-16  3:19 [PATCH 1/6] sim: cr16: switch to common sim-reg [committed] Mike Frysinger
2015-11-16  3:18 ` [PATCH 4/6] sim: cr16: convert to common sim memory modules [committed] Mike Frysinger
2015-11-16  3:19 ` Mike Frysinger [this message]
2015-11-16  3:19 ` [PATCH 3/6] sim: cr16: push down sd/cpu vars [committed] Mike Frysinger
2015-11-16  3:25 ` [PATCH 6/6] sim: cr16: drop global callback state [committed] Mike Frysinger
2015-11-16  3:25 ` [PATCH 5/6] sim: cr16: convert to common sim engine logic [committed] Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1447643682-3812-2-git-send-email-vapier@gentoo.org \
    --to=vapier@gentoo.org \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).