<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">DagCombine()<o:p></o:p></p>
<p class="MsoNormal">  case Intrinsic::arc_ACC64_NOGUARD_MPYWHFL: {<o:p></o:p></p>
<p class="MsoNormal">    SDValue mpy(DAG.getMachineNode(ARC::MPYWHFL_null_rr, SDLoc(N), MVT::Glue, N->getOperand(1), N->getOperand(2)), 0);<o:p></o:p></p>
<p class="MsoNormal">    SDValue hi = DAG.getCopyFromReg(mpy, SDLoc(N), ARC::ACCHI, MVT::i32);<o:p></o:p></p>
<p class="MsoNormal">    SDValue lo = DAG.getCopyFromReg(mpy, SDLoc(N), ARC::ACCLO, MVT::i32);<o:p></o:p></p>
<p class="MsoNormal">    return DAG.getNode(ISD::BUILD_PAIR,SDLoc(N), MVT::i64, hi, hig);<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Hi,  my architecture will perform a fixed point multiply (i32 x i32) and store the saturated result in a 64-bit accumulator.  MVT::i64 is not legal on my target.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">This code sequence attempts to transform an:<o:p></o:p></p>
<p class="MsoNormal"> i64 = MPY i32,i32<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">    0xbf4382c: i32,ch = load 0xbf1dc2c, 0xbf43688, 0xbf437a0<LD4[@a31](tbaa=<badref>)> [ORD=1]<o:p></o:p></p>
<p class="MsoNormal">    0xbf43944: i32,ch = load 0xbf1dc2c, 0xbf438b8, 0xbf437a0<LD4[@b31](tbaa=<badref>)> [ORD=2]<o:p></o:p></p>
<p class="MsoNormal">    0xbf439d0: i32 = TargetConstant<135><o:p></o:p></p>
<p class="MsoNormal">  0xbf43a5c: i64 = llvm.arc.ACC64.NOGUARD.MUL.SQ31.SQ31 0xbf439d0, 0xbf4382c, 0xbf43944 [ORD=3]<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">To:<o:p></o:p></p>
<p class="MsoNormal">  Ch = MPY i32,i32<o:p></o:p></p>
<p class="MsoNormal">  I32,ch = Copy Accumulator.hi<o:p></o:p></p>
<p class="MsoNormal">  I32,ch = Copy Accumulator.lo<o:p></o:p></p>
<p class="MsoNormal">  I64 = BUILD_PAIR lo,hi<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">        0xbf43f48: i32,ch = CopyFromReg 0xbf43e30, 0xbf43ebc [ORD=3]<o:p></o:p></p>
<p class="MsoNormal">        0xbf44060: i32,ch = CopyFromReg 0xbf43e30, 0xbf43fd4 [ORD=3]<o:p></o:p></p>
<p class="MsoNormal">      0xbf440ec: i64 = build_pair 0xbf43f48, 0xbf44060 [ORD=3]<o:p></o:p></p>
<p class="MsoNormal">  0xbf43e30: glue = MPYDF_null_rr 0xbf4382c, 0xbf43944 [ORD=3]<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">The problem here is the multiply is ordered wrong.  I think I have the glue specified correctly in the code sequence I show at the top.  What am I missing?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks in advance<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>