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

  /external/llvm/include/llvm/IR/
User.h 48 Use *OperandList;
52 : Value(ty, vty), OperandList(OpList) {
57 Use::zap(OperandList, OperandList + NumOperands, true);
58 OperandList = nullptr;
63 ~User() override { Use::zap(OperandList, OperandList + NumOperands); }
89 return OperandList[i];
96 OperandList[i] = Val;
100 return OperandList[i]
    [all...]
  /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 89 /// OperandList may not match the MachineInstr operand num. Until it
128 Record *TheDef; // The actual record containing this OperandList.
135 /// OperandList - The list of declared operands, along with their declared
137 std::vector<OperandInfo> OperandList;
145 bool empty() const { return OperandList.empty(); }
146 unsigned size() const { return OperandList.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(); }
150 const OperandInfo &back() const { return OperandList.back();
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 329 /// This is true if OperandList was new[]'d. If true,
348 SDUse *OperandList;
508 return (unsigned)(Op - Op->getUser()->OperandList);
574 return OperandList[Num];
578 op_iterator op_begin() const { return OperandList; }
579 op_iterator op_end() const { return OperandList+NumOperands; }
716 OperandList(Ops.size() ? new SDUse[Ops.size()] : nullptr),
725 assert(OperandList && "no operands available");
726 OperandList[i].setUser(this);
727 OperandList[i].setInitial(Ops[i])
    [all...]

Completed in 68 milliseconds