2005-01-07 07:46:03 +00:00
|
|
|
//===-- llvm/CodeGen/SelectionDAGISel.h - Common Base Class------*- C++ -*-===//
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2005-01-07 07:46:03 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 20:39:54 +00:00
|
|
|
//
|
2005-01-07 07:46:03 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the SelectionDAGISel class, which is used as the common
|
|
|
|
// base class for SelectionDAG-based instruction selectors.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SELECTIONDAG_ISEL_H
|
|
|
|
#define LLVM_CODEGEN_SELECTIONDAG_ISEL_H
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
2006-03-27 01:32:24 +00:00
|
|
|
#include "llvm/Constant.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
2006-04-22 18:53:45 +00:00
|
|
|
#include <set>
|
2005-01-07 07:46:03 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class SelectionDAG;
|
|
|
|
class SelectionDAGLowering;
|
2005-01-13 17:58:35 +00:00
|
|
|
class SDOperand;
|
2005-01-07 07:46:03 +00:00
|
|
|
class SSARegMap;
|
|
|
|
class MachineBasicBlock;
|
|
|
|
class MachineFunction;
|
|
|
|
class MachineInstr;
|
|
|
|
class TargetLowering;
|
|
|
|
class FunctionLoweringInfo;
|
2006-03-06 00:20:29 +00:00
|
|
|
class HazardRecognizer;
|
2005-01-07 07:46:03 +00:00
|
|
|
|
|
|
|
/// SelectionDAGISel - This is the common base class used for SelectionDAG-based
|
|
|
|
/// pattern-matching instruction selectors.
|
|
|
|
class SelectionDAGISel : public FunctionPass {
|
|
|
|
public:
|
|
|
|
TargetLowering &TLI;
|
|
|
|
SSARegMap *RegMap;
|
|
|
|
SelectionDAG *CurDAG;
|
|
|
|
MachineBasicBlock *BB;
|
|
|
|
|
2006-04-23 06:26:20 +00:00
|
|
|
SelectionDAGISel(TargetLowering &tli) : TLI(tli), JT(0,0,0,0) {}
|
2005-01-07 07:46:03 +00:00
|
|
|
|
2005-08-17 06:46:50 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
2005-01-07 07:46:03 +00:00
|
|
|
|
|
|
|
virtual bool runOnFunction(Function &Fn);
|
|
|
|
|
|
|
|
unsigned MakeReg(MVT::ValueType VT);
|
|
|
|
|
2005-05-13 07:23:03 +00:00
|
|
|
virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {}
|
2005-01-07 07:46:03 +00:00
|
|
|
virtual void InstructionSelectBasicBlock(SelectionDAG &SD) = 0;
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2006-02-24 02:12:52 +00:00
|
|
|
/// SelectInlineAsmMemoryOperand - Select the specified address as a target
|
|
|
|
/// addressing mode, according to the specified constraint code. If this does
|
|
|
|
/// not match or is not implemented, return true. The resultant operands
|
|
|
|
/// (which will appear in the machine instruction) should be added to the
|
|
|
|
/// OutOps vector.
|
|
|
|
virtual bool SelectInlineAsmMemoryOperand(const SDOperand &Op,
|
|
|
|
char ConstraintCode,
|
|
|
|
std::vector<SDOperand> &OutOps,
|
|
|
|
SelectionDAG &DAG) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-08 04:25:59 +00:00
|
|
|
/// CreateTargetHazardRecognizer - Return a newly allocated hazard recognizer
|
|
|
|
/// to use for this target when scheduling the DAG.
|
|
|
|
virtual HazardRecognizer *CreateTargetHazardRecognizer();
|
2006-03-06 00:20:29 +00:00
|
|
|
|
2006-03-27 01:32:24 +00:00
|
|
|
/// CaseBlock - This structure is used to communicate between SDLowering and
|
|
|
|
/// SDISel for the code generation of additional basic blocks needed by multi-
|
|
|
|
/// case switch statements.
|
|
|
|
struct CaseBlock {
|
|
|
|
CaseBlock(ISD::CondCode cc, Value *s, Constant *c, MachineBasicBlock *lhs,
|
|
|
|
MachineBasicBlock *rhs, MachineBasicBlock *me) :
|
|
|
|
CC(cc), SwitchV(s), CaseC(c), LHSBB(lhs), RHSBB(rhs), ThisBB(me) {}
|
|
|
|
// CC - the condition code to use for the case block's setcc node
|
|
|
|
ISD::CondCode CC;
|
|
|
|
// SwitchV - the value to be switched on, 'foo' in switch(foo)
|
|
|
|
Value *SwitchV;
|
|
|
|
// CaseC - the constant the setcc node will compare against SwitchV
|
|
|
|
Constant *CaseC;
|
|
|
|
// LHSBB - the block to branch to if the setcc is true
|
|
|
|
MachineBasicBlock *LHSBB;
|
|
|
|
// RHSBB - the block to branch to if the setcc is false
|
|
|
|
MachineBasicBlock *RHSBB;
|
|
|
|
// ThisBB - the blcok into which to emit the code for the setcc and branches
|
|
|
|
MachineBasicBlock *ThisBB;
|
|
|
|
};
|
2006-04-22 18:53:45 +00:00
|
|
|
struct JumpTable {
|
2006-04-23 06:26:20 +00:00
|
|
|
JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
|
|
|
|
MachineBasicBlock *D) : Reg(R), JTI(J), MBB(M), Default(D) {}
|
2006-04-22 18:53:45 +00:00
|
|
|
// Reg - the virtual register containing the index of the jump table entry
|
|
|
|
// to jump to.
|
|
|
|
unsigned Reg;
|
|
|
|
// JTI - the JumpTableIndex for this jump table in the function.
|
|
|
|
unsigned JTI;
|
|
|
|
// MBB - the MBB into which to emit the code for the indirect jump.
|
|
|
|
MachineBasicBlock *MBB;
|
2006-04-23 06:26:20 +00:00
|
|
|
// Default - the MBB of the default bb, which is a successor of the range
|
|
|
|
// check MBB. This is when updating PHI nodes in successors.
|
|
|
|
MachineBasicBlock *Default;
|
2006-04-22 18:53:45 +00:00
|
|
|
// SuccMBBs - a vector of unique successor MBBs used for updating CFG info
|
|
|
|
// and PHI nodes.
|
|
|
|
std::set<MachineBasicBlock*> SuccMBBs;
|
|
|
|
};
|
2006-03-27 01:32:24 +00:00
|
|
|
|
2005-08-18 18:44:33 +00:00
|
|
|
protected:
|
|
|
|
/// Pick a safe ordering and emit instructions for each target node in the
|
|
|
|
/// graph.
|
2006-01-21 02:32:06 +00:00
|
|
|
void ScheduleAndEmitDAG(SelectionDAG &DAG);
|
2005-08-18 18:44:33 +00:00
|
|
|
|
2006-02-24 02:12:52 +00:00
|
|
|
/// SelectInlineAsmMemoryOperands - Calls to this are automatically generated
|
|
|
|
/// by tblgen. Others should not call it.
|
|
|
|
void SelectInlineAsmMemoryOperands(std::vector<SDOperand> &Ops,
|
|
|
|
SelectionDAG &DAG);
|
|
|
|
|
2005-01-17 17:14:43 +00:00
|
|
|
private:
|
2005-01-13 17:58:35 +00:00
|
|
|
SDOperand CopyValueToVirtualRegister(SelectionDAGLowering &SDL,
|
|
|
|
Value *V, unsigned Reg);
|
2005-01-07 07:46:03 +00:00
|
|
|
void SelectBasicBlock(BasicBlock *BB, MachineFunction &MF,
|
|
|
|
FunctionLoweringInfo &FuncInfo);
|
2005-04-21 20:39:54 +00:00
|
|
|
|
2005-01-07 07:46:03 +00:00
|
|
|
void BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB,
|
|
|
|
std::vector<std::pair<MachineInstr*, unsigned> > &PHINodesToUpdate,
|
|
|
|
FunctionLoweringInfo &FuncInfo);
|
2006-03-27 01:32:24 +00:00
|
|
|
void CodeGenAndEmitDAG(SelectionDAG &DAG);
|
2005-01-17 17:14:43 +00:00
|
|
|
void LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
|
|
|
|
std::vector<SDOperand> &UnorderedChains);
|
2006-03-27 01:32:24 +00:00
|
|
|
|
|
|
|
/// SwitchCases - Vector of CaseBlock structures used to communicate
|
|
|
|
/// SwitchInst code generation information.
|
|
|
|
std::vector<CaseBlock> SwitchCases;
|
2006-04-22 18:53:45 +00:00
|
|
|
|
|
|
|
/// JT - Record which holds necessary information for emitting a jump table
|
|
|
|
JumpTable JT;
|
2005-01-07 07:46:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LLVM_CODEGEN_SELECTIONDAG_ISEL_H */
|