| /freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 339 const MCExpr &NumValues; 345 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, 348 NumValues(NumValues), Loc(Loc) {} 352 const MCExpr &getNumValues() const { return NumValues; } variable
|
| H A D | MCObjectStreamer.h | 180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
| H A D | MCStreamer.h | 802 /// Emit \p NumValues copies of \p Size bytes. Each \p Size bytes is 807 /// \param NumValues - The number of copies of \p Size bytes to emit. 810 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BTFDebug.h | 106 BTFTypeEnum(const DICompositeType *ETy, uint32_t NumValues, bool IsSigned); 227 BTFTypeEnum64(const DICompositeType *ETy, uint32_t NumValues, bool IsSigned);
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 748 unsigned NumValues; variable 755 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} in ListInit() 772 assert(i < NumValues && "List element index out of range!"); in getElement() 795 return ArrayRef(getTrailingObjects<Init *>(), NumValues); in getValues() 799 const_iterator end () const { return begin() + NumValues; } in end() 801 size_t size () const { return NumValues; } in size() 802 bool empty() const { return NumValues == 0; } in empty()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 3337 const MCExpr *NumValues; in parseDirectiveFill() 3338 if (checkForValidSection() || parseExpression(NumValues)) in parseDirectiveFill() 3371 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill() 4903 int64_t NumValues; in parseDirectiveDCB() 4904 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveDCB() 4907 if (NumValues < 0) { in parseDirectiveDCB() 4926 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveRealDCB() 4929 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveRealDCB() 4940 int64_t NumValues; in parseDirectiveRealDCB() 4941 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveRealDCB() 3335 const MCExpr *NumValues; parseDirectiveFill() local 4888 int64_t NumValues; parseDirectiveDCB() local 4925 int64_t NumValues; parseDirectiveRealDCB() local 4952 int64_t NumValues; parseDirectiveDS() local [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCObjectStreamer.cpp | 751 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in getOffsetAndDataFragment() 755 if (NumValues.evaluateAsAbsolute(IntNumValues, getAssemblerPtr())) { in getOffsetAndDataFragment() 776 getContext().allocFragment<MCFillFragment>(Expr, Size, NumValues, Loc)); in getOffsetAndDataFragment() 855 emitFill(const MCExpr & NumValues,int64_t Size,int64_t Expr,SMLoc Loc) emitFill() argument
|
| H A D | MCAssembler.cpp | 260 int64_t NumValues = 0; in evaluateFixup() 261 if (!FF.getNumValues().evaluateKnownAbsolute(NumValues, *this)) { in evaluateFixup() 266 int64_t Size = NumValues * FF.getValueSize(); in evaluateFixup() 313 int64_t NumValues = 0; computeFragmentSize() local
|
| H A D | WasmObjectWriter.cpp | 731 int64_t NumValues; in addData() 732 if (!Fill->getNumValues().evaluateAsAbsolute(NumValues)) in addData() 734 DataBytes.insert(DataBytes.end(), Fill->getValueSize() * NumValues, in addData() 736 int64_t NumValues; addData() local
|
| H A D | MCAsmStreamer.cpp | 270 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, 1487 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitAlignmentDirective() 1491 NumValues.print(OS, MAI); in emitAlignmentDirective() 1472 emitFill(const MCExpr & NumValues,int64_t Size,int64_t Expr,SMLoc Loc) emitFill() argument
|
| H A D | MCStreamer.cpp | 1230 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() argument
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 2209 unsigned NumValues = ValueVTs.size(); in visitRet() 2211 SmallVector<SDValue, 4> Chains(NumValues); in visitRet() 2213 for (unsigned i = 0; i != NumValues; ++i) { in visitRet() 2234 unsigned NumValues = ValueVTs.size(); in visitRet() 2235 if (NumValues) { in visitRet() 2253 for (unsigned j = 0; j != NumValues; ++j) { in visitRet() 2281 if (j == NumValues - 1) in visitRet() 3694 unsigned NumValues = ValueVTs.size(); in visitFPToUI() 3695 if (NumValues == 0) return; in visitFPToUI() 3697 SmallVector<SDValue, 4> Values(NumValues); in visitFPToUI() 2168 unsigned NumValues = ValueVTs.size(); visitRet() local 2193 unsigned NumValues = ValueVTs.size(); visitRet() local 3505 unsigned NumValues = ValueVTs.size(); visitSelect() local 4335 unsigned NumValues = ValueVTs.size(); visitLoad() local 4503 unsigned NumValues = ValueVTs.size(); visitStore() local 10414 for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues; LowerCallTo() local 10611 unsigned NumValues = RetTys.size(); LowerCallTo() local 10966 for (unsigned Value = 0, NumValues = ValueVTs.size(); LowerArguments() local 11156 unsigned NumValues = ValueVTs.size(); LowerArguments() local 11975 unsigned NumValues = ValueVTs.size(); visitFreeze() local [all...] |
| H A D | SelectionDAG.cpp | 10744 N->NumValues = VTs.NumVTs; in transferDbgValues()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 637 unsigned short NumValues; 988 SDVTList X = { ValueList, NumValues }; 1028 unsigned getNumValues() const { return NumValues; } 1032 assert(ResNo < NumValues && "Illegal result number!"); 1053 value_iterator value_end() const { return ValueList+NumValues; } 1130 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs), 1134 assert(NumValues == VTs.NumVTs && 1135 "NumValues wasn't wide enough for its operands!");
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CallLowering.cpp | 1003 unsigned NumValues = SplitVTs.size(); in getReturnInfo() 1011 for (unsigned I = 0; I < NumValues; ++I) { in getReturnInfo() 1034 unsigned NumValues = SplitVTs.size(); in parametersInCSRMatch() 1041 for (unsigned I = 0; I < NumValues; ++I) { in parametersInCSRMatch() 888 unsigned NumValues = SplitVTs.size(); insertSRetLoads() local 919 unsigned NumValues = SplitVTs.size(); insertSRetStores() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 1644 unsigned NumValues = ValueVTs.size(); in getVectorTypeBreakdown() 1645 if (NumValues == 0) return; in getVectorTypeBreakdown() 1647 for (unsigned j = 0, f = NumValues; j != f; ++j) { in getVectorTypeBreakdown() 1724 unsigned NumValues = ValueVTs.size(); GetReturnInfo() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | OpenMPOpt.cpp | 873 const uint64_t NumValues = Array.getAllocatedType()->getArrayNumElements(); in getValues() local 874 StoredValues.assign(NumValues, nullptr); in getValues() 875 LastAccesses.assign(NumValues, nullptr); in getValues() 910 const unsigned NumValues = StoredValues.size(); in isFilled() local 911 for (unsigned I = 0; I < NumValues; ++I) { in isFilled()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelLoweringHVX.cpp | 808 unsigned NumValues = Values.size(); in buildHvxVectorReg() local 809 assert(NumValues > 0); in buildHvxVectorReg() 811 for (unsigned i = 0; i != NumValues; ++i) { in buildHvxVectorReg()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 2241 // `NumValues` includes the index. 2242 static constexpr std::size_t NumValues = NumRefs + 1;
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 1541 size_t NumValues = PN->getNumIncomingValues(); in runOnFunction() 1542 for (size_t v = 0; v < NumValues; v++) { in runOnFunction() 1524 size_t NumValues = PN->getNumIncomingValues(); runOnFunction() local
|
| /freebsd-src/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 716 assert(i < NumValues && "List element index out of range!"); in getElementAsRecord()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelLowering.cpp | 1185 for (unsigned Value = 0, NumValues = ValueVTs.size(); in analyzeFormalArgumentsCompute() 1186 Value != NumValues; ++Value) { in analyzeFormalArgumentsCompute() 1144 for (unsigned Value = 0, NumValues = ValueVTs.size(); analyzeFormalArgumentsCompute() local
|