| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenInstruction.h | 149 std::vector<OperandInfo> OperandList; variable 157 bool empty() const { return OperandList.empty(); } in empty() 158 unsigned size() const { return OperandList.size(); } in size() 161 OperandInfo &back() { return OperandList.back(); } in back() 166 iterator begin() { return OperandList.begin(); } in begin() 168 iterator end() { return OperandList.end(); } in end() 169 const_iterator end() const { return OperandList.end(); } in end() 191 return OperandList[Op.first].MIOperandNo + Op.second; in getFlattenedOperandNumber() 199 if (OperandList[i].MIOperandNo+OperandList[i].MINumOperands > Op) in getSubOperandNumber() 209 if (OperandList[Op.first].DoNotEncode.size() > Op.second) in isFlatOperandNotEmitted() [all …]
|
| H A D | CodeGenInstruction.cpp | 58 OperandList.reserve(e); in CGIOperandList() 136 OperandList.emplace_back( in CGIOperandList() 148 for (OperandInfo &OpInfo : OperandList) in CGIOperandList() 171 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) in hasOperandNamed() 172 if (OperandList[i].Name == Name) { in hasOperandNamed() 203 if (OperandList[OpIdx].MINumOperands > 1 && !AllowWholeOp && in ParseOperandName() 216 DagInit *MIOpInfo = OperandList[OpIdx].MIOperandInfo; in ParseOperandName() 354 if (Op.second >= OperandList[Op.first].DoNotEncode.size()) in ProcessDisableEncoding() 355 OperandList[Op.first].DoNotEncode.resize(Op.second+1); in ProcessDisableEncoding() 356 OperandList[Op.first].DoNotEncode[Op.second] = true; in ProcessDisableEncoding()
|
| H A D | WebAssemblyDisassemblerEmitter.cpp | 117 OS << CGI.Operands.OperandList.size() << ", "; in emitWebAssemblyDisassemblerTables() 120 for (auto &Op : CGI.Operands.OperandList) { in emitWebAssemblyDisassemblerTables()
|
| H A D | X86DisassemblerTables.cpp | 831 OperandListTy OperandList; in emitInstructionInfo() local 836 OperandList.push_back(std::make_pair(Encoding, Type)); in emitInstructionInfo() 838 unsigned &N = OperandSets[OperandList]; in emitInstructionInfo() 844 for (unsigned i = 0, e = OperandList.size(); i != e; ++i) { in emitInstructionInfo() 845 const char *Encoding = stringForOperandEncoding(OperandList[i].first); in emitInstructionInfo() 846 const char *Type = stringForOperandType(OperandList[i].second); in emitInstructionInfo() 862 OperandListTy OperandList; in emitInstructionInfo() local 866 OperandList.push_back(std::make_pair(Encoding, Type)); in emitInstructionInfo() 868 o.indent(i * 2) << (OperandSets[OperandList] - 1) << ",\n"; in emitInstructionInfo()
|
| H A D | InstrInfoEmitter.cpp | 125 std::vector<CGIOperandList::OperandInfo> OperandList; in GetOperandInfo() local 135 OperandList.push_back(Op); in GetOperandInfo() 138 OperandList.push_back(Op); in GetOperandInfo() 141 OperandList.back().Rec = OpR; in GetOperandInfo() 145 for (unsigned j = 0, e = OperandList.size(); j != e; ++j) { in GetOperandInfo() 146 Record *OpR = OperandList[j].Rec; in GetOperandInfo()
|
| H A D | X86RecognizableInstr.cpp | 99 Operands = &insn.Operands.OperandList; in RecognizableInstr() 404 const std::vector<CGIOperandList::OperandInfo> &OperandList = *Operands; in emitInstructionSpecifier() local 406 unsigned numOperands = OperandList.size(); in emitInstructionSpecifier() 415 if (!OperandList[operandIndex].Constraints.empty()) { in emitInstructionSpecifier() 417 OperandList[operandIndex].Constraints[0]; in emitInstructionSpecifier()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
| H A D | BitCodes.h | 163 SmallVector<BitCodeAbbrevOp, 32> OperandList; variable 168 explicit BitCodeAbbrev(std::initializer_list<BitCodeAbbrevOp> OperandList) in BitCodeAbbrev() argument 169 : OperandList(OperandList) {} in BitCodeAbbrev() 172 return static_cast<unsigned>(OperandList.size()); in getNumOperandInfos() 175 return OperandList[N]; in getOperandInfo() 179 OperandList.push_back(OpInfo); in Add()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 580 SDUse *OperandList = nullptr; 770 return (unsigned)(Op - Op->getUser()->OperandList); 898 return OperandList[Num]; 903 op_iterator op_begin() const { return OperandList; } 904 op_iterator op_end() const { return OperandList+NumOperands; } 1221 OperandList = &Op;
|
| H A D | SelectionDAG.h | 404 if (!Node->OperandList) 408 Node->OperandList); 410 Node->OperandList = nullptr;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Constants.cpp | 2881 Use *OperandList = getOperandList(); in GetElementPtrConstantExpr() local 2883 OperandList[i+1] = IdxList[i]; in GetElementPtrConstantExpr() 3369 Use *OperandList = getOperandList(); in handleOperandChangeImpl() local 3371 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) { in handleOperandChangeImpl() 3374 OperandNo = (O - OperandList); in handleOperandChangeImpl() 3401 Use *OperandList = getOperandList(); in handleOperandChangeImpl() local 3411 for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) { in handleOperandChangeImpl() 3414 OperandNo = (O - OperandList); in handleOperandChangeImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 3135 SmallVector<const Value *, 32> OperandList; in singleReachablePHIPath() local 3136 llvm::copy(FilteredPhiArgs, std::back_inserter(OperandList)); in singleReachablePHIPath() 3137 bool Okay = is_splat(OperandList); in singleReachablePHIPath() 3139 return singleReachablePHIPath(Visited, cast<MemoryAccess>(OperandList[0]), in singleReachablePHIPath()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 8254 N->OperandList[0].set(Op); in UpdateNodeOperands() 8280 if (N->OperandList[0] != Op1) in UpdateNodeOperands() 8281 N->OperandList[0].set(Op1); in UpdateNodeOperands() 8282 if (N->OperandList[1] != Op2) in UpdateNodeOperands() 8283 N->OperandList[1].set(Op2); in UpdateNodeOperands() 8333 if (N->OperandList[i] != Ops[i]) in UpdateNodeOperands() 8334 N->OperandList[i].set(Ops[i]); in UpdateNodeOperands() 10548 assert(!Node->OperandList && "Node already has operands"); in createOperands() 10562 Node->OperandList = Ops; in createOperands()
|