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()
173 return OperandList[Op.first].MIOperandNo + Op.second; in getFlattenedOperandNumber()
180 assert(i < OperandList.size() && "Invalid flat operand #"); in getSubOperandNumber()
181 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op) in getSubOperandNumber()
182 return std::make_pair(i, Op-OperandList[i].MIOperandNo); in getSubOperandNumber()
191 if (OperandList[Op.first].DoNotEncode.size() > Op.second) in isFlatOperandNotEmitted()
192 return OperandList[Op.first].DoNotEncode[Op.second]; in isFlatOperandNotEmitted()