From: Thiemo Seufer <ths@networkno.de>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4733] Delete obsolete file.
Date: Wed, 11 Jun 2008 13:24:48 +0000 [thread overview]
Message-ID: <E1K6QJk-00019a-Mi@cvs.savannah.gnu.org> (raw)
Revision: 4733
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4733
Author: ths
Date: 2008-06-11 13:24:47 +0000 (Wed, 11 Jun 2008)
Log Message:
-----------
Delete obsolete file.
Removed Paths:
-------------
trunk/target-mips/fop_template.c
Deleted: trunk/target-mips/fop_template.c
===================================================================
--- trunk/target-mips/fop_template.c 2008-06-11 13:02:57 UTC (rev 4732)
+++ trunk/target-mips/fop_template.c 2008-06-11 13:24:47 UTC (rev 4733)
@@ -1,104 +0,0 @@
-/*
- * MIPS emulation micro-operations templates for floating point reg
- * load & store for qemu.
- *
- * Copyright (c) 2006 Marius Groeger
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#if defined(FREG)
-
-#define OP_WLOAD_FREG(treg, tregname, FREG) \
- void glue(glue(op_load_fpr_,tregname), FREG) (void) \
- { \
- treg = env->fpu->fpr[FREG].w[FP_ENDIAN_IDX]; \
- FORCE_RET(); \
- }
-
-#define OP_WSTORE_FREG(treg, tregname, FREG) \
- void glue(glue(op_store_fpr_,tregname), FREG) (void) \
- { \
- env->fpu->fpr[FREG].w[FP_ENDIAN_IDX] = treg; \
- FORCE_RET(); \
- }
-
-/* WT0 = FREG.w: op_load_fpr_WT0_fprFREG */
-OP_WLOAD_FREG(WT0, WT0_fpr, FREG)
-/* FREG.w = WT0: op_store_fpr_WT0_fprFREG */
-OP_WSTORE_FREG(WT0, WT0_fpr, FREG)
-
-OP_WLOAD_FREG(WT1, WT1_fpr, FREG)
-OP_WSTORE_FREG(WT1, WT1_fpr, FREG)
-
-OP_WLOAD_FREG(WT2, WT2_fpr, FREG)
-OP_WSTORE_FREG(WT2, WT2_fpr, FREG)
-
-#define OP_DLOAD_FREG(treg, tregname, FREG) \
- void glue(glue(op_load_fpr_,tregname), FREG) (void) \
- { \
- if (env->hflags & MIPS_HFLAG_F64) \
- treg = env->fpu->fpr[FREG].d; \
- else \
- treg = (uint64_t)(env->fpu->fpr[FREG | 1].w[FP_ENDIAN_IDX]) << 32 | \
- env->fpu->fpr[FREG & ~1].w[FP_ENDIAN_IDX]; \
- FORCE_RET(); \
- }
-
-#define OP_DSTORE_FREG(treg, tregname, FREG) \
- void glue(glue(op_store_fpr_,tregname), FREG) (void) \
- { \
- if (env->hflags & MIPS_HFLAG_F64) \
- env->fpu->fpr[FREG].d = treg; \
- else { \
- env->fpu->fpr[FREG | 1].w[FP_ENDIAN_IDX] = treg >> 32; \
- env->fpu->fpr[FREG & ~1].w[FP_ENDIAN_IDX] = treg; \
- } \
- FORCE_RET(); \
- }
-
-OP_DLOAD_FREG(DT0, DT0_fpr, FREG)
-OP_DSTORE_FREG(DT0, DT0_fpr, FREG)
-
-OP_DLOAD_FREG(DT1, DT1_fpr, FREG)
-OP_DSTORE_FREG(DT1, DT1_fpr, FREG)
-
-OP_DLOAD_FREG(DT2, DT2_fpr, FREG)
-OP_DSTORE_FREG(DT2, DT2_fpr, FREG)
-
-#define OP_PSLOAD_FREG(treg, tregname, FREG) \
- void glue(glue(op_load_fpr_,tregname), FREG) (void) \
- { \
- treg = env->fpu->fpr[FREG].w[!FP_ENDIAN_IDX]; \
- FORCE_RET(); \
- }
-
-#define OP_PSSTORE_FREG(treg, tregname, FREG) \
- void glue(glue(op_store_fpr_,tregname), FREG) (void) \
- { \
- env->fpu->fpr[FREG].w[!FP_ENDIAN_IDX] = treg; \
- FORCE_RET(); \
- }
-
-OP_PSLOAD_FREG(WTH0, WTH0_fpr, FREG)
-OP_PSSTORE_FREG(WTH0, WTH0_fpr, FREG)
-
-OP_PSLOAD_FREG(WTH1, WTH1_fpr, FREG)
-OP_PSSTORE_FREG(WTH1, WTH1_fpr, FREG)
-
-OP_PSLOAD_FREG(WTH2, WTH2_fpr, FREG)
-OP_PSSTORE_FREG(WTH2, WTH2_fpr, FREG)
-
-#endif
reply other threads:[~2008-06-11 13:24 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=E1K6QJk-00019a-Mi@cvs.savannah.gnu.org \
--to=ths@networkno.de \
--cc=qemu-devel@nongnu.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 NNTP newsgroup(s).