Lines Matching refs:OperandList
137 std::vector<OperandInfo> OperandList; variable
145 bool empty() const { return OperandList.empty(); } in empty()
146 unsigned size() const { return OperandList.size(); } in size()
147 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
148 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
149 OperandInfo &back() { return OperandList.back(); } in back()
150 const OperandInfo &back() const { return OperandList.back(); } in back()
154 iterator begin() { return OperandList.begin(); } in begin()
155 const_iterator begin() const { return OperandList.begin(); } in begin()
156 iterator end() { return OperandList.end(); } in end()
157 const_iterator end() const { return OperandList.end(); } in end()
179 return OperandList[Op.first].MIOperandNo + Op.second; in getFlattenedOperandNumber()
186 assert(i < OperandList.size() && "Invalid flat operand #"); in getSubOperandNumber()
187 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op) in getSubOperandNumber()
188 return std::make_pair(i, Op-OperandList[i].MIOperandNo); in getSubOperandNumber()
197 if (OperandList[Op.first].DoNotEncode.size() > Op.second) in isFlatOperandNotEmitted()
198 return OperandList[Op.first].DoNotEncode[Op.second]; in isFlatOperandNotEmitted()