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

  /external/llvm/include/llvm/IR/
User.h 46 /// OperandList - This is a pointer to the array of Uses for this User.
51 Use *OperandList;
55 : Value(ty, vty), NumOperands(NumOps), OperandList(OpList) {}
58 Use::zap(OperandList, OperandList + NumOperands, true);
59 OperandList = nullptr;
65 Use::zap(OperandList, OperandList + NumOperands);
92 return OperandList[i];
99 OperandList[i] = Val
    [all...]
OperandTraits.h 86 /// has an OperandList member of type User::op_iterator. [Note: this is now
95 return U->OperandList;
98 return U->OperandList + U->getNumOperands();
Instructions.h     [all...]
  /external/llvm/utils/TableGen/
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...]
CodeGenInstruction.cpp 115 OperandList.push_back(OperandInfo(Rec, ArgName, PrintMethod, EncoderMethod,
124 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
125 OperandList[i].Constraints.resize(OperandList[i].MINumOperands);
145 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
146 if (OperandList[i].Name == Name) {
174 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
184 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo;
281 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
282 OperandList[Op.first].DoNotEncode.resize(Op.second+1)
    [all...]
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;
X86DisassemblerTables.cpp 557 OperandListTy OperandList;
567 OperandList.push_back(std::make_pair(Encoding, Type));
569 unsigned &N = OperandSets[OperandList];
575 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) {
576 o << " { " << OperandList[i].first << ", "
577 << OperandList[i].second << " },\n";
592 OperandListTy OperandList;
601 OperandList.push_back(std::make_pair(Encoding, Type));
603 o.indent(i * 2) << (OperandSets[OperandList] - 1) << ",\n";
X86RecognizableInstr.cpp 212 Operands = &insn.Operands.OperandList;
481 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
483 unsigned numOperands = OperandList.size();
486 // operandMapping maps from operands in OperandList to their originals.
492 if (OperandList[operandIndex].Constraints.size()) {
494 OperandList[operandIndex].Constraints[0];
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 165 SmallVector<BitCodeAbbrevOp, 32> OperandList;
175 return static_cast<unsigned>(OperandList.size());
178 return OperandList[N];
182 OperandList.push_back(OpInfo);
  /external/llvm/lib/IR/
User.cpp 64 Obj->OperandList = Start;
Instructions.cpp 151 OperandList = allocHungoffUses(ReservedSpace);
198 Use *OL = OperandList, *InOL = LP.OperandList;
229 OperandList = allocHungoffUses(ReservedSpace);
230 OperandList[0] = PersFn;
243 Use *OldOps = OperandList;
247 OperandList = NewOps;
256 OperandList[OpNo] = Val;
    [all...]
Constants.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 344 /// OperandsNeedDelete - This is true if OperandList was new[]'d. If true,
362 /// OperandList - The values that are used by this operation.
364 SDUse *OperandList;
521 return (unsigned)(Op - Op->getUser()->OperandList);
594 return OperandList[Num];
598 op_iterator op_begin() const { return OperandList; }
599 op_iterator op_end() const { return OperandList+NumOperands; }
745 OperandList(Ops.size() ? new SDUse[Ops.size()] : nullptr),
750 OperandList[i].setUser(this);
751 OperandList[i].setInitial(Ops[i])
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 691 delete[] N->OperandList;
    [all...]

Completed in 241 milliseconds