blob: 2b760e4b5ef37dba0f877edb4b454f1a9f7ea836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 2003 Institut National de Recherche en Informatique et */
/* en Automatique. All rights reserved. This file is distributed */
/* under the terms of the GNU Library General Public License, with */
/* the special exception on linking described in file ../../LICENSE. */
/* */
/***********************************************************************/
/* $Id$ */
/* Code specific to the MIPS architecture. */
#define BngMult(resh,resl,arg1,arg2) \
asm("multu %2, %3 \n\t" \
"mflo %0 \n\t" \
"mfhi %1" \
: "=r" (resl), "=r" (resh) \
: "r" (arg1), "r" (arg2))
|