Chromium Code Reviews| 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); | |
|
Jim Stichnoth
2016/05/19 01:35:50
For safety, add a couple more asserts:
assert(!i
| |
| 113 Srcs[Index] = Replacement; | |
| 114 } | |
| 111 | 115 |
| 112 bool isLastUse(const Operand *Src) const; | 116 bool isLastUse(const Operand *Src) const; |
| 113 void spliceLivenessInfo(Inst *OrigInst, Inst *SpliceAssn); | 117 void spliceLivenessInfo(Inst *OrigInst, Inst *SpliceAssn); |
| 114 | 118 |
| 115 /// Returns a list of out-edges corresponding to a terminator instruction, | 119 /// 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 | 120 /// which is the last instruction of the block. The list must not contain |
| 117 /// duplicates. | 121 /// duplicates. |
| 118 virtual NodeList getTerminatorEdges() const { | 122 virtual NodeList getTerminatorEdges() const { |
| 119 // All valid terminator instructions override this method. For the default | 123 // All valid terminator instructions override this method. For the default |
| 120 // implementation, we assert in case some CfgNode is constructed without a | 124 // 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 | 1147 |
| 1144 inline Inst *iteratorToInst(InstList::iterator Iter) { return &*Iter; } | 1148 inline Inst *iteratorToInst(InstList::iterator Iter) { return &*Iter; } |
| 1145 | 1149 |
| 1146 inline const Inst *iteratorToInst(InstList::const_iterator Iter) { | 1150 inline const Inst *iteratorToInst(InstList::const_iterator Iter) { |
| 1147 return &*Iter; | 1151 return &*Iter; |
| 1148 } | 1152 } |
| 1149 | 1153 |
| 1150 } // end of namespace Ice | 1154 } // end of namespace Ice |
| 1151 | 1155 |
| 1152 #endif // SUBZERO_SRC_ICEINST_H | 1156 #endif // SUBZERO_SRC_ICEINST_H |
| OLD | NEW |