Lines Matching refs:OperandList
149 std::vector<OperandInfo> OperandList; variable
157 bool empty() const { return OperandList.empty(); } in empty()
158 unsigned size() const { return OperandList.size(); } in size()
159 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
160 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
161 OperandInfo &back() { return OperandList.back(); } in back()
162 const OperandInfo &back() const { return OperandList.back(); } in back()
166 iterator begin() { return OperandList.begin(); } in begin()
167 const_iterator begin() const { return OperandList.begin(); } in begin()
168 iterator end() { return OperandList.end(); } in end()
169 const_iterator end() const { return OperandList.end(); } in end()
191 return OperandList[Op.first].MIOperandNo + Op.second; in getFlattenedOperandNumber()
198 assert(i < OperandList.size() && "Invalid flat operand #"); in getSubOperandNumber()
199 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op) in getSubOperandNumber()
200 return std::make_pair(i, Op-OperandList[i].MIOperandNo); in getSubOperandNumber()
209 if (OperandList[Op.first].DoNotEncode.size() > Op.second) in isFlatOperandNotEmitted()
210 return OperandList[Op.first].DoNotEncode[Op.second]; in isFlatOperandNotEmitted()