1 //==-- SystemZISelDAGToDAG.cpp - A dag to dag inst selector for SystemZ ---===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines an instruction selector for the SystemZ target.
12 //===----------------------------------------------------------------------===//
15 #include "SystemZISelLowering.h"
16 #include "SystemZTargetMachine.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/Intrinsics.h"
20 #include "llvm/CallingConv.h"
21 #include "llvm/Constants.h"
22 #include "llvm/CodeGen/MachineFrameInfo.h"
23 #include "llvm/CodeGen/MachineFunction.h"
24 #include "llvm/CodeGen/MachineInstrBuilder.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/CodeGen/SelectionDAG.h"
27 #include "llvm/CodeGen/SelectionDAGISel.h"
28 #include "llvm/Target/TargetLowering.h"
29 #include "llvm/Support/Compiler.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/raw_ostream.h"
34 static const unsigned subreg_even32
= 1;
35 static const unsigned subreg_odd32
= 2;
36 static const unsigned subreg_even
= 3;
37 static const unsigned subreg_odd
= 4;
40 /// SystemZRRIAddressMode - This corresponds to rriaddr, but uses SDValue's
41 /// instead of register numbers for the leaves of the matched tree.
42 struct SystemZRRIAddressMode
{
48 struct { // This is really a union, discriminated by BaseType!
57 SystemZRRIAddressMode(bool RI
= false)
58 : BaseType(RegBase
), IndexReg(), Disp(0), isRI(RI
) {
62 cerr
<< "SystemZRRIAddressMode " << this << '\n';
63 if (BaseType
== RegBase
) {
65 if (Base
.Reg
.getNode() != 0) Base
.Reg
.getNode()->dump();
69 cerr
<< " Base.FrameIndex " << Base
.FrameIndex
<< '\n';
73 if (IndexReg
.getNode() != 0) IndexReg
.getNode()->dump();
76 cerr
<< " Disp " << Disp
<< '\n';
81 /// SystemZDAGToDAGISel - SystemZ specific code to select SystemZ machine
82 /// instructions for SelectionDAG operations.
85 class SystemZDAGToDAGISel
: public SelectionDAGISel
{
86 SystemZTargetLowering
&Lowering
;
87 const SystemZSubtarget
&Subtarget
;
89 void getAddressOperandsRI(const SystemZRRIAddressMode
&AM
,
90 SDValue
&Base
, SDValue
&Disp
);
91 void getAddressOperands(const SystemZRRIAddressMode
&AM
,
92 SDValue
&Base
, SDValue
&Disp
,
96 SystemZDAGToDAGISel(SystemZTargetMachine
&TM
, CodeGenOpt::Level OptLevel
)
97 : SelectionDAGISel(TM
, OptLevel
),
98 Lowering(*TM
.getTargetLowering()),
99 Subtarget(*TM
.getSubtargetImpl()) { }
101 virtual void InstructionSelect();
103 virtual const char *getPassName() const {
104 return "SystemZ DAG->DAG Pattern Instruction Selection";
107 /// getI8Imm - Return a target constant with the specified value, of type
109 inline SDValue
getI8Imm(uint64_t Imm
) {
110 return CurDAG
->getTargetConstant(Imm
, MVT::i8
);
113 /// getI16Imm - Return a target constant with the specified value, of type
115 inline SDValue
getI16Imm(uint64_t Imm
) {
116 return CurDAG
->getTargetConstant(Imm
, MVT::i16
);
119 /// getI32Imm - Return a target constant with the specified value, of type
121 inline SDValue
getI32Imm(uint64_t Imm
) {
122 return CurDAG
->getTargetConstant(Imm
, MVT::i32
);
125 // Include the pieces autogenerated from the target description.
126 #include "SystemZGenDAGISel.inc"
129 bool SelectAddrRI12Only(SDValue Op
, SDValue
& Addr
,
130 SDValue
&Base
, SDValue
&Disp
);
131 bool SelectAddrRI12(SDValue Op
, SDValue
& Addr
,
132 SDValue
&Base
, SDValue
&Disp
,
133 bool is12BitOnly
= false);
134 bool SelectAddrRI(SDValue Op
, SDValue
& Addr
,
135 SDValue
&Base
, SDValue
&Disp
);
136 bool SelectAddrRRI12(SDValue Op
, SDValue Addr
,
137 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
);
138 bool SelectAddrRRI20(SDValue Op
, SDValue Addr
,
139 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
);
140 bool SelectLAAddr(SDValue Op
, SDValue Addr
,
141 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
);
143 SDNode
*Select(SDValue Op
);
145 bool TryFoldLoad(SDValue P
, SDValue N
,
146 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
);
148 bool MatchAddress(SDValue N
, SystemZRRIAddressMode
&AM
,
149 bool is12Bit
, unsigned Depth
= 0);
150 bool MatchAddressBase(SDValue N
, SystemZRRIAddressMode
&AM
);
151 bool MatchAddressRI(SDValue N
, SystemZRRIAddressMode
&AM
,
158 } // end anonymous namespace
160 /// createSystemZISelDag - This pass converts a legalized DAG into a
161 /// SystemZ-specific DAG, ready for instruction scheduling.
163 FunctionPass
*llvm::createSystemZISelDag(SystemZTargetMachine
&TM
,
164 CodeGenOpt::Level OptLevel
) {
165 return new SystemZDAGToDAGISel(TM
, OptLevel
);
168 /// isImmSExt20 - This method tests to see if the node is either a 32-bit
169 /// or 64-bit immediate, and if the value can be accurately represented as a
170 /// sign extension from a 20-bit value. If so, this returns true and the
172 static bool isImmSExt20(int64_t Val
, int64_t &Imm
) {
173 if (Val
>= -524288 && Val
<= 524287) {
180 /// isImmZExt12 - This method tests to see if the node is either a 32-bit
181 /// or 64-bit immediate, and if the value can be accurately represented as a
182 /// zero extension from a 12-bit value. If so, this returns true and the
184 static bool isImmZExt12(int64_t Val
, int64_t &Imm
) {
185 if (Val
>= 0 && Val
<= 0xFFF) {
192 /// MatchAddress - Add the specified node to the specified addressing mode,
193 /// returning true if it cannot be done. This just pattern matches for the
195 bool SystemZDAGToDAGISel::MatchAddress(SDValue N
, SystemZRRIAddressMode
&AM
,
196 bool is12Bit
, unsigned Depth
) {
197 DebugLoc dl
= N
.getDebugLoc();
198 DOUT
<< "MatchAddress: "; DEBUG(AM
.dump());
201 return MatchAddressBase(N
, AM
);
203 // FIXME: We can perform better here. If we have something like
204 // (shift (add A, imm), N), we can try to reassociate stuff and fold shift of
205 // imm into addressing mode.
206 switch (N
.getOpcode()) {
208 case ISD::Constant
: {
209 int64_t Val
= cast
<ConstantSDNode
>(N
)->getSExtValue();
211 bool Match
= (is12Bit
?
212 isImmZExt12(AM
.Disp
+ Val
, Imm
) :
213 isImmSExt20(AM
.Disp
+ Val
, Imm
));
221 case ISD::FrameIndex
:
222 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
&&
223 AM
.Base
.Reg
.getNode() == 0) {
224 AM
.BaseType
= SystemZRRIAddressMode::FrameIndexBase
;
225 AM
.Base
.FrameIndex
= cast
<FrameIndexSDNode
>(N
)->getIndex();
231 // Given A-B, if A can be completely folded into the address and
232 // the index field with the index field unused, use -B as the index.
233 // This is a win if a has multiple parts that can be folded into
234 // the address. Also, this saves a mov if the base register has
235 // other uses, since it avoids a two-address sub instruction, however
236 // it costs an additional mov if the index register has other uses.
238 // Test if the LHS of the sub can be folded.
239 SystemZRRIAddressMode Backup
= AM
;
240 if (MatchAddress(N
.getNode()->getOperand(0), AM
, is12Bit
, Depth
+1)) {
244 // Test if the index field is free for use.
245 if (AM
.IndexReg
.getNode() || AM
.isRI
) {
250 // If the base is a register with multiple uses, this transformation may
251 // save a mov. Otherwise it's probably better not to do it.
252 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
&&
253 (!AM
.Base
.Reg
.getNode() || AM
.Base
.Reg
.getNode()->hasOneUse())) {
258 // Ok, the transformation is legal and appears profitable. Go for it.
259 SDValue RHS
= N
.getNode()->getOperand(1);
260 SDValue Zero
= CurDAG
->getConstant(0, N
.getValueType());
261 SDValue Neg
= CurDAG
->getNode(ISD::SUB
, dl
, N
.getValueType(), Zero
, RHS
);
264 // Insert the new nodes into the topological ordering.
265 if (Zero
.getNode()->getNodeId() == -1 ||
266 Zero
.getNode()->getNodeId() > N
.getNode()->getNodeId()) {
267 CurDAG
->RepositionNode(N
.getNode(), Zero
.getNode());
268 Zero
.getNode()->setNodeId(N
.getNode()->getNodeId());
270 if (Neg
.getNode()->getNodeId() == -1 ||
271 Neg
.getNode()->getNodeId() > N
.getNode()->getNodeId()) {
272 CurDAG
->RepositionNode(N
.getNode(), Neg
.getNode());
273 Neg
.getNode()->setNodeId(N
.getNode()->getNodeId());
279 SystemZRRIAddressMode Backup
= AM
;
280 if (!MatchAddress(N
.getNode()->getOperand(0), AM
, is12Bit
, Depth
+1) &&
281 !MatchAddress(N
.getNode()->getOperand(1), AM
, is12Bit
, Depth
+1))
284 if (!MatchAddress(N
.getNode()->getOperand(1), AM
, is12Bit
, Depth
+1) &&
285 !MatchAddress(N
.getNode()->getOperand(0), AM
, is12Bit
, Depth
+1))
289 // If we couldn't fold both operands into the address at the same time,
290 // see if we can just put each operand into a register and fold at least
293 AM
.BaseType
== SystemZRRIAddressMode::RegBase
&&
294 !AM
.Base
.Reg
.getNode() && !AM
.IndexReg
.getNode()) {
295 AM
.Base
.Reg
= N
.getNode()->getOperand(0);
296 AM
.IndexReg
= N
.getNode()->getOperand(1);
303 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
304 if (ConstantSDNode
*CN
= dyn_cast
<ConstantSDNode
>(N
.getOperand(1))) {
305 SystemZRRIAddressMode Backup
= AM
;
306 int64_t Offset
= CN
->getSExtValue();
308 bool MatchOffset
= (is12Bit
?
309 isImmZExt12(AM
.Disp
+ Offset
, Imm
) :
310 isImmSExt20(AM
.Disp
+ Offset
, Imm
));
311 // The resultant disp must fit in 12 or 20-bits.
313 // LHS should be an addr mode.
314 !MatchAddress(N
.getOperand(0), AM
, is12Bit
, Depth
+1) &&
315 // Check to see if the LHS & C is zero.
316 CurDAG
->MaskedValueIsZero(N
.getOperand(0), CN
->getAPIntValue())) {
325 return MatchAddressBase(N
, AM
);
328 /// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
329 /// specified addressing mode without any further recursion.
330 bool SystemZDAGToDAGISel::MatchAddressBase(SDValue N
,
331 SystemZRRIAddressMode
&AM
) {
332 // Is the base register already occupied?
333 if (AM
.BaseType
!= SystemZRRIAddressMode::RegBase
|| AM
.Base
.Reg
.getNode()) {
334 // If so, check to see if the index register is set.
335 if (AM
.IndexReg
.getNode() == 0 && !AM
.isRI
) {
340 // Otherwise, we cannot select it.
344 // Default, generate it as a register.
345 AM
.BaseType
= SystemZRRIAddressMode::RegBase
;
350 void SystemZDAGToDAGISel::getAddressOperandsRI(const SystemZRRIAddressMode
&AM
,
351 SDValue
&Base
, SDValue
&Disp
) {
352 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
)
355 Base
= CurDAG
->getTargetFrameIndex(AM
.Base
.FrameIndex
, TLI
.getPointerTy());
356 Disp
= CurDAG
->getTargetConstant(AM
.Disp
, MVT::i64
);
359 void SystemZDAGToDAGISel::getAddressOperands(const SystemZRRIAddressMode
&AM
,
360 SDValue
&Base
, SDValue
&Disp
,
362 getAddressOperandsRI(AM
, Base
, Disp
);
366 /// Returns true if the address can be represented by a base register plus
367 /// an unsigned 12-bit displacement [r+imm].
368 bool SystemZDAGToDAGISel::SelectAddrRI12Only(SDValue Op
, SDValue
& Addr
,
369 SDValue
&Base
, SDValue
&Disp
) {
370 return SelectAddrRI12(Op
, Addr
, Base
, Disp
, /*is12BitOnly*/true);
373 bool SystemZDAGToDAGISel::SelectAddrRI12(SDValue Op
, SDValue
& Addr
,
374 SDValue
&Base
, SDValue
&Disp
,
376 SystemZRRIAddressMode
AM20(/*isRI*/true), AM12(/*isRI*/true);
379 if (!Addr
.hasOneUse()) {
380 unsigned Opcode
= Addr
.getOpcode();
381 if (Opcode
!= ISD::Constant
&& Opcode
!= ISD::FrameIndex
) {
382 // If we are able to fold N into addressing mode, then we'll allow it even
383 // if N has multiple uses. In general, addressing computation is used as
384 // addresses by all of its uses. But watch out for CopyToReg uses, that
385 // means the address computation is liveout. It will be computed by a LA
386 // so we want to avoid computing the address twice.
387 for (SDNode::use_iterator UI
= Addr
.getNode()->use_begin(),
388 UE
= Addr
.getNode()->use_end(); UI
!= UE
; ++UI
) {
389 if (UI
->getOpcode() == ISD::CopyToReg
) {
390 MatchAddressBase(Addr
, AM12
);
397 if (!Done
&& MatchAddress(Addr
, AM12
, /* is12Bit */ true))
400 // Check, whether we can match stuff using 20-bit displacements
401 if (!Done
&& !is12BitOnly
&&
402 !MatchAddress(Addr
, AM20
, /* is12Bit */ false))
403 if (AM12
.Disp
== 0 && AM20
.Disp
!= 0)
406 DOUT
<< "MatchAddress (final): "; DEBUG(AM12
.dump());
408 EVT VT
= Addr
.getValueType();
409 if (AM12
.BaseType
== SystemZRRIAddressMode::RegBase
) {
410 if (!AM12
.Base
.Reg
.getNode())
411 AM12
.Base
.Reg
= CurDAG
->getRegister(0, VT
);
414 assert(AM12
.IndexReg
.getNode() == 0 && "Invalid reg-imm address mode!");
416 getAddressOperandsRI(AM12
, Base
, Disp
);
421 /// Returns true if the address can be represented by a base register plus
422 /// a signed 20-bit displacement [r+imm].
423 bool SystemZDAGToDAGISel::SelectAddrRI(SDValue Op
, SDValue
& Addr
,
424 SDValue
&Base
, SDValue
&Disp
) {
425 SystemZRRIAddressMode
AM(/*isRI*/true);
428 if (!Addr
.hasOneUse()) {
429 unsigned Opcode
= Addr
.getOpcode();
430 if (Opcode
!= ISD::Constant
&& Opcode
!= ISD::FrameIndex
) {
431 // If we are able to fold N into addressing mode, then we'll allow it even
432 // if N has multiple uses. In general, addressing computation is used as
433 // addresses by all of its uses. But watch out for CopyToReg uses, that
434 // means the address computation is liveout. It will be computed by a LA
435 // so we want to avoid computing the address twice.
436 for (SDNode::use_iterator UI
= Addr
.getNode()->use_begin(),
437 UE
= Addr
.getNode()->use_end(); UI
!= UE
; ++UI
) {
438 if (UI
->getOpcode() == ISD::CopyToReg
) {
439 MatchAddressBase(Addr
, AM
);
446 if (!Done
&& MatchAddress(Addr
, AM
, /* is12Bit */ false))
449 DOUT
<< "MatchAddress (final): "; DEBUG(AM
.dump());
451 EVT VT
= Addr
.getValueType();
452 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
) {
453 if (!AM
.Base
.Reg
.getNode())
454 AM
.Base
.Reg
= CurDAG
->getRegister(0, VT
);
457 assert(AM
.IndexReg
.getNode() == 0 && "Invalid reg-imm address mode!");
459 getAddressOperandsRI(AM
, Base
, Disp
);
464 /// Returns true if the address can be represented by a base register plus
465 /// index register plus an unsigned 12-bit displacement [base + idx + imm].
466 bool SystemZDAGToDAGISel::SelectAddrRRI12(SDValue Op
, SDValue Addr
,
467 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
) {
468 SystemZRRIAddressMode AM20
, AM12
;
471 if (!Addr
.hasOneUse()) {
472 unsigned Opcode
= Addr
.getOpcode();
473 if (Opcode
!= ISD::Constant
&& Opcode
!= ISD::FrameIndex
) {
474 // If we are able to fold N into addressing mode, then we'll allow it even
475 // if N has multiple uses. In general, addressing computation is used as
476 // addresses by all of its uses. But watch out for CopyToReg uses, that
477 // means the address computation is liveout. It will be computed by a LA
478 // so we want to avoid computing the address twice.
479 for (SDNode::use_iterator UI
= Addr
.getNode()->use_begin(),
480 UE
= Addr
.getNode()->use_end(); UI
!= UE
; ++UI
) {
481 if (UI
->getOpcode() == ISD::CopyToReg
) {
482 MatchAddressBase(Addr
, AM12
);
489 if (!Done
&& MatchAddress(Addr
, AM12
, /* is12Bit */ true))
492 // Check, whether we can match stuff using 20-bit displacements
493 if (!Done
&& !MatchAddress(Addr
, AM20
, /* is12Bit */ false))
494 if (AM12
.Disp
== 0 && AM20
.Disp
!= 0)
497 DOUT
<< "MatchAddress (final): "; DEBUG(AM12
.dump());
499 EVT VT
= Addr
.getValueType();
500 if (AM12
.BaseType
== SystemZRRIAddressMode::RegBase
) {
501 if (!AM12
.Base
.Reg
.getNode())
502 AM12
.Base
.Reg
= CurDAG
->getRegister(0, VT
);
505 if (!AM12
.IndexReg
.getNode())
506 AM12
.IndexReg
= CurDAG
->getRegister(0, VT
);
508 getAddressOperands(AM12
, Base
, Disp
, Index
);
513 /// Returns true if the address can be represented by a base register plus
514 /// index register plus a signed 20-bit displacement [base + idx + imm].
515 bool SystemZDAGToDAGISel::SelectAddrRRI20(SDValue Op
, SDValue Addr
,
516 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
) {
517 SystemZRRIAddressMode AM
;
520 if (!Addr
.hasOneUse()) {
521 unsigned Opcode
= Addr
.getOpcode();
522 if (Opcode
!= ISD::Constant
&& Opcode
!= ISD::FrameIndex
) {
523 // If we are able to fold N into addressing mode, then we'll allow it even
524 // if N has multiple uses. In general, addressing computation is used as
525 // addresses by all of its uses. But watch out for CopyToReg uses, that
526 // means the address computation is liveout. It will be computed by a LA
527 // so we want to avoid computing the address twice.
528 for (SDNode::use_iterator UI
= Addr
.getNode()->use_begin(),
529 UE
= Addr
.getNode()->use_end(); UI
!= UE
; ++UI
) {
530 if (UI
->getOpcode() == ISD::CopyToReg
) {
531 MatchAddressBase(Addr
, AM
);
538 if (!Done
&& MatchAddress(Addr
, AM
, /* is12Bit */ false))
541 DOUT
<< "MatchAddress (final): "; DEBUG(AM
.dump());
543 EVT VT
= Addr
.getValueType();
544 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
) {
545 if (!AM
.Base
.Reg
.getNode())
546 AM
.Base
.Reg
= CurDAG
->getRegister(0, VT
);
549 if (!AM
.IndexReg
.getNode())
550 AM
.IndexReg
= CurDAG
->getRegister(0, VT
);
552 getAddressOperands(AM
, Base
, Disp
, Index
);
557 /// SelectLAAddr - it calls SelectAddr and determines if the maximal addressing
558 /// mode it matches can be cost effectively emitted as an LA/LAY instruction.
559 bool SystemZDAGToDAGISel::SelectLAAddr(SDValue Op
, SDValue Addr
,
560 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
) {
561 SystemZRRIAddressMode AM
;
563 if (MatchAddress(Addr
, AM
, false))
566 EVT VT
= Addr
.getValueType();
567 unsigned Complexity
= 0;
568 if (AM
.BaseType
== SystemZRRIAddressMode::RegBase
)
569 if (AM
.Base
.Reg
.getNode())
572 AM
.Base
.Reg
= CurDAG
->getRegister(0, VT
);
573 else if (AM
.BaseType
== SystemZRRIAddressMode::FrameIndexBase
)
576 if (AM
.IndexReg
.getNode())
579 AM
.IndexReg
= CurDAG
->getRegister(0, VT
);
581 if (AM
.Disp
&& (AM
.Base
.Reg
.getNode() || AM
.IndexReg
.getNode()))
584 if (Complexity
> 2) {
585 getAddressOperands(AM
, Base
, Disp
, Index
);
592 bool SystemZDAGToDAGISel::TryFoldLoad(SDValue P
, SDValue N
,
593 SDValue
&Base
, SDValue
&Disp
, SDValue
&Index
) {
594 if (ISD::isNON_EXTLoad(N
.getNode()) &&
596 IsLegalAndProfitableToFold(N
.getNode(), P
.getNode(), P
.getNode()))
597 return SelectAddrRRI20(P
, N
.getOperand(1), Base
, Disp
, Index
);
601 /// InstructionSelect - This callback is invoked by
602 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
603 void SystemZDAGToDAGISel::InstructionSelect() {
606 // Codegen the basic block.
608 DOUT
<< "===== Instruction selection begins:\n";
613 DOUT
<< "===== Instruction selection ends:\n";
616 CurDAG
->RemoveDeadNodes();
619 SDNode
*SystemZDAGToDAGISel::Select(SDValue Op
) {
620 SDNode
*Node
= Op
.getNode();
621 EVT NVT
= Node
->getValueType(0);
622 DebugLoc dl
= Op
.getDebugLoc();
623 unsigned Opcode
= Node
->getOpcode();
625 // Dump information about the Node being selected
627 DOUT
<< std::string(Indent
, ' ') << "Selecting: ";
628 DEBUG(Node
->dump(CurDAG
));
633 // If we have a custom node, we already have selected!
634 if (Node
->isMachineOpcode()) {
636 DOUT
<< std::string(Indent
-2, ' ') << "== ";
637 DEBUG(Node
->dump(CurDAG
));
641 return NULL
; // Already selected.
648 SDValue N0
= Node
->getOperand(0);
649 SDValue N1
= Node
->getOperand(1);
652 bool is32Bit
= false;
653 switch (NVT
.getSimpleVT().SimpleTy
) {
654 default: assert(0 && "Unsupported VT!");
656 Opc
= SystemZ::SDIVREM32r
; MOpc
= SystemZ::SDIVREM32m
;
661 Opc
= SystemZ::SDIVREM64r
; MOpc
= SystemZ::SDIVREM64m
;
666 SDValue Tmp0
, Tmp1
, Tmp2
;
667 bool foldedLoad
= TryFoldLoad(Op
, N1
, Tmp0
, Tmp1
, Tmp2
);
669 // Prepare the dividend
672 Dividend
= CurDAG
->getTargetNode(SystemZ::MOVSX64rr32
, dl
, MVT::i64
, N0
);
674 Dividend
= N0
.getNode();
676 // Insert prepared dividend into suitable 'subreg'
677 SDNode
*Tmp
= CurDAG
->getTargetNode(TargetInstrInfo::IMPLICIT_DEF
,
680 CurDAG
->getTargetNode(TargetInstrInfo::INSERT_SUBREG
, dl
, ResVT
,
681 SDValue(Tmp
, 0), SDValue(Dividend
, 0),
682 CurDAG
->getTargetConstant(subreg_odd
, MVT::i32
));
685 SDValue DivVal
= SDValue(Dividend
, 0);
687 SDValue Ops
[] = { DivVal
, Tmp0
, Tmp1
, Tmp2
, N1
.getOperand(0) };
688 Result
= CurDAG
->getTargetNode(MOpc
, dl
, ResVT
, Ops
, array_lengthof(Ops
));
690 ReplaceUses(N1
.getValue(1), SDValue(Result
, 0));
692 Result
= CurDAG
->getTargetNode(Opc
, dl
, ResVT
, SDValue(Dividend
, 0), N1
);
695 // Copy the division (odd subreg) result, if it is needed.
696 if (!Op
.getValue(0).use_empty()) {
697 unsigned SubRegIdx
= (is32Bit
? subreg_odd32
: subreg_odd
);
698 SDNode
*Div
= CurDAG
->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG
,
701 CurDAG
->getTargetConstant(SubRegIdx
,
704 ReplaceUses(Op
.getValue(0), SDValue(Div
, 0));
706 DOUT
<< std::string(Indent
-2, ' ') << "=> ";
707 DEBUG(Result
->dump(CurDAG
));
712 // Copy the remainder (even subreg) result, if it is needed.
713 if (!Op
.getValue(1).use_empty()) {
714 unsigned SubRegIdx
= (is32Bit
? subreg_even32
: subreg_even
);
715 SDNode
*Rem
= CurDAG
->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG
,
718 CurDAG
->getTargetConstant(SubRegIdx
,
721 ReplaceUses(Op
.getValue(1), SDValue(Rem
, 0));
723 DOUT
<< std::string(Indent
-2, ' ') << "=> ";
724 DEBUG(Result
->dump(CurDAG
));
736 unsigned Opc
, MOpc
, ClrOpc
;
737 SDValue N0
= Node
->getOperand(0);
738 SDValue N1
= Node
->getOperand(1);
741 bool is32Bit
= false;
742 switch (NVT
.getSimpleVT().SimpleTy
) {
743 default: assert(0 && "Unsupported VT!");
745 Opc
= SystemZ::UDIVREM32r
; MOpc
= SystemZ::UDIVREM32m
;
746 ClrOpc
= SystemZ::MOV64Pr0_even
;
751 Opc
= SystemZ::UDIVREM64r
; MOpc
= SystemZ::UDIVREM64m
;
752 ClrOpc
= SystemZ::MOV128r0_even
;
757 SDValue Tmp0
, Tmp1
, Tmp2
;
758 bool foldedLoad
= TryFoldLoad(Op
, N1
, Tmp0
, Tmp1
, Tmp2
);
760 // Prepare the dividend
761 SDNode
*Dividend
= N0
.getNode();
763 // Insert prepared dividend into suitable 'subreg'
764 SDNode
*Tmp
= CurDAG
->getTargetNode(TargetInstrInfo::IMPLICIT_DEF
,
767 unsigned SubRegIdx
= (is32Bit
? subreg_odd32
: subreg_odd
);
769 CurDAG
->getTargetNode(TargetInstrInfo::INSERT_SUBREG
, dl
, ResVT
,
770 SDValue(Tmp
, 0), SDValue(Dividend
, 0),
771 CurDAG
->getTargetConstant(SubRegIdx
, MVT::i32
));
774 // Zero out even subreg
775 Dividend
= CurDAG
->getTargetNode(ClrOpc
, dl
, ResVT
, SDValue(Dividend
, 0));
777 SDValue DivVal
= SDValue(Dividend
, 0);
780 SDValue Ops
[] = { DivVal
, Tmp0
, Tmp1
, Tmp2
, N1
.getOperand(0) };
781 Result
= CurDAG
->getTargetNode(MOpc
, dl
,ResVT
,
782 Ops
, array_lengthof(Ops
));
784 ReplaceUses(N1
.getValue(1), SDValue(Result
, 0));
786 Result
= CurDAG
->getTargetNode(Opc
, dl
, ResVT
, DivVal
, N1
);
789 // Copy the division (odd subreg) result, if it is needed.
790 if (!Op
.getValue(0).use_empty()) {
791 unsigned SubRegIdx
= (is32Bit
? subreg_odd32
: subreg_odd
);
792 SDNode
*Div
= CurDAG
->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG
,
795 CurDAG
->getTargetConstant(SubRegIdx
,
797 ReplaceUses(Op
.getValue(0), SDValue(Div
, 0));
799 DOUT
<< std::string(Indent
-2, ' ') << "=> ";
800 DEBUG(Result
->dump(CurDAG
));
805 // Copy the remainder (even subreg) result, if it is needed.
806 if (!Op
.getValue(1).use_empty()) {
807 unsigned SubRegIdx
= (is32Bit
? subreg_even32
: subreg_even
);
808 SDNode
*Rem
= CurDAG
->getTargetNode(TargetInstrInfo::EXTRACT_SUBREG
,
811 CurDAG
->getTargetConstant(SubRegIdx
,
813 ReplaceUses(Op
.getValue(1), SDValue(Rem
, 0));
815 DOUT
<< std::string(Indent
-2, ' ') << "=> ";
816 DEBUG(Result
->dump(CurDAG
));
829 // Select the default instruction
830 SDNode
*ResNode
= SelectCode(Op
);
833 DOUT
<< std::string(Indent
-2, ' ') << "=> ";
834 if (ResNode
== NULL
|| ResNode
== Op
.getNode())
835 DEBUG(Op
.getNode()->dump(CurDAG
));
837 DEBUG(ResNode
->dump(CurDAG
));