1 //===-- MipsISelDAGToDAG.cpp - A dag to dag inst selector for Mips --------===//
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 MIPS target.
12 //===----------------------------------------------------------------------===//
14 #define DEBUG_TYPE "mips-isel"
16 #include "MipsISelLowering.h"
17 #include "MipsMachineFunction.h"
18 #include "MipsRegisterInfo.h"
19 #include "MipsSubtarget.h"
20 #include "MipsTargetMachine.h"
21 #include "llvm/GlobalValue.h"
22 #include "llvm/Instructions.h"
23 #include "llvm/Intrinsics.h"
24 #include "llvm/Support/CFG.h"
25 #include "llvm/Type.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineFunction.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/CodeGen/SelectionDAGISel.h"
32 #include "llvm/Target/TargetMachine.h"
33 #include "llvm/Support/Compiler.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/raw_ostream.h"
39 //===----------------------------------------------------------------------===//
40 // Instruction Selector Implementation
41 //===----------------------------------------------------------------------===//
43 //===----------------------------------------------------------------------===//
44 // MipsDAGToDAGISel - MIPS specific code to select MIPS machine
45 // instructions for SelectionDAG operations.
46 //===----------------------------------------------------------------------===//
49 class VISIBILITY_HIDDEN MipsDAGToDAGISel : public SelectionDAGISel {
51 /// TM - Keep a reference to MipsTargetMachine.
52 MipsTargetMachine &TM;
54 /// Subtarget - Keep a pointer to the MipsSubtarget around so that we can
55 /// make the right decision when generating code for different targets.
56 const MipsSubtarget &Subtarget;
59 explicit MipsDAGToDAGISel(MipsTargetMachine &tm) :
61 TM(tm), Subtarget(tm.getSubtarget<MipsSubtarget>()) {}
63 virtual void InstructionSelect();
66 virtual const char *getPassName() const {
67 return "MIPS DAG->DAG Pattern Instruction Selection";
72 // Include the pieces autogenerated from the target description.
73 #include "MipsGenDAGISel.inc"
75 /// getTargetMachine - Return a reference to the TargetMachine, casted
76 /// to the target-specific type.
77 const MipsTargetMachine &getTargetMachine() {
78 return static_cast<const MipsTargetMachine &>(TM);
81 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
82 /// to the target-specific type.
83 const MipsInstrInfo *getInstrInfo() {
84 return getTargetMachine().getInstrInfo();
87 SDNode *getGlobalBaseReg();
88 SDNode *Select(SDValue N);
91 bool SelectAddr(SDValue Op, SDValue N,
92 SDValue &Base, SDValue &Offset);
95 // getI32Imm - Return a target constant with the specified
96 // value, of type i32.
97 inline SDValue getI32Imm(unsigned Imm) {
98 return CurDAG->getTargetConstant(Imm, EVT::i32);
109 /// InstructionSelect - This callback is invoked by
110 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
111 void MipsDAGToDAGISel::
115 // Codegen the basic block.
117 DOUT << "===== Instruction selection begins:\n";
121 // Select target instructions for the DAG.
125 DOUT << "===== Instruction selection ends:\n";
128 CurDAG->RemoveDeadNodes();
131 /// getGlobalBaseReg - Output the instructions required to put the
132 /// GOT address into a register.
133 SDNode *MipsDAGToDAGISel::getGlobalBaseReg() {
134 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
135 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
138 /// ComplexPattern used on MipsInstrInfo
139 /// Used on Mips Load/Store instructions
140 bool MipsDAGToDAGISel::
141 SelectAddr(SDValue Op, SDValue Addr, SDValue &Offset, SDValue &Base)
143 // if Address is FI, get the TargetFrameIndex.
144 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
145 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), EVT::i32);
146 Offset = CurDAG->getTargetConstant(0, EVT::i32);
150 // on PIC code Load GA
151 if (TM.getRelocationModel() == Reloc::PIC_) {
152 if ((Addr.getOpcode() == ISD::TargetGlobalAddress) ||
153 (Addr.getOpcode() == ISD::TargetJumpTable)){
154 Base = CurDAG->getRegister(Mips::GP, EVT::i32);
159 if ((Addr.getOpcode() == ISD::TargetExternalSymbol ||
160 Addr.getOpcode() == ISD::TargetGlobalAddress))
164 // Operand is a result from an ADD.
165 if (Addr.getOpcode() == ISD::ADD) {
166 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
167 if (Predicate_immSExt16(CN)) {
169 // If the first operand is a FI, get the TargetFI Node
170 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>
171 (Addr.getOperand(0))) {
172 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), EVT::i32);
174 Base = Addr.getOperand(0);
177 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), EVT::i32);
184 Offset = CurDAG->getTargetConstant(0, EVT::i32);
188 /// Select instructions not customized! Used for
189 /// expanded, promoted and normal instructions
190 SDNode* MipsDAGToDAGISel::
193 SDNode *Node = N.getNode();
194 unsigned Opcode = Node->getOpcode();
195 DebugLoc dl = Node->getDebugLoc();
197 // Dump information about the Node being selected
199 DOUT << std::string(Indent, ' ') << "Selecting: ";
200 DEBUG(Node->dump(CurDAG));
205 // If we have a custom node, we already have selected!
206 if (Node->isMachineOpcode()) {
208 DOUT << std::string(Indent-2, ' ') << "== ";
209 DEBUG(Node->dump(CurDAG));
217 // Instruction Selection not handled by the auto-generated
218 // tablegen selection should be handled here.
226 SDValue InFlag = Node->getOperand(2), CmpLHS;
227 unsigned Opc = InFlag.getOpcode(); Opc=Opc;
228 assert(((Opc == ISD::ADDC || Opc == ISD::ADDE) ||
229 (Opc == ISD::SUBC || Opc == ISD::SUBE)) &&
230 "(ADD|SUB)E flag operand must come from (ADD|SUB)C/E insn");
233 if (Opcode == ISD::ADDE) {
234 CmpLHS = InFlag.getValue(0);
237 CmpLHS = InFlag.getOperand(0);
241 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
243 SDValue LHS = Node->getOperand(0);
244 SDValue RHS = Node->getOperand(1);
246 EVT VT = LHS.getValueType();
247 SDNode *Carry = CurDAG->getTargetNode(Mips::SLTu, dl, VT, Ops, 2);
248 SDNode *AddCarry = CurDAG->getTargetNode(Mips::ADDu, dl, VT,
249 SDValue(Carry,0), RHS);
251 return CurDAG->SelectNodeTo(N.getNode(), MOp, VT, EVT::Flag,
252 LHS, SDValue(AddCarry,0));
255 /// Mul/Div with two results
259 case ISD::UMUL_LOHI: {
260 SDValue Op1 = Node->getOperand(0);
261 SDValue Op2 = Node->getOperand(1);
264 if (Opcode == ISD::UMUL_LOHI || Opcode == ISD::SMUL_LOHI)
265 Op = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT);
267 Op = (Opcode == ISD::UDIVREM ? Mips::DIVu : Mips::DIV);
269 SDNode *Node = CurDAG->getTargetNode(Op, dl, EVT::Flag, Op1, Op2);
271 SDValue InFlag = SDValue(Node, 0);
272 SDNode *Lo = CurDAG->getTargetNode(Mips::MFLO, dl, EVT::i32,
274 InFlag = SDValue(Lo,1);
275 SDNode *Hi = CurDAG->getTargetNode(Mips::MFHI, dl, EVT::i32, InFlag);
277 if (!N.getValue(0).use_empty())
278 ReplaceUses(N.getValue(0), SDValue(Lo,0));
280 if (!N.getValue(1).use_empty())
281 ReplaceUses(N.getValue(1), SDValue(Hi,0));
290 SDValue MulOp1 = Node->getOperand(0);
291 SDValue MulOp2 = Node->getOperand(1);
293 unsigned MulOp = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT);
294 SDNode *MulNode = CurDAG->getTargetNode(MulOp, dl,
295 EVT::Flag, MulOp1, MulOp2);
297 SDValue InFlag = SDValue(MulNode, 0);
299 if (MulOp == ISD::MUL)
300 return CurDAG->getTargetNode(Mips::MFLO, dl, EVT::i32, InFlag);
302 return CurDAG->getTargetNode(Mips::MFHI, dl, EVT::i32, InFlag);
305 /// Div/Rem operations
310 SDValue Op1 = Node->getOperand(0);
311 SDValue Op2 = Node->getOperand(1);
314 if (Opcode == ISD::SDIV || Opcode == ISD::UDIV) {
315 Op = (Opcode == ISD::SDIV ? Mips::DIV : Mips::DIVu);
318 Op = (Opcode == ISD::SREM ? Mips::DIV : Mips::DIVu);
321 SDNode *Node = CurDAG->getTargetNode(Op, dl, EVT::Flag, Op1, Op2);
323 SDValue InFlag = SDValue(Node, 0);
324 return CurDAG->getTargetNode(MOp, dl, EVT::i32, InFlag);
327 // Get target GOT address.
328 case ISD::GLOBAL_OFFSET_TABLE:
329 return getGlobalBaseReg();
331 /// Handle direct and indirect calls when using PIC. On PIC, when
332 /// GOT is smaller than about 64k (small code) the GA target is
333 /// loaded with only one instruction. Otherwise GA's target must
334 /// be loaded with 3 instructions.
335 case MipsISD::JmpLink: {
336 if (TM.getRelocationModel() == Reloc::PIC_) {
337 //bool isCodeLarge = (TM.getCodeModel() == CodeModel::Large);
338 SDValue Chain = Node->getOperand(0);
339 SDValue Callee = Node->getOperand(1);
340 SDValue T9Reg = CurDAG->getRegister(Mips::T9, EVT::i32);
341 SDValue InFlag(0, 0);
343 if ( (isa<GlobalAddressSDNode>(Callee)) ||
344 (isa<ExternalSymbolSDNode>(Callee)) )
346 /// Direct call for global addresses and external symbols
347 SDValue GPReg = CurDAG->getRegister(Mips::GP, EVT::i32);
349 // Use load to get GOT target
350 SDValue Ops[] = { Callee, GPReg, Chain };
351 SDValue Load = SDValue(CurDAG->getTargetNode(Mips::LW, dl, EVT::i32,
352 EVT::Other, Ops, 3), 0);
353 Chain = Load.getValue(1);
355 // Call target must be on T9
356 Chain = CurDAG->getCopyToReg(Chain, dl, T9Reg, Load, InFlag);
359 Chain = CurDAG->getCopyToReg(Chain, dl, T9Reg, Callee, InFlag);
361 // Emit Jump and Link Register
362 SDNode *ResNode = CurDAG->getTargetNode(Mips::JALR, dl, EVT::Other,
363 EVT::Flag, T9Reg, Chain);
364 Chain = SDValue(ResNode, 0);
365 InFlag = SDValue(ResNode, 1);
366 ReplaceUses(SDValue(Node, 0), Chain);
367 ReplaceUses(SDValue(Node, 1), InFlag);
373 // Select the default instruction
374 SDNode *ResNode = SelectCode(N);
377 DOUT << std::string(Indent-2, ' ') << "=> ";
378 if (ResNode == NULL || ResNode == N.getNode())
379 DEBUG(N.getNode()->dump(CurDAG));
381 DEBUG(ResNode->dump(CurDAG));
389 /// createMipsISelDag - This pass converts a legalized DAG into a
390 /// MIPS-specific DAG, ready for instruction scheduling.
391 FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) {
392 return new MipsDAGToDAGISel(TM);