blob: 8408cc527abc9254c60d4e0fec1715e2dce5bdb2 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//===-- ARMISelLowering.h - ARM DAG Lowering Interface ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +00007//
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 Espindolaf1ba1ca2007-11-05 23:12:20 +000018#include "ARMSubtarget.h"
Evan Chenga8e29892007-01-19 07:51:42 +000019#include "llvm/Target/TargetLowering.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21#include <vector>
22
23namespace llvm {
24 class ARMConstantPoolValue;
Evan Chenga8e29892007-01-19 07:51:42 +000025
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 Gohman0ba2bcf2008-09-23 18:42:32 +000030 FIRST_NUMBER = ISD::BUILTIN_OP_END,
Evan Chenga8e29892007-01-19 07:51:42 +000031
32 Wrapper, // Wrapper - A wrapper node for TargetConstantPool,
33 // TargetExternalSymbol, and TargetGlobalAddress.
Evan Chenga8e29892007-01-19 07:51:42 +000034 WrapperJT, // WrapperJT - A wrapper node for TargetJumpTable
35
36 CALL, // Function call.
Evan Cheng277f0742007-06-19 21:05:09 +000037 CALL_PRED, // Function call that's predicable.
Evan Chenga8e29892007-01-19 07:51:42 +000038 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 Venancio99966632007-04-02 01:30:03 +000047 CMPNZ, // ARM compare that uses only N or Z flags.
Evan Chenga8e29892007-01-19 07:51:42 +000048 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 Chenga8e29892007-01-19 07:51:42 +000059 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 Venancio64f4fa52007-04-27 13:54:47 +000064 FMDRR, // Two gprs to double.
65
66 THREAD_POINTER
Evan Chenga8e29892007-01-19 07:51:42 +000067 };
68 }
69
70 //===----------------------------------------------------------------------===//
Dale Johannesen80dae192007-03-20 00:30:56 +000071 // ARMTargetLowering - ARM Implementation of the TargetLowering interface
Evan Chenga8e29892007-01-19 07:51:42 +000072
73 class ARMTargetLowering : public TargetLowering {
74 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
75 public:
Dan Gohman61e729e2007-08-02 21:21:54 +000076 explicit ARMTargetLowering(TargetMachine &TM);
Evan Chenga8e29892007-01-19 07:51:42 +000077
Dan Gohman475871a2008-07-27 21:46:04 +000078 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG);
Duncan Sands126d9072008-07-04 11:47:58 +000079 virtual SDNode *ReplaceNodeResults(SDNode *N, SelectionDAG &DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000080
Dan Gohman475871a2008-07-27 21:46:04 +000081 virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
Chris Lattnerf1b1c5e2007-11-27 22:36:16 +000082
Evan Chenga8e29892007-01-19 07:51:42 +000083 virtual const char *getTargetNodeName(unsigned Opcode) const;
84
Evan Chengff9b3732008-01-30 18:18:23 +000085 virtual MachineBasicBlock *EmitInstrWithCustomInserter(MachineInstr *MI,
Evan Chenga8e29892007-01-19 07:51:42 +000086 MachineBasicBlock *MBB);
87
Chris Lattnerc9addb72007-03-30 23:15:24 +000088 /// isLegalAddressingMode - Return true if the addressing mode represented
89 /// by AM is legal for this target, for a load/store of the specified type.
90 virtual bool isLegalAddressingMode(const AddrMode &AM, const Type *Ty)const;
91
Evan Chenga8e29892007-01-19 07:51:42 +000092 /// getPreIndexedAddressParts - returns true by value, base pointer and
93 /// offset pointer and addressing mode by reference if the node's address
94 /// can be legally represented as pre-indexed load / store address.
Dan Gohman475871a2008-07-27 21:46:04 +000095 virtual bool getPreIndexedAddressParts(SDNode *N, SDValue &Base,
96 SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +000097 ISD::MemIndexedMode &AM,
98 SelectionDAG &DAG);
99
100 /// getPostIndexedAddressParts - returns true by value, base pointer and
101 /// offset pointer and addressing mode by reference if this node can be
102 /// combined with a load / store to form a post-indexed load / store.
103 virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman475871a2008-07-27 21:46:04 +0000104 SDValue &Base, SDValue &Offset,
Evan Chenga8e29892007-01-19 07:51:42 +0000105 ISD::MemIndexedMode &AM,
106 SelectionDAG &DAG);
107
Dan Gohman475871a2008-07-27 21:46:04 +0000108 virtual void computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +0000109 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +0000110 APInt &KnownZero,
111 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +0000112 const SelectionDAG &DAG,
Evan Chenga8e29892007-01-19 07:51:42 +0000113 unsigned Depth) const;
Chris Lattner4234f572007-03-25 02:14:49 +0000114 ConstraintType getConstraintType(const std::string &Constraint) const;
Evan Chenga8e29892007-01-19 07:51:42 +0000115 std::pair<unsigned, const TargetRegisterClass*>
116 getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000117 MVT VT) const;
Evan Chenga8e29892007-01-19 07:51:42 +0000118 std::vector<unsigned>
119 getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +0000120 MVT VT) const;
Rafael Espindolaf1ba1ca2007-11-05 23:12:20 +0000121
Dan Gohman707e0182008-04-12 04:36:06 +0000122 virtual const ARMSubtarget* getSubtarget() {
123 return Subtarget;
Rafael Espindolaf1ba1ca2007-11-05 23:12:20 +0000124 }
125
Evan Chenga8e29892007-01-19 07:51:42 +0000126 private:
127 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
128 /// make the right decision when generating code for different targets.
129 const ARMSubtarget *Subtarget;
130
131 /// ARMPCLabelIndex - Keep track the number of ARM PC labels created.
132 ///
133 unsigned ARMPCLabelIndex;
134
Dan Gohman475871a2008-07-27 21:46:04 +0000135 SDValue LowerCALL(SDValue Op, SelectionDAG &DAG);
136 SDValue LowerGlobalAddressDarwin(SDValue Op, SelectionDAG &DAG);
137 SDValue LowerGlobalAddressELF(SDValue Op, SelectionDAG &DAG);
138 SDValue LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG);
139 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000140 SelectionDAG &DAG);
Dan Gohman475871a2008-07-27 21:46:04 +0000141 SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
Evan Cheng4102eb52007-10-22 22:11:27 +0000142 SelectionDAG &DAG);
Dan Gohman475871a2008-07-27 21:46:04 +0000143 SDValue LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG);
144 SDValue LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG);
145 SDValue LowerBR_JT(SDValue Op, SelectionDAG &DAG);
Rafael Espindola7b73a5d2007-10-19 14:35:17 +0000146
Dan Gohman475871a2008-07-27 21:46:04 +0000147 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG,
148 SDValue Chain,
149 SDValue Dst, SDValue Src,
150 SDValue Size, unsigned Align,
Dan Gohman707e0182008-04-12 04:36:06 +0000151 bool AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +0000152 const Value *DstSV, uint64_t DstSVOff,
153 const Value *SrcSV, uint64_t SrcSVOff);
Evan Chenga8e29892007-01-19 07:51:42 +0000154 };
155}
156
157#endif // ARMISELLOWERING_H