Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h339 const MCExpr &NumValues; variable
345 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, in MCFillFragment() argument
348 NumValues(NumValues), Loc(Loc) {} in MCFillFragment()
352 const MCExpr &getNumValues() const { return NumValues; } in getNumValues()
H A DMCObjectStreamer.h180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
H A DMCStreamer.h810 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
/freebsd/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/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/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3337 const MCExpr *NumValues; in parseDirectiveFill() local
3338 if (checkForValidSection() || parseExpression(NumValues)) in parseDirectiveFill()
3371 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4903 int64_t NumValues; in parseDirectiveDCB() local
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 parseDirectiveDCB()
4929 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDCB()
4940 int64_t NumValues; in parseDirectiveRealDCB() local
4941 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveRealDCB()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp751 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() argument
755 if (NumValues.evaluateAsAbsolute(IntNumValues, getAssemblerPtr())) { in emitFill()
776 getContext().allocFragment<MCFillFragment>(Expr, Size, NumValues, Loc)); in emitFill()
H A DMCAssembler.cpp260 int64_t NumValues = 0; in computeFragmentSize() local
261 if (!FF.getNumValues().evaluateKnownAbsolute(NumValues, *this)) { in computeFragmentSize()
266 int64_t Size = NumValues * FF.getValueSize(); in computeFragmentSize()
H A DWasmObjectWriter.cpp731 int64_t NumValues; in addData() local
732 if (!Fill->getNumValues().evaluateAsAbsolute(NumValues)) in addData()
734 DataBytes.insert(DataBytes.end(), Fill->getValueSize() * NumValues, in addData()
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 emitFill() argument
1491 NumValues.print(OS, MAI); in emitFill()
H A DMCStreamer.cpp1230 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() argument
/freebsd/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 &&
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2207 unsigned NumValues = ValueVTs.size(); in visitRet() local
2209 SmallVector<SDValue, 4> Chains(NumValues); in visitRet()
2211 for (unsigned i = 0; i != NumValues; ++i) { in visitRet()
2232 unsigned NumValues = ValueVTs.size(); in visitRet() local
2233 if (NumValues) { in visitRet()
2251 for (unsigned j = 0; j != NumValues; ++j) { in visitRet()
2279 if (j == NumValues - 1) in visitRet()
3692 unsigned NumValues = ValueVTs.size(); in visitSelect() local
3693 if (NumValues == 0) return; in visitSelect()
3695 SmallVector<SDValue, 4> Values(NumValues); in visitSelect()
[all …]
H A DSelectionDAG.cpp10744 N->NumValues = VTs.NumVTs; in MorphNodeTo()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp1003 unsigned NumValues = SplitVTs.size(); in insertSRetLoads() local
1011 for (unsigned I = 0; I < NumValues; ++I) { in insertSRetLoads()
1034 unsigned NumValues = SplitVTs.size(); in insertSRetStores() local
1041 for (unsigned I = 0; I < NumValues; ++I) { in insertSRetStores()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1644 unsigned NumValues = ValueVTs.size(); in GetReturnInfo() local
1645 if (NumValues == 0) return; in GetReturnInfo()
1647 for (unsigned j = 0, f = NumValues; j != f; ++j) { in GetReturnInfo()
/freebsd/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/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/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h2242 static constexpr std::size_t NumValues = NumRefs + 1;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1541 size_t NumValues = PN->getNumIncomingValues(); in runOnFunction() local
1542 for (size_t v = 0; v < NumValues; v++) { in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp716 assert(i < NumValues && "List element index out of range!"); in getElementAsRecord()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1185 for (unsigned Value = 0, NumValues = ValueVTs.size(); in analyzeFormalArgumentsCompute() local
1186 Value != NumValues; ++Value) { in analyzeFormalArgumentsCompute()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp22120 for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues; in constructArgInfos() local