HomeSort by relevance Sort by last modified time
    Searched defs:OperandList (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Bitcode/
BitCodes.h 166 SmallVector<BitCodeAbbrevOp, 32> OperandList;
173 return static_cast<unsigned>(OperandList.size());
176 return OperandList[N];
180 OperandList.push_back(OpInfo);
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 94 std::vector<CGIOperandList::OperandInfo> OperandList;
104 OperandList.push_back(Op);
107 OperandList.push_back(Op);
110 OperandList.back().Rec = OpR;
114 for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
115 Record *OpR = OperandList[j].Rec;
CodeGenInstruction.h 90 /// OperandList may not match the MachineInstr operand num. Until it
129 Record *TheDef; // The actual record containing this OperandList.
136 /// OperandList - The list of declared operands, along with their declared
138 std::vector<OperandInfo> OperandList;
146 bool empty() const { return OperandList.empty(); }
147 unsigned size() const { return OperandList.size(); }
148 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
149 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
150 OperandInfo &back() { return OperandList.back(); }
151 const OperandInfo &back() const { return OperandList.back();
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 381 /// This is true if OperandList was new[]'d. If true,
400 SDUse *OperandList;
567 return (unsigned)(Op - Op->getUser()->OperandList);
633 return OperandList[Num];
637 op_iterator op_begin() const { return OperandList; }
638 op_iterator op_end() const { return OperandList+NumOperands; }
780 OperandList(Ops.size() ? new SDUse[Ops.size()] : nullptr),
789 assert(OperandList && "no operands available");
790 OperandList[i].setUser(this);
791 OperandList[i].setInitial(Ops[i])
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]

Completed in 441 milliseconds