OLD | NEW |
---|---|
1 //===- subzero/src/IceInst.h - High-level instructions ----------*- C++ -*-===// | 1 //===- subzero/src/IceInst.h - High-level instructions ----------*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
101 bool isDestRedefined() const { return IsDestRedefined; } | 101 bool isDestRedefined() const { return IsDestRedefined; } |
102 void setDestRedefined() { IsDestRedefined = true; } | 102 void setDestRedefined() { IsDestRedefined = true; } |
103 | 103 |
104 Variable *getDest() const { return Dest; } | 104 Variable *getDest() const { return Dest; } |
105 | 105 |
106 SizeT getSrcSize() const { return NumSrcs; } | 106 SizeT getSrcSize() const { return NumSrcs; } |
107 Operand *getSrc(SizeT I) const { | 107 Operand *getSrc(SizeT I) const { |
108 assert(I < getSrcSize()); | 108 assert(I < getSrcSize()); |
109 return Srcs[I]; | 109 return Srcs[I]; |
110 } | 110 } |
111 void replaceSource(SizeT Index, Operand *Replacement) { | |
112 assert(Index < NumSrcs); | |
113 assert(!isDeleted()); | |
114 assert(LiveRangesEnded == 0); | |
Jim Stichnoth
2016/05/24 04:58:11
Add a brief comment why this assert is needed (the
manasijm
2016/05/24 16:54:21
Done.
| |
115 Srcs[Index] = Replacement; | |
116 } | |
111 | 117 |
112 bool isLastUse(const Operand *Src) const; | 118 bool isLastUse(const Operand *Src) const; |
113 void spliceLivenessInfo(Inst *OrigInst, Inst *SpliceAssn); | 119 void spliceLivenessInfo(Inst *OrigInst, Inst *SpliceAssn); |
114 | 120 |
115 /// Returns a list of out-edges corresponding to a terminator instruction, | 121 /// Returns a list of out-edges corresponding to a terminator instruction, |
116 /// which is the last instruction of the block. The list must not contain | 122 /// which is the last instruction of the block. The list must not contain |
117 /// duplicates. | 123 /// duplicates. |
118 virtual NodeList getTerminatorEdges() const { | 124 virtual NodeList getTerminatorEdges() const { |
119 // All valid terminator instructions override this method. For the default | 125 // All valid terminator instructions override this method. For the default |
120 // implementation, we assert in case some CfgNode is constructed without a | 126 // implementation, we assert in case some CfgNode is constructed without a |
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1143 | 1149 |
1144 inline Inst *iteratorToInst(InstList::iterator Iter) { return &*Iter; } | 1150 inline Inst *iteratorToInst(InstList::iterator Iter) { return &*Iter; } |
1145 | 1151 |
1146 inline const Inst *iteratorToInst(InstList::const_iterator Iter) { | 1152 inline const Inst *iteratorToInst(InstList::const_iterator Iter) { |
1147 return &*Iter; | 1153 return &*Iter; |
1148 } | 1154 } |
1149 | 1155 |
1150 } // end of namespace Ice | 1156 } // end of namespace Ice |
1151 | 1157 |
1152 #endif // SUBZERO_SRC_ICEINST_H | 1158 #endif // SUBZERO_SRC_ICEINST_H |
OLD | NEW |