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"
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/// 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;
|
|
|
|
|
|
|
|
SelectionDAGISel(TargetLowering &tli) : TLI(tli) {}
|
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
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);
|
2005-01-17 17:14:43 +00:00
|
|
|
void LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL,
|
|
|
|
std::vector<SDOperand> &UnorderedChains);
|
2005-01-07 07:46:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LLVM_CODEGEN_SELECTIONDAG_ISEL_H */
|