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

  /external/llvm/include/llvm/
User.h 40 /// OperandList - This is a pointer to the array of Uses for this User.
45 Use *OperandList;
53 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
56 Use::zap(OperandList, OperandList + NumOperands, true);
57 OperandList = 0;
63 Use::zap(OperandList, OperandList + NumOperands);
90 return OperandList[i];
97 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 116 OperandList.push_back(OperandInfo(Rec, ArgName, PrintMethod, EncoderMethod,
125 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
126 OperandList[i].Constraints.resize(OperandList[i].MINumOperands);
146 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
147 if (OperandList[i].Name == Name) {
175 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
185 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo;
279 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
280 OperandList[Op.first].DoNotEncode.resize(Op.second+1)
    [all...]
InstrInfoEmitter.cpp 60 std::vector<CGIOperandList::OperandInfo> OperandList;
70 OperandList.push_back(Inst.Operands[i]);
73 OperandList.push_back(Inst.Operands[i]);
76 OperandList.back().Rec = OpR;
80 for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
81 Record *OpR = OperandList[j].Rec;
X86RecognizableInstr.cpp 242 Operands = &insn.Operands.OperandList;
485 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
486 unsigned numOperands = OperandList.size();
489 const std::string &recName = OperandList[operandIndex].Rec->getName();
498 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
499 unsigned numOperands = OperandList.size();
502 const std::string &recName = OperandList[operandIndex].Rec->getName();
564 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
567 unsigned numOperands = OperandList.size();
570 // operandMapping maps from operands in OperandList to their originals
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 164 SmallVector<BitCodeAbbrevOp, 32> OperandList;
174 return static_cast<unsigned>(OperandList.size());
177 return OperandList[N];
181 OperandList.push_back(OpInfo);
  /external/llvm/lib/VMCore/
User.cpp 63 Obj->OperandList = Start;
Instructions.cpp 150 OperandList = allocHungoffUses(ReservedSpace);
191 Use *OL = OperandList, *InOL = LP.OperandList;
222 OperandList = allocHungoffUses(ReservedSpace);
223 OperandList[0] = PersFn;
236 Use *OldOps = OperandList;
240 OperandList = NewOps;
249 OperandList[OpNo] = Val;
    [all...]
Constants.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 308 /// OperandsNeedDelete - This is true if OperandList was new[]'d. If true,
326 /// OperandList - The values that are used by this operation.
328 SDUse *OperandList;
470 return (unsigned)(Op - Op->getUser()->OperandList);
535 return OperandList[Num];
539 op_iterator op_begin() const { return OperandList; }
540 op_iterator op_end() const { return OperandList+NumOperands; }
681 OperandList(NumOps ? new SDUse[NumOps] : 0),
686 OperandList[i].setUser(this);
687 OperandList[i].setInitial(Ops[i])
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 609 delete[] N->OperandList;
    [all...]

Completed in 228 milliseconds