blob: 0c1db073ee9afdbc77aa68d244b7c4a0b660c14a [file] [log] [blame]
Andrew Lenharthaa38ce42005-09-02 18:46:02 +00001//===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Andrew Lenharth and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that Alpha uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
16#define LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
17
Andrew Lenharth17255992006-06-21 13:37:27 +000018#include "llvm/ADT/VectorExtras.h"
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000019#include "llvm/Target/TargetLowering.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21#include "Alpha.h"
22
23namespace llvm {
24
Andrew Lenharth4907d222005-10-20 00:28:31 +000025 namespace AlphaISD {
26 enum NodeType {
27 // Start the numbering where the builting ops and target ops leave off.
28 FIRST_NUMBER = ISD::BUILTIN_OP_END+Alpha::INSTRUCTION_LIST_END,
Andrew Lenharth7f0db912005-11-30 07:19:56 +000029 //These corrospond to the identical Instruction
Andrew Lenharthcd804962005-11-30 16:10:29 +000030 ITOFT_, FTOIT_, CVTQT_, CVTQS_, CVTTQ_,
Andrew Lenharth4e629512005-12-24 05:36:33 +000031
32 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
Andrew Lenharthc687b482005-12-24 08:29:32 +000033 /// parts of a global address respectively.
34 GPRelHi, GPRelLo,
35
36 /// RetLit - Literal Relocation of a Global
37 RelLit,
Andrew Lenharth4e629512005-12-24 05:36:33 +000038
Andrew Lenharth0e4dd012006-06-13 18:27:39 +000039 /// GlobalRetAddr - used to restore the return address
40 GlobalRetAddr,
Chris Lattner2d90bd52006-01-27 23:39:00 +000041
42 /// CALL - Normal call.
43 CALL,
Andrew Lenharth4e629512005-12-24 05:36:33 +000044
Andrew Lenharth53d89702005-12-25 01:34:27 +000045 /// DIVCALL - used for special library calls for div and rem
Andrew Lenharthf2b806a2006-06-12 18:09:24 +000046 DivCall,
47
48 /// return flag operand
Andrew Lenharthf81173f2006-10-31 16:49:55 +000049 RET_FLAG,
50
51 /// CHAIN = COND_BRANCH CHAIN, OPC, (G|F)PRC, DESTBB [, INFLAG] - This
52 /// corresponds to the COND_BRANCH pseudo instruction.
53 /// *PRC is the input register to compare to zero,
54 /// OPC is the branch opcode to use (e.g. Alpha::BEQ),
55 /// DESTBB is the destination block to branch to, and INFLAG is
56 /// an optional input flag argument.
57 COND_BRANCH_I, COND_BRANCH_F
Andrew Lenharth53d89702005-12-25 01:34:27 +000058
Andrew Lenharth4907d222005-10-20 00:28:31 +000059 };
60 }
61
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000062 class AlphaTargetLowering : public TargetLowering {
63 int VarArgsOffset; // What is the offset to the first vaarg
64 int VarArgsBase; // What is the base FrameIndex
Andrew Lenharth7f0db912005-11-30 07:19:56 +000065 bool useITOF;
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000066 public:
67 AlphaTargetLowering(TargetMachine &TM);
Andrew Lenharth7f0db912005-11-30 07:19:56 +000068
69 /// LowerOperation - Provide custom lowering hooks for some operations.
70 ///
71 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +000072 virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG);
Andrew Lenharth84a06052006-01-16 19:53:25 +000073
74 //Friendly names for dumps
75 const char *getTargetNodeName(unsigned Opcode) const;
76
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000077 /// LowerCallTo - This hook lowers an abstract call to a function into an
78 /// actual call.
79 virtual std::pair<SDOperand, SDOperand>
80 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
81 bool isTailCall, SDOperand Callee, ArgListTy &Args,
82 SelectionDAG &DAG);
83
Andrew Lenharth17255992006-06-21 13:37:27 +000084 ConstraintType getConstraintType(char ConstraintLetter) const;
85
86 std::vector<unsigned>
87 getRegClassForInlineAsmConstraint(const std::string &Constraint,
88 MVT::ValueType VT) const;
89
Andrew Lenharth7f0db912005-11-30 07:19:56 +000090 bool hasITOF() { return useITOF; }
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000091 };
92}
93
94#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H