blob: c42dbcef4baf77137d6f4a1c536e842cbf202ee0 [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 Lenharth4907d222005-10-20 00:28:31 +000030 };
31 }
32
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000033 class AlphaTargetLowering : public TargetLowering {
34 int VarArgsOffset; // What is the offset to the first vaarg
35 int VarArgsBase; // What is the base FrameIndex
36 unsigned GP; //GOT vreg
37 unsigned RA; //Return Address
Andrew Lenharth7f0db912005-11-30 07:19:56 +000038 bool useITOF;
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000039 public:
40 AlphaTargetLowering(TargetMachine &TM);
Andrew Lenharth7f0db912005-11-30 07:19:56 +000041
42 /// LowerOperation - Provide custom lowering hooks for some operations.
43 ///
44 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
45
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000046 /// LowerArguments - This hook must be implemented to indicate how we should
47 /// lower the arguments for the specified function, into the specified DAG.
48 virtual std::vector<SDOperand>
49 LowerArguments(Function &F, SelectionDAG &DAG);
50
51 /// LowerCallTo - This hook lowers an abstract call to a function into an
52 /// actual call.
53 virtual std::pair<SDOperand, SDOperand>
54 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
55 bool isTailCall, SDOperand Callee, ArgListTy &Args,
56 SelectionDAG &DAG);
57
58 virtual SDOperand LowerVAStart(SDOperand Chain, SDOperand VAListP,
59 Value *VAListV, SelectionDAG &DAG);
60 virtual SDOperand LowerVACopy(SDOperand Chain, SDOperand SrcP, Value *SrcV,
61 SDOperand DestP, Value *DestV,
62 SelectionDAG &DAG);
63 virtual std::pair<SDOperand,SDOperand>
64 LowerVAArg(SDOperand Chain, SDOperand VAListP, Value *VAListV,
65 const Type *ArgTy, SelectionDAG &DAG);
66
67 void restoreGP(MachineBasicBlock* BB);
68 void restoreRA(MachineBasicBlock* BB);
Andrew Lenharth756fbeb2005-10-22 22:06:58 +000069 unsigned getVRegGP() { return GP; }
70 unsigned getVRegRA() { return RA; }
Andrew Lenharth7f0db912005-11-30 07:19:56 +000071 bool hasITOF() { return useITOF; }
Andrew Lenharthaa38ce42005-09-02 18:46:02 +000072 };
73}
74
75#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H