Lines Matching defs:OperandInfo
71 /// OperandInfo - The information we keep track of for each operand in the
73 struct OperandInfo {
119 OperandInfo(const Record *R, const std::string &N, const std::string &PMN,
150 std::vector<OperandInfo> OperandList;
163 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
164 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
165 OperandInfo &back() { return OperandList.back(); }
166 const OperandInfo &back() const { return OperandList.back(); }
168 typedef std::vector<OperandInfo>::iterator iterator;
169 typedef std::vector<OperandInfo>::const_iterator const_iterator;