Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 1 | //===-- ARMISelLowering.h - ARM DAG Lowering Interface ----------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the interfaces that ARM uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef ARMISELLOWERING_H |
| 16 | #define ARMISELLOWERING_H |
| 17 | |
Rafael Espindola | f1ba1ca | 2007-11-05 23:12:20 +0000 | [diff] [blame] | 18 | #include "ARMSubtarget.h" |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetLowering.h" |
| 20 | #include "llvm/CodeGen/SelectionDAG.h" |
| 21 | #include <vector> |
| 22 | |
| 23 | namespace llvm { |
| 24 | class ARMConstantPoolValue; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 25 | |
| 26 | namespace ARMISD { |
| 27 | // ARM Specific DAG Nodes |
| 28 | enum NodeType { |
| 29 | // Start the numbering where the builting ops and target ops leave off. |
Dan Gohman | 0ba2bcf | 2008-09-23 18:42:32 +0000 | [diff] [blame] | 30 | FIRST_NUMBER = ISD::BUILTIN_OP_END, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 31 | |
| 32 | Wrapper, // Wrapper - A wrapper node for TargetConstantPool, |
| 33 | // TargetExternalSymbol, and TargetGlobalAddress. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 34 | WrapperJT, // WrapperJT - A wrapper node for TargetJumpTable |
| 35 | |
| 36 | CALL, // Function call. |
Evan Cheng | 277f074 | 2007-06-19 21:05:09 +0000 | [diff] [blame] | 37 | CALL_PRED, // Function call that's predicable. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 38 | CALL_NOLINK, // Function call with branch not branch-and-link. |
| 39 | tCALL, // Thumb function call. |
| 40 | BRCOND, // Conditional branch. |
| 41 | BR_JT, // Jumptable branch. |
| 42 | RET_FLAG, // Return with a flag operand. |
| 43 | |
| 44 | PIC_ADD, // Add with a PC operand and a PIC label. |
| 45 | |
| 46 | CMP, // ARM compare instructions. |
Lauro Ramos Venancio | 9996663 | 2007-04-02 01:30:03 +0000 | [diff] [blame] | 47 | CMPNZ, // ARM compare that uses only N or Z flags. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 48 | CMPFP, // ARM VFP compare instruction, sets FPSCR. |
| 49 | CMPFPw0, // ARM VFP compare against zero instruction, sets FPSCR. |
| 50 | FMSTAT, // ARM fmstat instruction. |
| 51 | CMOV, // ARM conditional move instructions. |
| 52 | CNEG, // ARM conditional negate instructions. |
| 53 | |
| 54 | FTOSI, // FP to sint within a FP register. |
| 55 | FTOUI, // FP to uint within a FP register. |
| 56 | SITOF, // sint to FP within a FP register. |
| 57 | UITOF, // uint to FP within a FP register. |
| 58 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 59 | SRL_FLAG, // V,Flag = srl_flag X -> srl X, 1 + save carry out. |
| 60 | SRA_FLAG, // V,Flag = sra_flag X -> sra X, 1 + save carry out. |
| 61 | RRX, // V = RRX X, Flag -> srl X, 1 + shift in carry flag. |
| 62 | |
| 63 | FMRRD, // double to two gprs. |
Lauro Ramos Venancio | 64f4fa5 | 2007-04-27 13:54:47 +0000 | [diff] [blame] | 64 | FMDRR, // Two gprs to double. |
| 65 | |
| 66 | THREAD_POINTER |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 67 | }; |
| 68 | } |
| 69 | |
| 70 | //===----------------------------------------------------------------------===// |
Dale Johannesen | 80dae19 | 2007-03-20 00:30:56 +0000 | [diff] [blame] | 71 | // ARMTargetLowering - ARM Implementation of the TargetLowering interface |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 72 | |
| 73 | class ARMTargetLowering : public TargetLowering { |
| 74 | int VarArgsFrameIndex; // FrameIndex for start of varargs area. |
| 75 | public: |
Dan Gohman | 61e729e | 2007-08-02 21:21:54 +0000 | [diff] [blame] | 76 | explicit ARMTargetLowering(TargetMachine &TM); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 77 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 78 | virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG); |
Duncan Sands | 1607f05 | 2008-12-01 11:39:25 +0000 | [diff] [blame^] | 79 | |
| 80 | /// ReplaceNodeResults - Replace the results of node with an illegal result |
| 81 | /// type with new values built out of custom code. |
| 82 | /// |
| 83 | virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue>&Results, |
| 84 | SelectionDAG &DAG); |
| 85 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 86 | virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const; |
Chris Lattner | f1b1c5e | 2007-11-27 22:36:16 +0000 | [diff] [blame] | 87 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 88 | virtual const char *getTargetNodeName(unsigned Opcode) const; |
| 89 | |
Evan Cheng | ff9b373 | 2008-01-30 18:18:23 +0000 | [diff] [blame] | 90 | virtual MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 91 | MachineBasicBlock *MBB); |
| 92 | |
Chris Lattner | c9addb7 | 2007-03-30 23:15:24 +0000 | [diff] [blame] | 93 | /// isLegalAddressingMode - Return true if the addressing mode represented |
| 94 | /// by AM is legal for this target, for a load/store of the specified type. |
| 95 | virtual bool isLegalAddressingMode(const AddrMode &AM, const Type *Ty)const; |
| 96 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 97 | /// getPreIndexedAddressParts - returns true by value, base pointer and |
| 98 | /// offset pointer and addressing mode by reference if the node's address |
| 99 | /// can be legally represented as pre-indexed load / store address. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 100 | virtual bool getPreIndexedAddressParts(SDNode *N, SDValue &Base, |
| 101 | SDValue &Offset, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 102 | ISD::MemIndexedMode &AM, |
| 103 | SelectionDAG &DAG); |
| 104 | |
| 105 | /// getPostIndexedAddressParts - returns true by value, base pointer and |
| 106 | /// offset pointer and addressing mode by reference if this node can be |
| 107 | /// combined with a load / store to form a post-indexed load / store. |
| 108 | virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 109 | SDValue &Base, SDValue &Offset, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 110 | ISD::MemIndexedMode &AM, |
| 111 | SelectionDAG &DAG); |
| 112 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 113 | virtual void computeMaskedBitsForTargetNode(const SDValue Op, |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 114 | const APInt &Mask, |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 115 | APInt &KnownZero, |
| 116 | APInt &KnownOne, |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 117 | const SelectionDAG &DAG, |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 118 | unsigned Depth) const; |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 119 | ConstraintType getConstraintType(const std::string &Constraint) const; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 120 | std::pair<unsigned, const TargetRegisterClass*> |
| 121 | getRegForInlineAsmConstraint(const std::string &Constraint, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 122 | MVT VT) const; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 123 | std::vector<unsigned> |
| 124 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 125 | MVT VT) const; |
Rafael Espindola | f1ba1ca | 2007-11-05 23:12:20 +0000 | [diff] [blame] | 126 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 127 | virtual const ARMSubtarget* getSubtarget() { |
| 128 | return Subtarget; |
Rafael Espindola | f1ba1ca | 2007-11-05 23:12:20 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 131 | private: |
| 132 | /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can |
| 133 | /// make the right decision when generating code for different targets. |
| 134 | const ARMSubtarget *Subtarget; |
| 135 | |
| 136 | /// ARMPCLabelIndex - Keep track the number of ARM PC labels created. |
| 137 | /// |
| 138 | unsigned ARMPCLabelIndex; |
| 139 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 140 | SDValue LowerCALL(SDValue Op, SelectionDAG &DAG); |
| 141 | SDValue LowerGlobalAddressDarwin(SDValue Op, SelectionDAG &DAG); |
| 142 | SDValue LowerGlobalAddressELF(SDValue Op, SelectionDAG &DAG); |
| 143 | SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG); |
| 144 | SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, |
Lauro Ramos Venancio | 64f4fa5 | 2007-04-27 13:54:47 +0000 | [diff] [blame] | 145 | SelectionDAG &DAG); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 146 | SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA, |
Evan Cheng | 4102eb5 | 2007-10-22 22:11:27 +0000 | [diff] [blame] | 147 | SelectionDAG &DAG); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 148 | SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG); |
| 149 | SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG); |
| 150 | SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG); |
Rafael Espindola | 7b73a5d | 2007-10-19 14:35:17 +0000 | [diff] [blame] | 151 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 152 | SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, |
| 153 | SDValue Chain, |
| 154 | SDValue Dst, SDValue Src, |
| 155 | SDValue Size, unsigned Align, |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 156 | bool AlwaysInline, |
Dan Gohman | 1f13c68 | 2008-04-28 17:15:20 +0000 | [diff] [blame] | 157 | const Value *DstSV, uint64_t DstSVOff, |
| 158 | const Value *SrcSV, uint64_t SrcSVOff); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 159 | }; |
| 160 | } |
| 161 | |
| 162 | #endif // ARMISELLOWERING_H |