mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3058 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -157,13 +157,13 @@ private:
|
||||
cycles_t curTime;
|
||||
const SchedGraph* graph;
|
||||
FunctionLiveVarInfo &methodLiveVarInfo;
|
||||
std::hash_map<const MachineInstr*, bool> lastUseMap;
|
||||
hash_map<const MachineInstr*, bool> lastUseMap;
|
||||
std::vector<cycles_t> nodeDelayVec;
|
||||
std::vector<cycles_t> nodeEarliestUseVec;
|
||||
std::vector<cycles_t> earliestReadyTimeForNode;
|
||||
cycles_t earliestReadyTime;
|
||||
NodeHeap candsAsHeap; // candidate nodes, ready to go
|
||||
std::hash_set<const SchedGraphNode*> candsAsSet;//same entries as candsAsHeap,
|
||||
hash_set<const SchedGraphNode*> candsAsSet; //same entries as candsAsHeap,
|
||||
// but as set for fast lookup
|
||||
std::vector<candIndex> mcands; // holds pointers into cands
|
||||
candIndex nextToTry; // next cand after the last
|
||||
|
||||
Reference in New Issue
Block a user