
140 CHAPTER 6 EXPRESSION: An ADL for Software Toolkit Generation
# Operations Mappings
( OP_MAPPING
(
(GENERIC (IADD dst src1 src2))
(TARGET (ADD dst src1 src2))
)
(
(GENERIC (IMUL dst src1 #2))
(TARGET (ADD dst src1 src1))
)
(
(GENERIC (IMUL dst src1 #2))
(TARGET (SHL dst src1 #1))
)
(
(GENERIC ((IMUL tmpdst src1 src2) (IADD dst tmpdst src3))
(TARGET (MAC dst src1 src2 src3))
)
)
FIGURE 6.7
Operation mappings.
Interface (GUI) to enable visual specification and analysis. The EXPRESSION
ADL is automatically generated from the GUI. A public release of this software
is available at http://www.ics.uci.edu/∼express. The remainder of this section
describes compiler/simulator ...