summaryrefslogtreecommitdiff
path: root/exec-all.h
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-05-16 11:59:40 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-05-16 11:59:40 +0000
commit69d357286d0ab5a852e827dad1dc4b05917aaaa8 (patch)
treedbf5fae9642821155fdb93539c266e7c5dc12406 /exec-all.h
parent100ce98812c2624a7e7922055d80ebbd81e8caa9 (diff)
downloadqemu-69d357286d0ab5a852e827dad1dc4b05917aaaa8.tar.gz
More generic 64 bit multiplication support, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2821 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec-all.h')
-rw-r--r--exec-all.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/exec-all.h b/exec-all.h
index 863ca3bdb3..2b9376930f 100644
--- a/exec-all.h
+++ b/exec-all.h
@@ -78,6 +78,9 @@ void optimize_flags_init(void);
extern FILE *logfile;
extern int loglevel;
+void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b);
+void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
+
int gen_intermediate_code(CPUState *env, struct TranslationBlock *tb);
int gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb);
void dump_ops(const uint16_t *opc_buf, const uint32_t *opparam_buf);