2006-01-21 02:32:06 +00:00
|
|
|
//===------- llvm/CodeGen/ScheduleDAG.h - Common Base Class------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-01-21 02:32:06 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ScheduleDAG class, which is used as the common
|
|
|
|
// base class for SelectionDAG-based instruction scheduler.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SCHEDULEDAG_H
|
|
|
|
#define LLVM_CODEGEN_SCHEDULEDAG_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
2007-02-03 01:34:13 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2007-08-28 20:32:58 +00:00
|
|
|
#include "llvm/ADT/GraphTraits.h"
|
2007-02-01 05:32:05 +00:00
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2006-05-11 23:55:42 +00:00
|
|
|
|
2006-01-21 02:32:06 +00:00
|
|
|
namespace llvm {
|
2006-01-22 20:36:43 +00:00
|
|
|
struct InstrStage;
|
2007-09-19 01:38:40 +00:00
|
|
|
struct SUnit;
|
2006-01-21 02:32:06 +00:00
|
|
|
class MachineConstantPool;
|
2008-01-30 19:35:32 +00:00
|
|
|
class MachineFunction;
|
2007-01-26 21:22:28 +00:00
|
|
|
class MachineModuleInfo;
|
2007-12-31 04:13:23 +00:00
|
|
|
class MachineRegisterInfo;
|
2006-01-21 02:32:06 +00:00
|
|
|
class MachineInstr;
|
2008-02-10 18:45:23 +00:00
|
|
|
class TargetRegisterInfo;
|
2006-01-21 02:32:06 +00:00
|
|
|
class SelectionDAG;
|
2006-08-01 18:29:48 +00:00
|
|
|
class SelectionDAGISel;
|
2006-01-21 02:32:06 +00:00
|
|
|
class TargetInstrInfo;
|
2008-01-07 07:27:27 +00:00
|
|
|
class TargetInstrDesc;
|
2006-01-21 02:32:06 +00:00
|
|
|
class TargetMachine;
|
2007-09-26 21:38:03 +00:00
|
|
|
class TargetRegisterClass;
|
2006-01-21 02:32:06 +00:00
|
|
|
|
2006-03-06 00:20:29 +00:00
|
|
|
/// HazardRecognizer - This determines whether or not an instruction can be
|
|
|
|
/// issued this cycle, and whether or not a noop needs to be inserted to handle
|
|
|
|
/// the hazard.
|
|
|
|
class HazardRecognizer {
|
|
|
|
public:
|
|
|
|
virtual ~HazardRecognizer();
|
|
|
|
|
|
|
|
enum HazardType {
|
|
|
|
NoHazard, // This instruction can be emitted at this cycle.
|
|
|
|
Hazard, // This instruction can't be emitted at this cycle.
|
2006-05-24 17:04:05 +00:00
|
|
|
NoopHazard // This instruction can't be emitted, and needs noops.
|
2006-03-06 00:20:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// getHazardType - Return the hazard type of emitting this node. There are
|
|
|
|
/// three possible results. Either:
|
|
|
|
/// * NoHazard: it is legal to issue this instruction on this cycle.
|
|
|
|
/// * Hazard: issuing this instruction would stall the machine. If some
|
|
|
|
/// other instruction is available, issue it first.
|
|
|
|
/// * NoopHazard: issuing this instruction would break the program. If
|
|
|
|
/// some other instruction can be issued, do so, otherwise issue a noop.
|
|
|
|
virtual HazardType getHazardType(SDNode *Node) {
|
|
|
|
return NoHazard;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitInstruction - This callback is invoked when an instruction is
|
|
|
|
/// emitted, to advance the hazard state.
|
|
|
|
virtual void EmitInstruction(SDNode *Node) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/// AdvanceCycle - This callback is invoked when no instructions can be
|
|
|
|
/// issued on this cycle without a hazard. This should increment the
|
|
|
|
/// internal state of the hazard recognizer so that previously "Hazard"
|
|
|
|
/// instructions will now not be hazards.
|
|
|
|
virtual void AdvanceCycle() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/// EmitNoop - This callback is invoked when a noop was added to the
|
|
|
|
/// instruction stream.
|
|
|
|
virtual void EmitNoop() {
|
|
|
|
}
|
2006-01-23 07:01:07 +00:00
|
|
|
};
|
2007-09-19 01:38:40 +00:00
|
|
|
|
|
|
|
/// SDep - Scheduling dependency. It keeps track of dependent nodes,
|
|
|
|
/// cost of the depdenency, etc.
|
|
|
|
struct SDep {
|
2007-09-25 01:54:36 +00:00
|
|
|
SUnit *Dep; // Dependent - either a predecessor or a successor.
|
|
|
|
unsigned Reg; // If non-zero, this dep is a phy register dependency.
|
|
|
|
int Cost; // Cost of the dependency.
|
|
|
|
bool isCtrl : 1; // True iff it's a control dependency.
|
|
|
|
bool isSpecial : 1; // True iff it's a special ctrl dep added during sched.
|
|
|
|
SDep(SUnit *d, unsigned r, int t, bool c, bool s)
|
|
|
|
: Dep(d), Reg(r), Cost(t), isCtrl(c), isSpecial(s) {}
|
2007-09-19 01:38:40 +00:00
|
|
|
};
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// SUnit - Scheduling unit. It's an wrapper around either a single SDNode or
|
|
|
|
/// a group of nodes flagged together.
|
|
|
|
struct SUnit {
|
|
|
|
SDNode *Node; // Representative node.
|
2006-08-16 22:12:48 +00:00
|
|
|
SmallVector<SDNode*,4> FlaggedNodes;// All nodes flagged to Node.
|
2007-09-25 01:54:36 +00:00
|
|
|
unsigned InstanceNo; // Instance#. One SDNode can be multiple
|
|
|
|
// SUnit due to cloning.
|
2006-05-11 23:55:42 +00:00
|
|
|
|
|
|
|
// Preds/Succs - The SUnits before/after us in the graph. The boolean value
|
|
|
|
// is true if the edge is a token chain edge, false if it is a value edge.
|
2007-09-19 01:38:40 +00:00
|
|
|
SmallVector<SDep, 4> Preds; // All sunit predecessors.
|
|
|
|
SmallVector<SDep, 4> Succs; // All sunit successors.
|
|
|
|
|
|
|
|
typedef SmallVector<SDep, 4>::iterator pred_iterator;
|
|
|
|
typedef SmallVector<SDep, 4>::iterator succ_iterator;
|
|
|
|
typedef SmallVector<SDep, 4>::const_iterator const_pred_iterator;
|
|
|
|
typedef SmallVector<SDep, 4>::const_iterator const_succ_iterator;
|
2006-08-17 00:09:56 +00:00
|
|
|
|
2007-09-25 01:54:36 +00:00
|
|
|
unsigned NodeNum; // Entry # of node in the node vector.
|
|
|
|
unsigned short Latency; // Node latency.
|
2006-05-11 23:55:42 +00:00
|
|
|
short NumPreds; // # of preds.
|
|
|
|
short NumSuccs; // # of sucss.
|
|
|
|
short NumPredsLeft; // # of preds not scheduled.
|
|
|
|
short NumSuccsLeft; // # of succs not scheduled.
|
|
|
|
bool isTwoAddress : 1; // Is a two-address instruction.
|
2006-05-12 01:58:24 +00:00
|
|
|
bool isCommutable : 1; // Is a commutable instruction.
|
2007-10-05 01:39:18 +00:00
|
|
|
bool hasPhysRegDefs : 1; // Has physreg defs that are being used.
|
2006-05-11 23:55:42 +00:00
|
|
|
bool isPending : 1; // True once pending.
|
|
|
|
bool isAvailable : 1; // True once available.
|
|
|
|
bool isScheduled : 1; // True once scheduled.
|
|
|
|
unsigned CycleBound; // Upper/lower cycle to be scheduled at.
|
|
|
|
unsigned Cycle; // Once scheduled, the cycle of the op.
|
|
|
|
unsigned Depth; // Node depth;
|
|
|
|
unsigned Height; // Node height;
|
2007-09-26 21:38:03 +00:00
|
|
|
const TargetRegisterClass *CopyDstRC; // Is a special copy node if not null.
|
|
|
|
const TargetRegisterClass *CopySrcRC;
|
2006-05-11 23:55:42 +00:00
|
|
|
|
|
|
|
SUnit(SDNode *node, unsigned nodenum)
|
2007-09-25 01:54:36 +00:00
|
|
|
: Node(node), InstanceNo(0), NodeNum(nodenum), Latency(0),
|
|
|
|
NumPreds(0), NumSuccs(0), NumPredsLeft(0), NumSuccsLeft(0),
|
2007-09-28 22:32:30 +00:00
|
|
|
isTwoAddress(false), isCommutable(false), hasPhysRegDefs(false),
|
2006-05-11 23:55:42 +00:00
|
|
|
isPending(false), isAvailable(false), isScheduled(false),
|
2007-09-26 21:38:03 +00:00
|
|
|
CycleBound(0), Cycle(0), Depth(0), Height(0),
|
|
|
|
CopyDstRC(NULL), CopySrcRC(NULL) {}
|
2007-09-25 01:54:36 +00:00
|
|
|
|
2006-08-17 00:09:56 +00:00
|
|
|
/// addPred - This adds the specified node as a pred of the current node if
|
|
|
|
/// not already. This returns true if this is a new pred.
|
2007-09-25 01:54:36 +00:00
|
|
|
bool addPred(SUnit *N, bool isCtrl, bool isSpecial,
|
|
|
|
unsigned PhyReg = 0, int Cost = 1) {
|
2006-08-17 00:09:56 +00:00
|
|
|
for (unsigned i = 0, e = Preds.size(); i != e; ++i)
|
2007-09-25 01:54:36 +00:00
|
|
|
if (Preds[i].Dep == N &&
|
|
|
|
Preds[i].isCtrl == isCtrl && Preds[i].isSpecial == isSpecial)
|
2006-08-17 00:09:56 +00:00
|
|
|
return false;
|
2007-09-25 01:54:36 +00:00
|
|
|
Preds.push_back(SDep(N, PhyReg, Cost, isCtrl, isSpecial));
|
|
|
|
N->Succs.push_back(SDep(this, PhyReg, Cost, isCtrl, isSpecial));
|
2007-09-28 19:24:24 +00:00
|
|
|
if (!isCtrl) {
|
2007-09-25 01:54:36 +00:00
|
|
|
++NumPreds;
|
|
|
|
++N->NumSuccs;
|
|
|
|
}
|
2007-09-28 19:24:24 +00:00
|
|
|
if (!N->isScheduled)
|
|
|
|
++NumPredsLeft;
|
|
|
|
if (!isScheduled)
|
|
|
|
++N->NumSuccsLeft;
|
2006-08-17 00:09:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-09-25 01:54:36 +00:00
|
|
|
bool removePred(SUnit *N, bool isCtrl, bool isSpecial) {
|
|
|
|
for (SmallVector<SDep, 4>::iterator I = Preds.begin(), E = Preds.end();
|
|
|
|
I != E; ++I)
|
|
|
|
if (I->Dep == N && I->isCtrl == isCtrl && I->isSpecial == isSpecial) {
|
|
|
|
bool FoundSucc = false;
|
|
|
|
for (SmallVector<SDep, 4>::iterator II = N->Succs.begin(),
|
|
|
|
EE = N->Succs.end(); II != EE; ++II)
|
|
|
|
if (II->Dep == this &&
|
|
|
|
II->isCtrl == isCtrl && II->isSpecial == isSpecial) {
|
|
|
|
FoundSucc = true;
|
|
|
|
N->Succs.erase(II);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert(FoundSucc && "Mismatching preds / succs lists!");
|
|
|
|
Preds.erase(I);
|
2007-09-28 19:24:24 +00:00
|
|
|
if (!isCtrl) {
|
2007-09-25 01:54:36 +00:00
|
|
|
--NumPreds;
|
|
|
|
--N->NumSuccs;
|
|
|
|
}
|
2007-09-28 19:24:24 +00:00
|
|
|
if (!N->isScheduled)
|
|
|
|
--NumPredsLeft;
|
|
|
|
if (!isScheduled)
|
|
|
|
--N->NumSuccsLeft;
|
2007-09-25 01:54:36 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPred(SUnit *N) {
|
|
|
|
for (unsigned i = 0, e = Preds.size(); i != e; ++i)
|
|
|
|
if (Preds[i].Dep == N)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isSucc(SUnit *N) {
|
2006-08-17 00:09:56 +00:00
|
|
|
for (unsigned i = 0, e = Succs.size(); i != e; ++i)
|
2007-09-25 01:54:36 +00:00
|
|
|
if (Succs[i].Dep == N)
|
|
|
|
return true;
|
|
|
|
return false;
|
2006-08-17 00:09:56 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
void dump(const SelectionDAG *G) const;
|
|
|
|
void dumpAll(const SelectionDAG *G) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
/// SchedulingPriorityQueue - This interface is used to plug different
|
|
|
|
/// priorities computation algorithms into the list scheduler. It implements
|
|
|
|
/// the interface of a standard priority queue, where nodes are inserted in
|
|
|
|
/// arbitrary order and returned in priority order. The computation of the
|
|
|
|
/// priority and the representation of the queue are totally up to the
|
|
|
|
/// implementation to decide.
|
|
|
|
///
|
|
|
|
class SchedulingPriorityQueue {
|
|
|
|
public:
|
|
|
|
virtual ~SchedulingPriorityQueue() {}
|
|
|
|
|
2007-09-25 01:54:36 +00:00
|
|
|
virtual void initNodes(DenseMap<SDNode*, std::vector<SUnit*> > &SUMap,
|
2006-11-04 09:42:53 +00:00
|
|
|
std::vector<SUnit> &SUnits) = 0;
|
2007-09-25 01:54:36 +00:00
|
|
|
virtual void addNode(const SUnit *SU) = 0;
|
|
|
|
virtual void updateNode(const SUnit *SU) = 0;
|
2006-05-11 23:55:42 +00:00
|
|
|
virtual void releaseState() = 0;
|
2007-09-25 01:54:36 +00:00
|
|
|
|
|
|
|
virtual unsigned size() const = 0;
|
2006-05-11 23:55:42 +00:00
|
|
|
virtual bool empty() const = 0;
|
|
|
|
virtual void push(SUnit *U) = 0;
|
|
|
|
|
|
|
|
virtual void push_all(const std::vector<SUnit *> &Nodes) = 0;
|
|
|
|
virtual SUnit *pop() = 0;
|
|
|
|
|
2007-09-25 01:54:36 +00:00
|
|
|
virtual void remove(SUnit *SU) = 0;
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// ScheduledNode - As each node is scheduled, this method is invoked. This
|
|
|
|
/// allows the priority function to adjust the priority of node that have
|
|
|
|
/// already been emitted.
|
|
|
|
virtual void ScheduledNode(SUnit *Node) {}
|
2007-09-25 01:54:36 +00:00
|
|
|
|
|
|
|
virtual void UnscheduledNode(SUnit *Node) {}
|
2006-05-11 23:55:42 +00:00
|
|
|
};
|
|
|
|
|
2006-01-21 02:32:06 +00:00
|
|
|
class ScheduleDAG {
|
|
|
|
public:
|
|
|
|
SelectionDAG &DAG; // DAG of the current basic block
|
|
|
|
MachineBasicBlock *BB; // Current basic block
|
|
|
|
const TargetMachine &TM; // Target processor
|
|
|
|
const TargetInstrInfo *TII; // Target instruction information
|
2008-02-10 18:45:23 +00:00
|
|
|
const TargetRegisterInfo *TRI; // Target processor register info
|
2008-01-30 19:35:32 +00:00
|
|
|
MachineFunction *MF; // Machine function
|
2007-12-31 04:13:23 +00:00
|
|
|
MachineRegisterInfo &RegInfo; // Virtual/real register map
|
2006-01-21 02:32:06 +00:00
|
|
|
MachineConstantPool *ConstPool; // Target constant pool
|
2006-05-12 01:58:24 +00:00
|
|
|
std::vector<SUnit*> Sequence; // The schedule. Null SUnit*'s
|
|
|
|
// represent noop instructions.
|
2007-09-25 01:54:36 +00:00
|
|
|
DenseMap<SDNode*, std::vector<SUnit*> > SUnitMap;
|
|
|
|
// SDNode to SUnit mapping (n -> n).
|
2006-05-11 23:55:42 +00:00
|
|
|
std::vector<SUnit> SUnits; // The scheduling units.
|
2007-02-01 05:32:05 +00:00
|
|
|
SmallSet<SDNode*, 16> CommuteSet; // Nodes the should be commuted.
|
2006-01-21 02:32:06 +00:00
|
|
|
|
2006-03-10 07:42:02 +00:00
|
|
|
ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
|
2007-12-31 04:13:23 +00:00
|
|
|
const TargetMachine &tm);
|
2006-02-04 06:49:00 +00:00
|
|
|
|
2006-03-10 07:48:52 +00:00
|
|
|
virtual ~ScheduleDAG() {}
|
2006-01-21 02:32:06 +00:00
|
|
|
|
2007-08-28 20:32:58 +00:00
|
|
|
/// viewGraph - Pop up a GraphViz/gv window with the ScheduleDAG rendered
|
|
|
|
/// using 'dot'.
|
|
|
|
///
|
|
|
|
void viewGraph();
|
|
|
|
|
2006-01-21 02:32:06 +00:00
|
|
|
/// Run - perform scheduling.
|
|
|
|
///
|
|
|
|
MachineBasicBlock *Run();
|
|
|
|
|
2006-01-23 07:01:07 +00:00
|
|
|
/// isPassiveNode - Return true if the node is a non-scheduled leaf.
|
|
|
|
///
|
2006-01-25 09:07:50 +00:00
|
|
|
static bool isPassiveNode(SDNode *Node) {
|
2006-01-23 07:01:07 +00:00
|
|
|
if (isa<ConstantSDNode>(Node)) return true;
|
2008-02-14 08:57:00 +00:00
|
|
|
if (isa<ConstantFPSDNode>(Node)) return true;
|
2006-01-23 07:01:07 +00:00
|
|
|
if (isa<RegisterSDNode>(Node)) return true;
|
|
|
|
if (isa<GlobalAddressSDNode>(Node)) return true;
|
|
|
|
if (isa<BasicBlockSDNode>(Node)) return true;
|
|
|
|
if (isa<FrameIndexSDNode>(Node)) return true;
|
|
|
|
if (isa<ConstantPoolSDNode>(Node)) return true;
|
2006-04-22 18:53:45 +00:00
|
|
|
if (isa<JumpTableSDNode>(Node)) return true;
|
2006-01-23 07:01:07 +00:00
|
|
|
if (isa<ExternalSymbolSDNode>(Node)) return true;
|
2008-02-06 22:27:42 +00:00
|
|
|
if (isa<MemOperandSDNode>(Node)) return true;
|
2006-01-23 07:01:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// NewSUnit - Creates a new SUnit and return a ptr to it.
|
|
|
|
///
|
|
|
|
SUnit *NewSUnit(SDNode *N) {
|
|
|
|
SUnits.push_back(SUnit(N, SUnits.size()));
|
|
|
|
return &SUnits.back();
|
|
|
|
}
|
|
|
|
|
2007-09-25 01:54:36 +00:00
|
|
|
/// Clone - Creates a clone of the specified SUnit. It does not copy the
|
|
|
|
/// predecessors / successors info nor the temporary scheduling states.
|
|
|
|
SUnit *Clone(SUnit *N);
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// BuildSchedUnits - Build SUnits from the selection dag that we are input.
|
|
|
|
/// This SUnit graph is similar to the SelectionDAG, but represents flagged
|
|
|
|
/// together nodes with a single SUnit.
|
|
|
|
void BuildSchedUnits();
|
|
|
|
|
2007-10-05 01:39:18 +00:00
|
|
|
/// ComputeLatency - Compute node latency.
|
|
|
|
///
|
|
|
|
void ComputeLatency(SUnit *SU);
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// CalculateDepths, CalculateHeights - Calculate node depth / height.
|
|
|
|
///
|
|
|
|
void CalculateDepths();
|
|
|
|
void CalculateHeights();
|
|
|
|
|
2006-11-04 09:42:53 +00:00
|
|
|
/// CountResults - The results of target nodes have register or immediate
|
|
|
|
/// operands first, then an optional chain, and optional flag operands
|
|
|
|
/// (which do not go into the machine instrs.)
|
|
|
|
static unsigned CountResults(SDNode *Node);
|
|
|
|
|
2008-02-06 22:27:42 +00:00
|
|
|
/// CountOperands - The inputs to target nodes have any actual inputs first,
|
|
|
|
/// followed by optional memory operands chain operand, then flag operands.
|
|
|
|
/// Compute the number of actual operands that will go into the machine
|
|
|
|
/// instr.
|
2006-11-04 09:42:53 +00:00
|
|
|
static unsigned CountOperands(SDNode *Node);
|
|
|
|
|
2008-02-06 22:27:42 +00:00
|
|
|
/// CountMemOperands - Find the index of the last MemOperandSDNode
|
|
|
|
static unsigned CountMemOperands(SDNode *Node);
|
|
|
|
|
2006-01-23 07:01:07 +00:00
|
|
|
/// EmitNode - Generate machine code for an node and needed dependencies.
|
2006-03-10 07:24:45 +00:00
|
|
|
/// VRBaseMap contains, for each already emitted node, the first virtual
|
|
|
|
/// register number for the results of the node.
|
2006-01-23 07:01:07 +00:00
|
|
|
///
|
2007-09-25 01:54:36 +00:00
|
|
|
void EmitNode(SDNode *Node, unsigned InstNo,
|
|
|
|
DenseMap<SDOperand, unsigned> &VRBaseMap);
|
2006-03-05 23:50:42 +00:00
|
|
|
|
|
|
|
/// EmitNoop - Emit a noop instruction.
|
|
|
|
///
|
|
|
|
void EmitNoop();
|
Instead of adding copyfromreg's to handle physical definitions. Now isel can
simply specify them as results and let scheduledag handle them. That
is, instead of
SDOperand Flag = DAG.getTargetNode(Opc, MVT::i32, MVT::Flag, ...)
SDOperand Result = DAG.getCopyFromReg(Chain, X86::EAX, MVT::i32, Flag)
Just write:
SDOperand Result = DAG.getTargetNode(Opc, MVT::i32, MVT::i32, ...)
And let scheduledag emit the move from X86::EAX to a virtual register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40710 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-02 00:28:15 +00:00
|
|
|
|
2007-09-26 21:38:03 +00:00
|
|
|
void EmitCrossRCCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap);
|
|
|
|
|
Instead of adding copyfromreg's to handle physical definitions. Now isel can
simply specify them as results and let scheduledag handle them. That
is, instead of
SDOperand Flag = DAG.getTargetNode(Opc, MVT::i32, MVT::Flag, ...)
SDOperand Result = DAG.getCopyFromReg(Chain, X86::EAX, MVT::i32, Flag)
Just write:
SDOperand Result = DAG.getTargetNode(Opc, MVT::i32, MVT::i32, ...)
And let scheduledag emit the move from X86::EAX to a virtual register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40710 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-02 00:28:15 +00:00
|
|
|
/// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
|
|
|
|
/// implicit physical register output.
|
2007-09-25 01:54:36 +00:00
|
|
|
void EmitCopyFromReg(SDNode *Node, unsigned ResNo, unsigned InstNo,
|
|
|
|
unsigned SrcReg,
|
Instead of adding copyfromreg's to handle physical definitions. Now isel can
simply specify them as results and let scheduledag handle them. That
is, instead of
SDOperand Flag = DAG.getTargetNode(Opc, MVT::i32, MVT::Flag, ...)
SDOperand Result = DAG.getCopyFromReg(Chain, X86::EAX, MVT::i32, Flag)
Just write:
SDOperand Result = DAG.getTargetNode(Opc, MVT::i32, MVT::i32, ...)
And let scheduledag emit the move from X86::EAX to a virtual register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40710 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-02 00:28:15 +00:00
|
|
|
DenseMap<SDOperand, unsigned> &VRBaseMap);
|
2006-03-05 23:50:42 +00:00
|
|
|
|
Instead of adding copyfromreg's to handle physical definitions. Now isel can
simply specify them as results and let scheduledag handle them. That
is, instead of
SDOperand Flag = DAG.getTargetNode(Opc, MVT::i32, MVT::Flag, ...)
SDOperand Result = DAG.getCopyFromReg(Chain, X86::EAX, MVT::i32, Flag)
Just write:
SDOperand Result = DAG.getTargetNode(Opc, MVT::i32, MVT::i32, ...)
And let scheduledag emit the move from X86::EAX to a virtual register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40710 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-02 00:28:15 +00:00
|
|
|
void CreateVirtualRegisters(SDNode *Node, MachineInstr *MI,
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc &II,
|
Instead of adding copyfromreg's to handle physical definitions. Now isel can
simply specify them as results and let scheduledag handle them. That
is, instead of
SDOperand Flag = DAG.getTargetNode(Opc, MVT::i32, MVT::Flag, ...)
SDOperand Result = DAG.getCopyFromReg(Chain, X86::EAX, MVT::i32, Flag)
Just write:
SDOperand Result = DAG.getTargetNode(Opc, MVT::i32, MVT::i32, ...)
And let scheduledag emit the move from X86::EAX to a virtual register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40710 91177308-0d34-0410-b5e6-96231b3b80d8
2007-08-02 00:28:15 +00:00
|
|
|
DenseMap<SDOperand, unsigned> &VRBaseMap);
|
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
void EmitSchedule();
|
|
|
|
|
|
|
|
void dumpSchedule() const;
|
2006-01-23 07:01:07 +00:00
|
|
|
|
|
|
|
/// Schedule - Order nodes according to selected style.
|
|
|
|
///
|
2006-03-05 23:50:42 +00:00
|
|
|
virtual void Schedule() {}
|
2006-01-21 02:32:06 +00:00
|
|
|
|
|
|
|
private:
|
2007-07-26 08:12:07 +00:00
|
|
|
/// EmitSubregNode - Generate machine code for subreg nodes.
|
|
|
|
///
|
|
|
|
void EmitSubregNode(SDNode *Node,
|
|
|
|
DenseMap<SDOperand, unsigned> &VRBaseMap);
|
|
|
|
|
2006-02-24 18:53:51 +00:00
|
|
|
void AddOperand(MachineInstr *MI, SDOperand Op, unsigned IIOpNum,
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc *II,
|
2007-07-10 07:08:32 +00:00
|
|
|
DenseMap<SDOperand, unsigned> &VRBaseMap);
|
2008-02-06 22:27:42 +00:00
|
|
|
|
|
|
|
void AddMemOperand(MachineInstr *MI, const MemOperand &MO);
|
2006-01-21 02:32:06 +00:00
|
|
|
};
|
|
|
|
|
2006-01-23 08:26:10 +00:00
|
|
|
/// createBURRListDAGScheduler - This creates a bottom up register usage
|
|
|
|
/// reduction list scheduler.
|
2006-08-01 18:29:48 +00:00
|
|
|
ScheduleDAG* createBURRListDAGScheduler(SelectionDAGISel *IS,
|
|
|
|
SelectionDAG *DAG,
|
2006-01-23 08:26:10 +00:00
|
|
|
MachineBasicBlock *BB);
|
2006-03-05 21:08:06 +00:00
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// createTDRRListDAGScheduler - This creates a top down register usage
|
|
|
|
/// reduction list scheduler.
|
2006-08-01 18:29:48 +00:00
|
|
|
ScheduleDAG* createTDRRListDAGScheduler(SelectionDAGISel *IS,
|
|
|
|
SelectionDAG *DAG,
|
2006-05-11 23:55:42 +00:00
|
|
|
MachineBasicBlock *BB);
|
|
|
|
|
2006-03-06 00:20:29 +00:00
|
|
|
/// createTDListDAGScheduler - This creates a top-down list scheduler with
|
2006-08-01 14:21:23 +00:00
|
|
|
/// a hazard recognizer.
|
2006-08-01 18:29:48 +00:00
|
|
|
ScheduleDAG* createTDListDAGScheduler(SelectionDAGISel *IS,
|
|
|
|
SelectionDAG *DAG,
|
2006-08-01 14:21:23 +00:00
|
|
|
MachineBasicBlock *BB);
|
|
|
|
|
2006-08-01 19:14:14 +00:00
|
|
|
/// createDefaultScheduler - This creates an instruction scheduler appropriate
|
|
|
|
/// for the target.
|
|
|
|
ScheduleDAG* createDefaultScheduler(SelectionDAGISel *IS,
|
|
|
|
SelectionDAG *DAG,
|
|
|
|
MachineBasicBlock *BB);
|
2007-08-28 20:32:58 +00:00
|
|
|
|
|
|
|
class SUnitIterator : public forward_iterator<SUnit, ptrdiff_t> {
|
|
|
|
SUnit *Node;
|
|
|
|
unsigned Operand;
|
|
|
|
|
|
|
|
SUnitIterator(SUnit *N, unsigned Op) : Node(N), Operand(Op) {}
|
|
|
|
public:
|
|
|
|
bool operator==(const SUnitIterator& x) const {
|
|
|
|
return Operand == x.Operand;
|
|
|
|
}
|
|
|
|
bool operator!=(const SUnitIterator& x) const { return !operator==(x); }
|
|
|
|
|
|
|
|
const SUnitIterator &operator=(const SUnitIterator &I) {
|
|
|
|
assert(I.Node == Node && "Cannot assign iterators to two different nodes!");
|
|
|
|
Operand = I.Operand;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pointer operator*() const {
|
2007-09-19 01:38:40 +00:00
|
|
|
return Node->Preds[Operand].Dep;
|
2007-08-28 20:32:58 +00:00
|
|
|
}
|
|
|
|
pointer operator->() const { return operator*(); }
|
|
|
|
|
|
|
|
SUnitIterator& operator++() { // Preincrement
|
|
|
|
++Operand;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SUnitIterator operator++(int) { // Postincrement
|
|
|
|
SUnitIterator tmp = *this; ++*this; return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SUnitIterator begin(SUnit *N) { return SUnitIterator(N, 0); }
|
|
|
|
static SUnitIterator end (SUnit *N) {
|
|
|
|
return SUnitIterator(N, N->Preds.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getOperand() const { return Operand; }
|
|
|
|
const SUnit *getNode() const { return Node; }
|
2007-09-19 01:38:40 +00:00
|
|
|
bool isCtrlDep() const { return Node->Preds[Operand].isCtrl; }
|
2007-08-28 20:32:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct GraphTraits<SUnit*> {
|
|
|
|
typedef SUnit NodeType;
|
|
|
|
typedef SUnitIterator ChildIteratorType;
|
|
|
|
static inline NodeType *getEntryNode(SUnit *N) { return N; }
|
|
|
|
static inline ChildIteratorType child_begin(NodeType *N) {
|
|
|
|
return SUnitIterator::begin(N);
|
|
|
|
}
|
|
|
|
static inline ChildIteratorType child_end(NodeType *N) {
|
|
|
|
return SUnitIterator::end(N);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct GraphTraits<ScheduleDAG*> : public GraphTraits<SUnit*> {
|
|
|
|
typedef std::vector<SUnit>::iterator nodes_iterator;
|
|
|
|
static nodes_iterator nodes_begin(ScheduleDAG *G) {
|
|
|
|
return G->SUnits.begin();
|
|
|
|
}
|
|
|
|
static nodes_iterator nodes_end(ScheduleDAG *G) {
|
|
|
|
return G->SUnits.end();
|
|
|
|
}
|
|
|
|
};
|
2006-01-21 02:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|