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 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 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;
280 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
281 OperandList[Op.first].DoNotEncode.resize(Op.second+1)
    [all...]
X86DisassemblerTables.cpp 454 OperandListTy OperandList;
464 OperandList.push_back(std::make_pair(Encoding, Type));
466 unsigned &N = OperandSets[OperandList];
472 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) {
473 o << " { " << OperandList[i].first << ", "
474 << OperandList[i].second << " },\n";
497 OperandListTy OperandList;
506 OperandList.push_back(std::make_pair(Encoding, Type));
508 o.indent(i * 2) << (OperandSets[OperandList] - 1) << ",\n";
InstrInfoEmitter.cpp 79 std::vector<CGIOperandList::OperandInfo> OperandList;
89 OperandList.push_back(Inst.Operands[i]);
92 OperandList.push_back(Inst.Operands[i]);
95 OperandList.back().Rec = OpR;
99 for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
100 Record *OpR = OperandList[j].Rec;
X86RecognizableInstr.cpp 242 Operands = &insn.Operands.OperandList;
470 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
471 unsigned numOperands = OperandList.size();
474 const std::string &recName = OperandList[operandIndex].Rec->getName();
535 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
537 unsigned numOperands = OperandList.size();
540 // operandMapping maps from operands in OperandList to their originals.
546 if (OperandList[operandIndex].Constraints.size()) {
548 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 318 /// OperandsNeedDelete - This is true if OperandList was new[]'d. If true,
336 /// OperandList - The values that are used by this operation.
338 SDUse *OperandList;
480 return (unsigned)(Op - Op->getUser()->OperandList);
545 return OperandList[Num];
549 op_iterator op_begin() const { return OperandList; }
550 op_iterator op_end() const { return OperandList+NumOperands; }
694 OperandList(NumOps ? new SDUse[NumOps] : 0),
699 OperandList[i].setUser(this);
700 OperandList[i].setInitial(Ops[i])
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 631 delete[] N->OperandList;
    [all...]

Completed in 942 milliseconds