mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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
This commit is contained in:
parent
100ce98812
commit
69d357286d
7 changed files with 84 additions and 65 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue