summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/InstrSched/SchedPriorities.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-27 07:27:19 +0000
committerChris Lattner <sabre@nondot.org>2002-04-27 07:27:19 +0000
commitf998685cd9754e4c1de1c98343c3f366703c6561 (patch)
tree73f7788f47892cc3c25711efda2a88b42b5050ba /llvm/lib/CodeGen/InstrSched/SchedPriorities.h
parent8157a90b5dc7a4a68b7dc44e7310b37845adfe40 (diff)
downloadbcm5719-llvm-f998685cd9754e4c1de1c98343c3f366703c6561.tar.gz
bcm5719-llvm-f998685cd9754e4c1de1c98343c3f366703c6561.zip
s/Method/Function
llvm-svn: 2336
Diffstat (limited to 'llvm/lib/CodeGen/InstrSched/SchedPriorities.h')
-rw-r--r--llvm/lib/CodeGen/InstrSched/SchedPriorities.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/InstrSched/SchedPriorities.h b/llvm/lib/CodeGen/InstrSched/SchedPriorities.h
index c76beadcb59..3f087d52249 100644
--- a/llvm/lib/CodeGen/InstrSched/SchedPriorities.h
+++ b/llvm/lib/CodeGen/InstrSched/SchedPriorities.h
@@ -31,7 +31,7 @@
class Function;
class MachineInstr;
class SchedulingManager;
-class MethodLiveVarInfo;
+class FunctionLiveVarInfo;
//---------------------------------------------------------------------------
// Debug option levels for instruction scheduling
@@ -127,7 +127,7 @@ private:
class SchedPriorities: public NonCopyable {
public:
SchedPriorities(const Function *F, const SchedGraph *G,
- MethodLiveVarInfo &LVI);
+ FunctionLiveVarInfo &LVI);
// This must be called before scheduling begins.
@@ -157,7 +157,7 @@ private:
private:
cycles_t curTime;
const SchedGraph* graph;
- MethodLiveVarInfo &methodLiveVarInfo;
+ FunctionLiveVarInfo &methodLiveVarInfo;
std::hash_map<const MachineInstr*, bool> lastUseMap;
std::vector<cycles_t> nodeDelayVec;
std::vector<cycles_t> earliestForNode;
@@ -180,7 +180,7 @@ private:
void initializeReadyHeap (const SchedGraph* graph);
- bool instructionHasLastUse (MethodLiveVarInfo& methodLiveVarInfo,
+ bool instructionHasLastUse (FunctionLiveVarInfo& LVI,
const SchedGraphNode* graphNode);
// NOTE: The next two return references to the actual vector entries.
OpenPOWER on IntegriCloud