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