Home
last modified time | relevance | path

Searched refs:NumValues (Results 1 – 22 of 22) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h339 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 DMCObjectStreamer.h180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
H A DMCStreamer.h802 /// 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 DBTFDebug.h106 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 DRecord.h748 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 DAsmParser.cpp3337 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 DMCObjectStreamer.cpp751 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 DMCAssembler.cpp260 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 DWasmObjectWriter.cpp731 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 DMCAsmStreamer.cpp270 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 DMCStreamer.cpp1230 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 DSelectionDAGBuilder.cpp2209 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 DSelectionDAG.cpp10744 N->NumValues = VTs.NumVTs; in transferDbgValues()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h637 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 DCallLowering.cpp1003 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 DTargetLoweringBase.cpp1644 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 DOpenMPOpt.cpp873 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 DHexagonISelLoweringHVX.cpp808 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 DSTLExtras.h2241 // `NumValues` includes the index.
2242 static constexpr std::size_t NumValues = NumRefs + 1;
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1541 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 DRecord.cpp716 assert(i < NumValues && "List element index out of range!"); in getElementAsRecord()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1185 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