Lines Matching refs:OperandList
152 std::vector<OperandInfo> OperandList; variable
163 bool empty() const { return OperandList.empty(); } in empty()
164 unsigned size() const { return OperandList.size(); } in size()
165 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
166 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
167 OperandInfo &back() { return OperandList.back(); } in back()
168 const OperandInfo &back() const { return OperandList.back(); } in back()
172 iterator begin() { return OperandList.begin(); } in begin()
173 const_iterator begin() const { return OperandList.begin(); } in begin()
174 iterator end() { return OperandList.end(); } in end()
175 const_iterator end() const { return OperandList.end(); } in end()
200 return OperandList[Op.first].MIOperandNo + Op.second; in getFlattenedOperandNumber()
207 assert(i < OperandList.size() && "Invalid flat operand #"); in getSubOperandNumber()
208 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op) in getSubOperandNumber()
209 return std::make_pair(i, Op-OperandList[i].MIOperandNo); in getSubOperandNumber()
218 if (OperandList[Op.first].DoNotEncode.size() > Op.second) in isFlatOperandNotEmitted()
219 return OperandList[Op.first].DoNotEncode[Op.second]; in isFlatOperandNotEmitted()