Home | History | Annotate | Download | only in TableGen

Lines Matching defs:OperandInfo

62     /// OperandInfo - The information we keep track of for each operand in the
64 struct OperandInfo {
107 OperandInfo(Record *R, const std::string &N, const std::string &PMN,
137 std::vector<OperandInfo> OperandList;
147 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
148 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
149 OperandInfo &back() { return OperandList.back(); }
150 const OperandInfo &back() const { return OperandList.back(); }
152 typedef std::vector<OperandInfo>::iterator iterator;
153 typedef std::vector<OperandInfo>::const_iterator const_iterator;