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
|
2008-11-19 23:18:57 +00:00
|
|
|
// base class for instruction schedulers.
|
2006-01-21 02:32:06 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SCHEDULEDAG_H
|
|
|
|
#define LLVM_CODEGEN_SCHEDULEDAG_H
|
|
|
|
|
Experimental scheduler change to schedule / coalesce the copies added for function livein's. Take 2008-03-10-RegAllocInfLoop.ll, the schedule looks like this after these copies are inserted:
entry: 0x12049d0, LLVM BB @0x1201fd0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1028<def> = MOV32rr %EAX
%reg1029<def> = MOV32rr %EDX
%reg1030<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x1201910 + 0]
%reg1025<def> = MOV32rr %reg1029
%reg1026<def> = MOV32rr %reg1030
%reg1024<def> = MOV32rr %reg1028
The copies unnecessarily increase register pressure and it will end up requiring a physical register to be spilled.
With -schedule-livein-copies:
entry: 0x12049d0, LLVM BB @0x1201fa0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1024<def> = MOV32rr %EAX
%reg1025<def> = MOV32rr %EDX
%reg1026<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x12018e0 + 0]
Much better!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48307 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-12 22:19:41 +00:00
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
2007-02-03 01:34:13 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2008-11-25 00:52:40 +00:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
2007-08-28 20:32:58 +00:00
|
|
|
#include "llvm/ADT/GraphTraits.h"
|
2008-11-19 23:18:57 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2006-05-11 23:55:42 +00:00
|
|
|
|
2006-01-21 02:32:06 +00:00
|
|
|
namespace llvm {
|
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;
|
2008-11-18 02:06:40 +00:00
|
|
|
class ScheduleDAG;
|
2006-01-21 02:32:06 +00:00
|
|
|
class SelectionDAG;
|
2008-11-19 23:18:57 +00:00
|
|
|
class SDNode;
|
2006-01-21 02:32:06 +00:00
|
|
|
class TargetInstrInfo;
|
2008-01-07 07:27:27 +00:00
|
|
|
class TargetInstrDesc;
|
2008-04-03 16:36:07 +00:00
|
|
|
class TargetLowering;
|
2006-01-21 02:32:06 +00:00
|
|
|
class TargetMachine;
|
2007-09-26 21:38:03 +00:00
|
|
|
class TargetRegisterClass;
|
2008-11-19 23:18:57 +00:00
|
|
|
template<class Graph> class GraphWriter;
|
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.
|
2008-11-21 02:18:56 +00:00
|
|
|
unsigned Reg; // If non-zero, this dep is a physreg dependency.
|
2007-09-25 01:54:36 +00:00
|
|
|
int Cost; // Cost of the dependency.
|
|
|
|
bool isCtrl : 1; // True iff it's a control dependency.
|
2008-11-21 02:18:56 +00:00
|
|
|
bool isArtificial : 1; // True iff it's an artificial ctrl dep added
|
|
|
|
// during sched that may be safely deleted if
|
|
|
|
// necessary.
|
2008-11-21 02:27:52 +00:00
|
|
|
bool isAntiDep : 1; // True iff it's an anti-dependency (on a physical
|
|
|
|
// register.
|
|
|
|
SDep(SUnit *d, unsigned r, int t, bool c, bool a, bool anti)
|
|
|
|
: Dep(d), Reg(r), Cost(t), isCtrl(c), isArtificial(a), isAntiDep(anti) {}
|
2007-09-19 01:38:40 +00:00
|
|
|
};
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// SUnit - Scheduling unit. This is a node in the scheduling DAG.
|
2006-05-11 23:55:42 +00:00
|
|
|
struct SUnit {
|
2008-11-13 21:36:12 +00:00
|
|
|
private:
|
2006-05-11 23:55:42 +00:00
|
|
|
SDNode *Node; // Representative node.
|
2008-11-14 00:06:09 +00:00
|
|
|
MachineInstr *Instr; // Alternatively, a MachineInstr.
|
2008-11-13 21:36:12 +00:00
|
|
|
public:
|
2008-06-21 15:52:51 +00:00
|
|
|
SUnit *OrigNode; // If not this, the node from which
|
|
|
|
// this node was cloned.
|
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.
|
2008-04-29 09:07:59 +00:00
|
|
|
unsigned NodeQueueId; // Queue id of node.
|
2007-09-25 01:54:36 +00:00
|
|
|
unsigned short Latency; // Node latency.
|
2008-11-13 23:41:41 +00:00
|
|
|
short NumPreds; // # of non-control preds.
|
|
|
|
short NumSuccs; // # of non-control sucss.
|
2006-05-11 23:55:42 +00:00
|
|
|
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
|
|
|
|
2008-11-14 00:06:09 +00:00
|
|
|
/// SUnit - Construct an SUnit for pre-regalloc scheduling to represent
|
|
|
|
/// an SDNode and any nodes flagged to it.
|
2006-05-11 23:55:42 +00:00
|
|
|
SUnit(SDNode *node, unsigned nodenum)
|
2008-11-14 00:06:09 +00:00
|
|
|
: Node(node), Instr(0), OrigNode(0), NodeNum(nodenum), NodeQueueId(0),
|
|
|
|
Latency(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0), NumSuccsLeft(0),
|
|
|
|
isTwoAddress(false), isCommutable(false), hasPhysRegDefs(false),
|
|
|
|
isPending(false), isAvailable(false), isScheduled(false),
|
2008-11-20 01:26:25 +00:00
|
|
|
CycleBound(0), Cycle(~0u), Depth(0), Height(0),
|
2008-11-14 00:06:09 +00:00
|
|
|
CopyDstRC(NULL), CopySrcRC(NULL) {}
|
|
|
|
|
|
|
|
/// SUnit - Construct an SUnit for post-regalloc scheduling to represent
|
|
|
|
/// a MachineInstr.
|
|
|
|
SUnit(MachineInstr *instr, unsigned nodenum)
|
|
|
|
: Node(0), Instr(instr), OrigNode(0), NodeNum(nodenum), NodeQueueId(0),
|
|
|
|
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),
|
2008-11-20 01:26:25 +00:00
|
|
|
CycleBound(0), Cycle(~0u), Depth(0), Height(0),
|
2007-09-26 21:38:03 +00:00
|
|
|
CopyDstRC(NULL), CopySrcRC(NULL) {}
|
2007-09-25 01:54:36 +00:00
|
|
|
|
2008-11-13 21:36:12 +00:00
|
|
|
/// setNode - Assign the representative SDNode for this SUnit.
|
2008-11-14 00:06:09 +00:00
|
|
|
/// This may be used during pre-regalloc scheduling.
|
|
|
|
void setNode(SDNode *N) {
|
|
|
|
assert(!Instr && "Setting SDNode of SUnit with MachineInstr!");
|
|
|
|
Node = N;
|
|
|
|
}
|
2008-11-13 21:36:12 +00:00
|
|
|
|
|
|
|
/// getNode - Return the representative SDNode for this SUnit.
|
2008-11-14 00:06:09 +00:00
|
|
|
/// This may be used during pre-regalloc scheduling.
|
|
|
|
SDNode *getNode() const {
|
|
|
|
assert(!Instr && "Reading SDNode of SUnit with MachineInstr!");
|
|
|
|
return Node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// setInstr - Assign the instruction for the SUnit.
|
|
|
|
/// This may be used during post-regalloc scheduling.
|
|
|
|
void setInstr(MachineInstr *MI) {
|
|
|
|
assert(!Node && "Setting MachineInstr of SUnit with SDNode!");
|
|
|
|
Instr = MI;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getInstr - Return the representative MachineInstr for this SUnit.
|
|
|
|
/// This may be used during post-regalloc scheduling.
|
|
|
|
MachineInstr *getInstr() const {
|
|
|
|
assert(!Node && "Reading MachineInstr of SUnit with SDNode!");
|
|
|
|
return Instr;
|
|
|
|
}
|
2008-11-13 21:36:12 +00:00
|
|
|
|
2006-08-17 00:09:56 +00:00
|
|
|
/// addPred - This adds the specified node as a pred of the current node if
|
2008-11-21 02:27:52 +00:00
|
|
|
/// not already. It also adds the current node as a successor of the
|
|
|
|
/// specified node. This returns true if this is a new pred.
|
2008-11-21 02:18:56 +00:00
|
|
|
bool addPred(SUnit *N, bool isCtrl, bool isArtificial,
|
2008-11-21 02:27:52 +00:00
|
|
|
unsigned PhyReg = 0, int Cost = 1, bool isAntiDep = false) {
|
2008-05-05 18:30:58 +00:00
|
|
|
for (unsigned i = 0, e = (unsigned)Preds.size(); i != e; ++i)
|
2007-09-25 01:54:36 +00:00
|
|
|
if (Preds[i].Dep == N &&
|
2008-11-25 00:52:40 +00:00
|
|
|
Preds[i].isCtrl == isCtrl &&
|
|
|
|
Preds[i].isArtificial == isArtificial &&
|
|
|
|
Preds[i].isAntiDep == isAntiDep)
|
2006-08-17 00:09:56 +00:00
|
|
|
return false;
|
2008-11-21 02:27:52 +00:00
|
|
|
Preds.push_back(SDep(N, PhyReg, Cost, isCtrl, isArtificial, isAntiDep));
|
|
|
|
N->Succs.push_back(SDep(this, PhyReg, Cost, isCtrl,
|
|
|
|
isArtificial, isAntiDep));
|
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;
|
|
|
|
}
|
|
|
|
|
2008-11-24 17:33:52 +00:00
|
|
|
bool removePred(SUnit *N, bool isCtrl, bool isArtificial, bool isAntiDep) {
|
2007-09-25 01:54:36 +00:00
|
|
|
for (SmallVector<SDep, 4>::iterator I = Preds.begin(), E = Preds.end();
|
|
|
|
I != E; ++I)
|
2008-11-25 00:52:40 +00:00
|
|
|
if (I->Dep == N &&
|
|
|
|
I->isCtrl == isCtrl &&
|
|
|
|
I->isArtificial == isArtificial &&
|
|
|
|
I->isAntiDep == isAntiDep) {
|
2007-09-25 01:54:36 +00:00
|
|
|
bool FoundSucc = false;
|
|
|
|
for (SmallVector<SDep, 4>::iterator II = N->Succs.begin(),
|
|
|
|
EE = N->Succs.end(); II != EE; ++II)
|
|
|
|
if (II->Dep == this &&
|
2008-11-24 17:33:52 +00:00
|
|
|
II->isCtrl == isCtrl && II->isArtificial == isArtificial &&
|
|
|
|
II->isAntiDep == isAntiDep) {
|
2007-09-25 01:54:36 +00:00
|
|
|
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) {
|
2008-05-05 18:30:58 +00:00
|
|
|
for (unsigned i = 0, e = (unsigned)Preds.size(); i != e; ++i)
|
2007-09-25 01:54:36 +00:00
|
|
|
if (Preds[i].Dep == N)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isSucc(SUnit *N) {
|
2008-05-05 18:30:58 +00:00
|
|
|
for (unsigned i = 0, e = (unsigned)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
|
|
|
}
|
|
|
|
|
2008-11-18 02:06:40 +00:00
|
|
|
void dump(const ScheduleDAG *G) const;
|
|
|
|
void dumpAll(const ScheduleDAG *G) const;
|
2008-11-19 21:32:03 +00:00
|
|
|
void print(raw_ostream &O, const ScheduleDAG *G) const;
|
2006-05-11 23:55:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
/// 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() {}
|
|
|
|
|
2008-06-21 19:18:17 +00:00
|
|
|
virtual void initNodes(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
|
2008-06-24 00:02:44 +00:00
|
|
|
/// allows the priority function to adjust the priority of related
|
|
|
|
/// unscheduled nodes, for example.
|
|
|
|
///
|
2008-05-19 20:15:12 +00:00
|
|
|
virtual void ScheduledNode(SUnit *) {}
|
2007-09-25 01:54:36 +00:00
|
|
|
|
2008-05-19 20:15:12 +00:00
|
|
|
virtual void UnscheduledNode(SUnit *) {}
|
2006-05-11 23:55:42 +00:00
|
|
|
};
|
|
|
|
|
2006-01-21 02:32:06 +00:00
|
|
|
class ScheduleDAG {
|
|
|
|
public:
|
2008-11-13 21:21:28 +00:00
|
|
|
SelectionDAG *DAG; // DAG of the current basic block
|
2006-01-21 02:32:06 +00:00
|
|
|
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-04-03 16:36:07 +00:00
|
|
|
TargetLowering *TLI; // Target lowering info
|
2008-01-30 19:35:32 +00:00
|
|
|
MachineFunction *MF; // Machine function
|
Experimental scheduler change to schedule / coalesce the copies added for function livein's. Take 2008-03-10-RegAllocInfLoop.ll, the schedule looks like this after these copies are inserted:
entry: 0x12049d0, LLVM BB @0x1201fd0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1028<def> = MOV32rr %EAX
%reg1029<def> = MOV32rr %EDX
%reg1030<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x1201910 + 0]
%reg1025<def> = MOV32rr %reg1029
%reg1026<def> = MOV32rr %reg1030
%reg1024<def> = MOV32rr %reg1028
The copies unnecessarily increase register pressure and it will end up requiring a physical register to be spilled.
With -schedule-livein-copies:
entry: 0x12049d0, LLVM BB @0x1201fa0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1024<def> = MOV32rr %EAX
%reg1025<def> = MOV32rr %EDX
%reg1026<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x12018e0 + 0]
Much better!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48307 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-12 22:19:41 +00:00
|
|
|
MachineRegisterInfo &MRI; // 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.
|
2006-05-11 23:55:42 +00:00
|
|
|
std::vector<SUnit> SUnits; // The scheduling units.
|
2006-01-21 02:32:06 +00:00
|
|
|
|
2008-11-13 21:21:28 +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
|
|
|
|
2008-11-19 23:18:57 +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.
|
|
|
|
///
|
2008-07-14 18:19:29 +00:00
|
|
|
void Run();
|
2006-01-21 02:32:06 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// BuildSchedUnits - Build SUnits and set up their Preds and Succs
|
|
|
|
/// to form the scheduling dependency graph.
|
2006-01-23 07:01:07 +00:00
|
|
|
///
|
2008-11-19 23:18:57 +00:00
|
|
|
virtual void BuildSchedUnits() = 0;
|
2006-05-11 23:55:42 +00:00
|
|
|
|
2007-10-05 01:39:18 +00:00
|
|
|
/// ComputeLatency - Compute node latency.
|
|
|
|
///
|
2008-11-19 23:18:57 +00:00
|
|
|
virtual void ComputeLatency(SUnit *SU) { SU->Latency = 1; }
|
2007-10-05 01:39:18 +00:00
|
|
|
|
2006-05-11 23:55:42 +00:00
|
|
|
/// CalculateDepths, CalculateHeights - Calculate node depth / height.
|
|
|
|
///
|
|
|
|
void CalculateDepths();
|
|
|
|
void CalculateHeights();
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
protected:
|
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
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
public:
|
|
|
|
virtual MachineBasicBlock *EmitSchedule() = 0;
|
2008-04-03 16:36:07 +00:00
|
|
|
|
|
|
|
void dumpSchedule() const;
|
|
|
|
|
2008-06-24 00:02:44 +00:00
|
|
|
/// Schedule - Order nodes according to selected style, filling
|
|
|
|
/// in the Sequence member.
|
2008-04-03 16:36:07 +00:00
|
|
|
///
|
2008-06-24 00:02:44 +00:00
|
|
|
virtual void Schedule() = 0;
|
2008-04-03 16:36:07 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
virtual void dumpNode(const SUnit *SU) const = 0;
|
2008-11-19 22:09:45 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// getGraphNodeLabel - Return a label for an SUnit node in a visualization
|
|
|
|
/// of the ScheduleDAG.
|
|
|
|
virtual std::string getGraphNodeLabel(const SUnit *SU) const = 0;
|
2008-04-03 16:36:07 +00:00
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
/// addCustomGraphFeatures - Add custom features for a visualization of
|
|
|
|
/// the ScheduleDAG.
|
2008-11-24 19:51:59 +00:00
|
|
|
virtual void addCustomGraphFeatures(GraphWriter<ScheduleDAG*> &) const {}
|
2008-04-03 16:36:07 +00:00
|
|
|
|
2008-11-20 01:26:25 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
/// VerifySchedule - Verify that all SUnits were scheduled and that
|
|
|
|
/// their state is consistent.
|
|
|
|
void VerifySchedule(bool isBottomUp);
|
|
|
|
#endif
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
protected:
|
2008-04-07 19:35:22 +00:00
|
|
|
void AddMemOperand(MachineInstr *MI, const MachineMemOperand &MO);
|
2008-04-03 16:36:07 +00:00
|
|
|
|
2007-09-26 21:38:03 +00:00
|
|
|
void EmitCrossRCCopy(SUnit *SU, DenseMap<SUnit*, unsigned> &VRBaseMap);
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
private:
|
Experimental scheduler change to schedule / coalesce the copies added for function livein's. Take 2008-03-10-RegAllocInfLoop.ll, the schedule looks like this after these copies are inserted:
entry: 0x12049d0, LLVM BB @0x1201fd0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1028<def> = MOV32rr %EAX
%reg1029<def> = MOV32rr %EDX
%reg1030<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x1201910 + 0]
%reg1025<def> = MOV32rr %reg1029
%reg1026<def> = MOV32rr %reg1030
%reg1024<def> = MOV32rr %reg1028
The copies unnecessarily increase register pressure and it will end up requiring a physical register to be spilled.
With -schedule-livein-copies:
entry: 0x12049d0, LLVM BB @0x1201fa0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1024<def> = MOV32rr %EAX
%reg1025<def> = MOV32rr %EDX
%reg1026<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x12018e0 + 0]
Much better!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48307 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-12 22:19:41 +00:00
|
|
|
/// EmitLiveInCopy - Emit a copy for a live in physical register. If the
|
|
|
|
/// physical register has only a single copy use, then coalesced the copy
|
2008-03-14 00:17:29 +00:00
|
|
|
/// if possible.
|
|
|
|
void EmitLiveInCopy(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator &InsertPos,
|
|
|
|
unsigned VirtReg, unsigned PhysReg,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
DenseMap<MachineInstr*, unsigned> &CopyRegMap);
|
Experimental scheduler change to schedule / coalesce the copies added for function livein's. Take 2008-03-10-RegAllocInfLoop.ll, the schedule looks like this after these copies are inserted:
entry: 0x12049d0, LLVM BB @0x1201fd0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1028<def> = MOV32rr %EAX
%reg1029<def> = MOV32rr %EDX
%reg1030<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x1201910 + 0]
%reg1025<def> = MOV32rr %reg1029
%reg1026<def> = MOV32rr %reg1030
%reg1024<def> = MOV32rr %reg1028
The copies unnecessarily increase register pressure and it will end up requiring a physical register to be spilled.
With -schedule-livein-copies:
entry: 0x12049d0, LLVM BB @0x1201fa0, ID#0:
Live Ins: %EAX %EDX %ECX
%reg1031<def> = MOVPC32r 0
%reg1032<def> = ADD32ri %reg1031, <es:_GLOBAL_OFFSET_TABLE_>, %EFLAGS<imp-def>
%reg1024<def> = MOV32rr %EAX
%reg1025<def> = MOV32rr %EDX
%reg1026<def> = MOV32rr %ECX
%reg1027<def> = MOV8rm %reg0, 1, %reg0, 0, Mem:LD(1,1) [0x12018e0 + 0]
Much better!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48307 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-12 22:19:41 +00:00
|
|
|
|
|
|
|
/// EmitLiveInCopies - If this is the first basic block in the function,
|
|
|
|
/// and if it has live ins that need to be copied into vregs, emit the
|
|
|
|
/// copies into the top of the block.
|
|
|
|
void EmitLiveInCopies(MachineBasicBlock *MBB);
|
2006-01-21 02:32:06 +00:00
|
|
|
};
|
|
|
|
|
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) {
|
2008-05-05 18:30:58 +00:00
|
|
|
return SUnitIterator(N, (unsigned)N->Preds.size());
|
2007-08-28 20:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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; }
|
2008-11-21 02:18:56 +00:00
|
|
|
bool isArtificialDep() const { return Node->Preds[Operand].isArtificial; }
|
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();
|
|
|
|
}
|
|
|
|
};
|
2008-11-25 00:52:40 +00:00
|
|
|
|
|
|
|
/// ScheduleDAGTopologicalSort is a class that computes a topological
|
|
|
|
/// ordering for SUnits and provides methods for dynamically updating
|
|
|
|
/// the ordering as new edges are added.
|
|
|
|
///
|
|
|
|
/// This allows a very fast implementation of IsReachable, for example.
|
|
|
|
///
|
|
|
|
class ScheduleDAGTopologicalSort {
|
|
|
|
/// SUnits - A reference to the ScheduleDAG's SUnits.
|
|
|
|
std::vector<SUnit> &SUnits;
|
|
|
|
|
|
|
|
/// Index2Node - Maps topological index to the node number.
|
|
|
|
std::vector<int> Index2Node;
|
|
|
|
/// Node2Index - Maps the node number to its topological index.
|
|
|
|
std::vector<int> Node2Index;
|
|
|
|
/// Visited - a set of nodes visited during a DFS traversal.
|
|
|
|
BitVector Visited;
|
|
|
|
|
|
|
|
/// DFS - make a DFS traversal and mark all nodes affected by the
|
|
|
|
/// edge insertion. These nodes will later get new topological indexes
|
|
|
|
/// by means of the Shift method.
|
|
|
|
void DFS(const SUnit *SU, int UpperBound, bool& HasLoop);
|
|
|
|
|
|
|
|
/// Shift - reassign topological indexes for the nodes in the DAG
|
|
|
|
/// to preserve the topological ordering.
|
|
|
|
void Shift(BitVector& Visited, int LowerBound, int UpperBound);
|
|
|
|
|
|
|
|
/// Allocate - assign the topological index to the node n.
|
|
|
|
void Allocate(int n, int index);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ScheduleDAGTopologicalSort(std::vector<SUnit> &SUnits);
|
|
|
|
|
|
|
|
/// InitDAGTopologicalSorting - create the initial topological
|
|
|
|
/// ordering from the DAG to be scheduled.
|
|
|
|
void InitDAGTopologicalSorting();
|
|
|
|
|
|
|
|
/// IsReachable - Checks if SU is reachable from TargetSU.
|
|
|
|
bool IsReachable(const SUnit *SU, const SUnit *TargetSU);
|
|
|
|
|
|
|
|
/// WillCreateCycle - Returns true if adding an edge from SU to TargetSU
|
|
|
|
/// will create a cycle.
|
|
|
|
bool WillCreateCycle(SUnit *SU, SUnit *TargetSU);
|
|
|
|
|
|
|
|
/// AddPred - Updates the topological ordering to accomodate an edge
|
|
|
|
/// to be added from SUnit X to SUnit Y.
|
|
|
|
void AddPred(SUnit *Y, SUnit *X);
|
|
|
|
|
|
|
|
/// RemovePred - Updates the topological ordering to accomodate an
|
|
|
|
/// an edge to be removed from the specified node N from the predecessors
|
|
|
|
/// of the current node M.
|
|
|
|
void RemovePred(SUnit *M, SUnit *N);
|
|
|
|
|
|
|
|
typedef std::vector<int>::iterator iterator;
|
|
|
|
typedef std::vector<int>::const_iterator const_iterator;
|
|
|
|
iterator begin() { return Index2Node.begin(); }
|
|
|
|
const_iterator begin() const { return Index2Node.begin(); }
|
|
|
|
iterator end() { return Index2Node.end(); }
|
|
|
|
const_iterator end() const { return Index2Node.end(); }
|
|
|
|
|
|
|
|
typedef std::vector<int>::reverse_iterator reverse_iterator;
|
|
|
|
typedef std::vector<int>::const_reverse_iterator const_reverse_iterator;
|
|
|
|
reverse_iterator rbegin() { return Index2Node.rbegin(); }
|
|
|
|
const_reverse_iterator rbegin() const { return Index2Node.rbegin(); }
|
|
|
|
reverse_iterator rend() { return Index2Node.rend(); }
|
|
|
|
const_reverse_iterator rend() const { return Index2Node.rend(); }
|
|
|
|
};
|
2006-01-21 02:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|