blob: f7906d66055f1487036f71a7e975e29f8a4f79d2 [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
18#include "llvm/Target/TargetLowering.h"
19#include "llvm/CodeGen/SelectionDAG.h"
20#include "Alpha.h"
21
22namespace llvm {
23
Andrew Lenharth4907d222005-10-20 00:28:31 +000024 namespace AlphaISD {
25 enum NodeType {
26 // Start the numbering where the builting ops and target ops leave off.
27 FIRST_NUMBER = ISD::BUILTIN_OP_END+Alpha::INSTRUCTION_LIST_END,
Andrew Lenharth7f0db912005-11-30 07:19:56 +000028 //These corrospond to the identical Instruction
Andrew Lenharthcd804962005-11-30 16:10:29 +000029 ITOFT_, FTOIT_, CVTQT_, CVTQS_, CVTTQ_,
Andrew Lenharth4e629512005-12-24 05:36:33 +000030
31 /// GPRelHi/GPRelLo - These represent the high and low 16-bit
Andrew Lenharthc687b482005-12-24 08:29:32 +000032 /// parts of a global address respectively.
33 GPRelHi, GPRelLo,
34
35 /// RetLit - Literal Relocation of a Global
36 RelLit,
Andrew Lenharth4e629512005-12-24 05:36:33 +000037
Andrew Lenharth53d89702005-12-25 01:34:27 +000038 /// GlobalBaseReg - used to restore the GOT ptr
Andrew Lenharth4e629512005-12-24 05:36:33 +000039 GlobalBaseReg,
Andrew Lenharth0e4dd012006-06-13 18:27:39 +000040
41 /// GlobalRetAddr - used to restore the return address
42 GlobalRetAddr,
Chris Lattner2d90bd52006-01-27 23:39:00 +000043
44 /// CALL - Normal call.
45 CALL,
Andrew Lenharth4e629512005-12-24 05:36:33 +000046
Andrew Lenharth53d89702005-12-25 01:34:27 +000047 /// DIVCALL - used for special library calls for div and rem
Andrew Lenharthf2b806a2006-06-12 18:09:24 +000048 DivCall,
49
50 /// return flag operand
51 RET_FLAG
Andrew Lenharth53d89702005-12-25 01:34:27 +000052
Andrew Lenharth4907d222005-10-20 00:28:31 +000053 };
54 }
55
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000056 class AlphaTargetLowering : public TargetLowering {
57 int VarArgsOffset; // What is the offset to the first vaarg
58 int VarArgsBase; // What is the base FrameIndex
59 unsigned GP; //GOT vreg
60 unsigned RA; //Return Address
Andrew Lenharth7f0db912005-11-30 07:19:56 +000061 bool useITOF;
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000062 public:
63 AlphaTargetLowering(TargetMachine &TM);
Andrew Lenharth7f0db912005-11-30 07:19:56 +000064
65 /// LowerOperation - Provide custom lowering hooks for some operations.
66 ///
67 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +000068 virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG);
Andrew Lenharth84a06052006-01-16 19:53:25 +000069
70 //Friendly names for dumps
71 const char *getTargetNodeName(unsigned Opcode) const;
72
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000073 /// LowerCallTo - This hook lowers an abstract call to a function into an
74 /// actual call.
75 virtual std::pair<SDOperand, SDOperand>
76 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
77 bool isTailCall, SDOperand Callee, ArgListTy &Args,
78 SelectionDAG &DAG);
79
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000080 void restoreGP(MachineBasicBlock* BB);
81 void restoreRA(MachineBasicBlock* BB);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000082 unsigned getVRegGP() { return GP; }
83 unsigned getVRegRA() { return RA; }
Andrew Lenharth7f0db912005-11-30 07:19:56 +000084 bool hasITOF() { return useITOF; }
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000085 };
86}
87
88#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H