Searched refs:OperandList (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitCodes.h168 SmallVector<BitCodeAbbrevOp, 32> OperandList; member in class:llvm::BitCodeAbbrev
173 explicit BitCodeAbbrev(std::initializer_list<BitCodeAbbrevOp> OperandList) argument
174 : OperandList(OperandList) {}
177 return static_cast<unsigned>(OperandList.size());
180 return OperandList[N];
184 OperandList.push_back(OpInfo);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.h101 /// OperandList may not match the MachineInstr operand num. Until it
140 Record *TheDef; // The actual record containing this OperandList.
147 /// OperandList - The list of declared operands, along with their declared
149 std::vector<OperandInfo> OperandList; member in class:llvm::CGIOperandList
157 bool empty() const { return OperandList.empty(); }
158 unsigned size() const { return OperandList.size(); }
159 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
160 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
161 OperandInfo &back() { return OperandList.back(); }
162 const OperandInfo &back() const { return OperandList
[all...]
H A DWebAssemblyDisassemblerEmitter.cpp111 OS << CGI.Operands.OperandList.size() << ", ";
114 for (auto &Op : CGI.Operands.OperandList) {
H A DCodeGenInstruction.cpp58 OperandList.reserve(e);
136 OperandList.emplace_back(
148 for (OperandInfo &OpInfo : OperandList)
171 for (unsigned i = 0, e = OperandList.size(); i != e; ++i)
172 if (OperandList[i].Name == Name) {
203 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp &&
216 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo;
357 if (Op.second >= OperandList[Op.first].DoNotEncode.size())
358 OperandList[Op.first].DoNotEncode.resize(Op.second+1);
359 OperandList[O
[all...]
H A DX86DisassemblerTables.cpp824 OperandListTy OperandList;
832 OperandList.push_back(std::make_pair(Encoding, Type));
834 unsigned &N = OperandSets[OperandList];
840 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) {
841 const char *Encoding = stringForOperandEncoding(OperandList[i].first);
842 const char *Type = stringForOperandType(OperandList[i].second);
858 OperandListTy OperandList;
865 OperandList.push_back(std::make_pair(Encoding, Type));
867 o.indent(i * 2) << (OperandSets[OperandList] - 1) << ",\n";
H A DInstrInfoEmitter.cpp116 std::vector<CGIOperandList::OperandInfo> OperandList; local
126 OperandList.push_back(Op);
129 OperandList.push_back(Op);
132 OperandList.back().Rec = OpR;
136 for (unsigned j = 0, e = OperandList.size(); j != e; ++j) {
137 Record *OpR = OperandList[j].Rec;
H A DX86RecognizableInstr.cpp99 Operands = &insn.Operands.OperandList;
405 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands;
407 unsigned numOperands = OperandList.size();
410 // operandMapping maps from operands in OperandList to their originals.
416 if (!OperandList[operandIndex].Constraints.empty()) {
418 OperandList[operandIndex].Constraints[0];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp2648 Use *OperandList = getOperandList(); local
2650 OperandList[i+1] = IdxList[i];
3134 Use *OperandList = getOperandList(); local
3136 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
3139 OperandNo = (O - OperandList);
3166 Use *OperandList = getOperandList(); local
3176 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) {
3179 OperandNo = (O - OperandList);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h611 SDUse *OperandList = nullptr; member in class:llvm::SDNode
803 return (unsigned)(Op - Op->getUser()->OperandList);
931 return OperandList[Num];
936 op_iterator op_begin() const { return OperandList; }
937 op_iterator op_end() const { return OperandList+NumOperands; }
1254 OperandList = &Op;
H A DSelectionDAG.h388 if (!Node->OperandList)
392 Node->OperandList);
394 Node->OperandList = nullptr;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3155 SmallVector<const Value *, 32> OperandList;
3156 llvm::copy(FilteredPhiArgs, std::back_inserter(OperandList));
3157 bool Okay = is_splat(OperandList);
3159 return singleReachablePHIPath(Visited, cast<MemoryAccess>(OperandList[0]),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7778 N->OperandList[0].set(Op);
7804 if (N->OperandList[0] != Op1)
7805 N->OperandList[0].set(Op1);
7806 if (N->OperandList[1] != Op2)
7807 N->OperandList[1].set(Op2);
7857 if (N->OperandList[i] != Ops[i])
7858 N->OperandList[i].set(Ops[i]);
9906 assert(!Node->OperandList && "Node already has operands");
9920 Node->OperandList = Ops;

Completed in 349 milliseconds