/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCFragment.h | 339 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 D | MCObjectStreamer.h | 180 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
H A D | MCStreamer.h | 810 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
/freebsd/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/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/contrib/llvm-project/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 3337 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 D | MCObjectStreamer.cpp | 751 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 D | MCAssembler.cpp | 260 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 D | WasmObjectWriter.cpp | 731 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 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 emitFill() argument 1491 NumValues.print(OS, MAI); in emitFill()
|
H A D | MCStreamer.cpp | 1230 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 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 &&
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 2207 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 D | SelectionDAG.cpp | 10744 N->NumValues = VTs.NumVTs; in MorphNodeTo()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | CallLowering.cpp | 1003 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 D | TargetLoweringBase.cpp | 1644 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 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/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/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 2242 static constexpr std::size_t NumValues = NumRefs + 1;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 1541 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 D | Record.cpp | 716 assert(i < NumValues && "List element index out of range!"); in getElementAsRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUISelLowering.cpp | 1185 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 D | RISCVISelLowering.cpp | 22120 for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues; in constructArgInfos() local
|