2005-09-02 18:46:02 +00:00
|
|
|
//===-- AlphaISelLowering.h - Alpha DAG Lowering Interface ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Andrew Lenharth and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the interfaces that Alpha uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
|
|
|
|
#define LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
|
|
|
|
|
2006-06-21 13:37:27 +00:00
|
|
|
#include "llvm/ADT/VectorExtras.h"
|
2005-09-02 18:46:02 +00:00
|
|
|
#include "llvm/Target/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "Alpha.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2005-10-20 00:28:31 +00:00
|
|
|
namespace AlphaISD {
|
|
|
|
enum NodeType {
|
|
|
|
// Start the numbering where the builting ops and target ops leave off.
|
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END+Alpha::INSTRUCTION_LIST_END,
|
2005-11-30 07:19:56 +00:00
|
|
|
//These corrospond to the identical Instruction
|
2007-01-24 21:09:16 +00:00
|
|
|
CVTQT_, CVTQS_, CVTTQ_,
|
2005-12-24 05:36:33 +00:00
|
|
|
|
|
|
|
/// GPRelHi/GPRelLo - These represent the high and low 16-bit
|
2005-12-24 08:29:32 +00:00
|
|
|
/// parts of a global address respectively.
|
|
|
|
GPRelHi, GPRelLo,
|
|
|
|
|
|
|
|
/// RetLit - Literal Relocation of a Global
|
|
|
|
RelLit,
|
2005-12-24 05:36:33 +00:00
|
|
|
|
2006-06-13 18:27:39 +00:00
|
|
|
/// GlobalRetAddr - used to restore the return address
|
|
|
|
GlobalRetAddr,
|
2006-01-27 23:39:00 +00:00
|
|
|
|
|
|
|
/// CALL - Normal call.
|
|
|
|
CALL,
|
2005-12-24 05:36:33 +00:00
|
|
|
|
2005-12-25 01:34:27 +00:00
|
|
|
/// DIVCALL - used for special library calls for div and rem
|
2006-06-12 18:09:24 +00:00
|
|
|
DivCall,
|
|
|
|
|
|
|
|
/// return flag operand
|
2006-10-31 16:49:55 +00:00
|
|
|
RET_FLAG,
|
|
|
|
|
|
|
|
/// CHAIN = COND_BRANCH CHAIN, OPC, (G|F)PRC, DESTBB [, INFLAG] - This
|
|
|
|
/// corresponds to the COND_BRANCH pseudo instruction.
|
|
|
|
/// *PRC is the input register to compare to zero,
|
|
|
|
/// OPC is the branch opcode to use (e.g. Alpha::BEQ),
|
|
|
|
/// DESTBB is the destination block to branch to, and INFLAG is
|
|
|
|
/// an optional input flag argument.
|
|
|
|
COND_BRANCH_I, COND_BRANCH_F
|
2005-12-25 01:34:27 +00:00
|
|
|
|
2005-10-20 00:28:31 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2005-09-02 18:46:02 +00:00
|
|
|
class AlphaTargetLowering : public TargetLowering {
|
|
|
|
int VarArgsOffset; // What is the offset to the first vaarg
|
|
|
|
int VarArgsBase; // What is the base FrameIndex
|
2005-11-30 07:19:56 +00:00
|
|
|
bool useITOF;
|
2005-09-02 18:46:02 +00:00
|
|
|
public:
|
|
|
|
AlphaTargetLowering(TargetMachine &TM);
|
2005-11-30 07:19:56 +00:00
|
|
|
|
|
|
|
/// LowerOperation - Provide custom lowering hooks for some operations.
|
|
|
|
///
|
|
|
|
virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
|
2006-01-28 03:14:31 +00:00
|
|
|
virtual SDOperand CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG);
|
2006-01-16 19:53:25 +00:00
|
|
|
|
|
|
|
//Friendly names for dumps
|
|
|
|
const char *getTargetNodeName(unsigned Opcode) const;
|
|
|
|
|
2005-09-02 18:46:02 +00:00
|
|
|
/// LowerCallTo - This hook lowers an abstract call to a function into an
|
|
|
|
/// actual call.
|
|
|
|
virtual std::pair<SDOperand, SDOperand>
|
2006-12-31 05:55:36 +00:00
|
|
|
LowerCallTo(SDOperand Chain, const Type *RetTy, bool RetTyIsSigned,
|
|
|
|
bool isVarArg, unsigned CC, bool isTailCall, SDOperand Callee,
|
|
|
|
ArgListTy &Args, SelectionDAG &DAG);
|
2005-09-02 18:46:02 +00:00
|
|
|
|
2007-03-25 02:14:49 +00:00
|
|
|
ConstraintType getConstraintType(const std::string &Constraint) const;
|
2006-06-21 13:37:27 +00:00
|
|
|
|
|
|
|
std::vector<unsigned>
|
|
|
|
getRegClassForInlineAsmConstraint(const std::string &Constraint,
|
|
|
|
MVT::ValueType VT) const;
|
|
|
|
|
2005-11-30 07:19:56 +00:00
|
|
|
bool hasITOF() { return useITOF; }
|
2005-09-02 18:46:02 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LLVM_TARGET_ALPHA_ALPHAISELLOWERING_H
|