| /llvm-project/llvm/tools/llvm-exegesis/lib/ |
| H A D | BenchmarkResult.h | 174 assert(NumValues); in avg() 175 return SumValues / NumValues; in avg() 185 int NumValues = 0; variable
|
| H A D | BenchmarkRunner.cpp | 69 const size_t NumValues = std::max(NewValues.size(), Result->size()); in accumulateCounterValues() local 70 if (NumValues > Result->size()) in accumulateCounterValues() 71 Result->resize(NumValues, 0); in accumulateCounterValues() 121 const size_t NumValues = std::max(NewValues.size(), Result->size()); in accumulateCounterValues() 122 if (NumValues > Result->size()) in accumulateCounterValues() 123 Result->resize(NumValues, 0); in accumulateCounterValues() 120 const size_t NumValues = std::max(NewValues.size(), Result->size()); accumulateCounterValues() local
|
| H A D | BenchmarkResult.cpp | 422 ++NumValues; in readYamlFrom()
|
| /llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 303 const MCExpr &NumValues; 309 MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, in MCAlignFragment() 312 NumValues(NumValues), Loc(Loc) {} 316 const MCExpr &getNumValues() const { return NumValues; } 339 const MCExpr &NumValues; global() variable 345 MCFillFragment(uint64_t Value,uint8_t VSize,const MCExpr & NumValues,SMLoc Loc) MCFillFragment() argument
|
| H A D | MCObjectStreamer.h | 181 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
| H A D | MCStreamer.h | 812 /// Emit \p NumValues copies of \p Size bytes. Each \p Size bytes is 817 /// \param NumValues - The number of copies of \p Size bytes to emit. 820 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
| /llvm-project/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptStmt.cpp | 203 size_t NumValues = Values.size(); in log() local 204 for (size_t Id = 0; Id < NumValues; ++Id) { in log()
|
| /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);
|
| /llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 760 unsigned NumValues; 767 : TypedInit(IK_ListInit, ListRecTy::get(EltTy)), NumValues(N) {} 784 assert(i < NumValues && "List element index out of range!"); 807 return ArrayRef(getTrailingObjects<const Init *>(), NumValues); 811 const_iterator end () const { return begin() + NumValues; } 813 size_t size () const { return NumValues; } in OpInit() 814 bool empty() const { return NumValues == 0; } in OpInit() 748 unsigned NumValues; global() variable
|
| /llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 3355 const MCExpr *NumValues; in parseDirectiveFill() 3356 if (checkForValidSection() || parseExpression(NumValues)) in parseDirectiveFill() 3389 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveAlign() 4944 int64_t NumValues; in parseDirectiveRealDCB() 4945 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveRealDCB() 4948 if (NumValues < 0) { in parseDirectiveRealDCB() 4967 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDS() 4970 for (uint64_t i = 0, e = NumValues; i != e; ++i) in parseDirectiveDS() 4981 int64_t NumValues; in parseDirectiveLEB128() 4982 if (checkForValidSection() || parseAbsoluteExpression(NumValues)) in parseDirectiveLEB128() 3328 const MCExpr *NumValues; parseDirectiveFill() local 4894 int64_t NumValues; parseDirectiveDCB() local 4931 int64_t NumValues; parseDirectiveRealDCB() local 4958 int64_t NumValues; parseDirectiveDS() local [all...] |
| /llvm-project/llvm/lib/MC/ |
| H A D | MCObjectStreamer.cpp | 755 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() 759 if (NumValues.evaluateAsAbsolute(IntNumValues, getAssemblerPtr())) { in emitFill() 780 getContext().allocFragment<MCFillFragment>(Expr, Size, NumValues, Loc)); in emitNops() 751 emitFill(const MCExpr & NumValues,int64_t Size,int64_t Expr,SMLoc Loc) emitFill() argument
|
| H A D | MCAssembler.cpp | 249 int64_t NumValues = 0; in evaluateFixup() 250 if (!FF.getNumValues().evaluateKnownAbsolute(NumValues, *this)) { in evaluateFixup() 255 int64_t Size = NumValues * FF.getValueSize(); in evaluateFixup() 276 int64_t NumValues = 0; computeFragmentSize() local
|
| 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 | 275 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, 1518 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitAlignmentDirective() 1522 NumValues.print(OS, MAI); in emitAlignmentDirective() 1471 emitFill(const MCExpr & NumValues,int64_t Size,int64_t Expr,SMLoc Loc) emitFill() argument
|
| H A D | MCStreamer.cpp | 1274 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in switchSection() 1230 emitFill(const MCExpr & NumValues,int64_t Size,int64_t Expr,SMLoc Loc) emitFill() argument
|
| /llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 656 unsigned short NumValues; 1021 SDVTList X = { ValueList, NumValues }; 1059 unsigned getNumValues() const { return NumValues; } 1063 assert(ResNo < NumValues && "Illegal result number!"); 1084 value_iterator value_end() const { return ValueList+NumValues; } 1161 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs), 1165 assert(NumValues == VTs.NumVTs && 1166 "NumValues wasn't wide enough for its operands!");
|
| /llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 2211 unsigned NumValues = ValueVTs.size(); in visitRet() 2213 SmallVector<SDValue, 4> Chains(NumValues); in visitRet() 2215 for (unsigned i = 0; i != NumValues; ++i) { in visitRet() 2236 unsigned NumValues = ValueVTs.size(); in visitRet() 2237 if (NumValues) { in visitRet() 2255 for (unsigned j = 0; j != NumValues; ++j) { in visitRet() 2283 if (j == NumValues - 1) in visitRet() 3700 unsigned NumValues = ValueVTs.size(); in visitSelect() 3701 if (NumValues == 0) return; in visitSelect() 3703 SmallVector<SDValue, 4> Values(NumValues); in visitSelect() 2207 unsigned NumValues = ValueVTs.size(); visitRet() local 2232 unsigned NumValues = ValueVTs.size(); visitRet() local 3692 unsigned NumValues = ValueVTs.size(); visitSelect() local 4537 unsigned NumValues = ValueVTs.size(); visitLoad() local 4705 unsigned NumValues = ValueVTs.size(); visitStore() local 10871 for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues; LowerCallTo() local 11068 unsigned NumValues = RetTys.size(); LowerCallTo() local 11423 for (unsigned Value = 0, NumValues = ValueVTs.size(); LowerArguments() local 11613 unsigned NumValues = ValueVTs.size(); LowerArguments() local 12432 unsigned NumValues = ValueVTs.size(); visitFreeze() local [all...] |
| /llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CallLowering.cpp | 1002 unsigned NumValues = SplitVTs.size(); in insertSRetLoads() 1010 for (unsigned I = 0; I < NumValues; ++I) { in insertSRetLoads() 1033 unsigned NumValues = SplitVTs.size(); in insertSRetStores() 1040 for (unsigned I = 0; I < NumValues; ++I) { in insertSRetStores() 995 unsigned NumValues = SplitVTs.size(); insertSRetLoads() local 1026 unsigned NumValues = SplitVTs.size(); insertSRetStores() local
|
| /llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 1667 unsigned NumValues = ValueVTs.size(); in computeRegisterProperties() 1668 if (NumValues == 0) return; in computeRegisterProperties() 1670 for (unsigned j = 0, f = NumValues; j != f; ++j) { in computeRegisterProperties() 1833 unsigned NumValues = ValueVTs.size(); GetReturnInfo() local
|
| /llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | OpenMPOpt.cpp | 887 const uint64_t NumValues = Array.getAllocatedType()->getArrayNumElements(); in getValues() 888 StoredValues.assign(NumValues, nullptr); in getValues() 889 LastAccesses.assign(NumValues, nullptr); in getValues() 924 const unsigned NumValues = StoredValues.size(); 925 for (unsigned I = 0; I < NumValues; ++I) { in OpenMPOpt() 873 const uint64_t NumValues = Array.getAllocatedType()->getArrayNumElements(); getValues() local 910 const unsigned NumValues = StoredValues.size(); isFilled() local
|
| /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()
|
| /llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 2283 // `NumValues` includes the index. 2284 static constexpr std::size_t NumValues = NumRefs + 1;
|
| /llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 1566 size_t NumValues = PN->getNumIncomingValues(); in runOnFunction() 1567 for (size_t v = 0; v < NumValues; v++) { in runOnFunction() 1540 size_t NumValues = PN->getNumIncomingValues(); runOnFunction() local
|
| /llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 754 assert(i < NumValues && "List element index out of range!");
|
| /llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelLowering.cpp | 1235 for (unsigned Value = 0, NumValues = ValueVTs.size(); in analyzeFormalArgumentsCompute() 1236 Value != NumValues; ++Value) { in analyzeFormalArgumentsCompute() 1191 for (unsigned Value = 0, NumValues = ValueVTs.size(); analyzeFormalArgumentsCompute() local
|