Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DIndirectCallPromotionAnalysis.cpp63 const Instruction *Inst, uint32_t NumVals, uint64_t TotalCount) { in getProfitablePromotionCandidates() argument
64 ArrayRef<InstrProfValueData> ValueDataRef(ValueDataArray.get(), NumVals); in getProfitablePromotionCandidates()
67 << " Num_targets: " << NumVals << "\n"); in getProfitablePromotionCandidates()
71 for (; I < MaxNumPromotions && I < NumVals; I++) { in getProfitablePromotionCandidates()
88 const Instruction *I, uint32_t &NumVals, uint64_t &TotalCount, in getPromotionCandidatesForInstruction() argument
92 ValueDataArray.get(), NumVals, TotalCount); in getPromotionCandidatesForInstruction()
97 NumCandidates = getProfitablePromotionCandidates(I, NumVals, TotalCount); in getPromotionCandidatesForInstruction()
98 return ArrayRef<InstrProfValueData>(ValueDataArray.get(), NumVals); in getPromotionCandidatesForInstruction()
H A DModuleSummaryAnalysis.cpp452 uint32_t NumVals, NumCandidates; in computeFunctionSummary() local
456 &I, NumVals, TotalCount, NumCandidates); in computeFunctionSummary()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIndirectCallPromotionAnalysis.h39 uint32_t NumVals,
61 getPromotionCandidatesForInstruction(const Instruction *I, uint32_t &NumVals,
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp239 unsigned NumVals = N->getNumValues(); in CopyAndMoveSuccessors() local
241 for (unsigned i = 0; i != NumVals; ++i) in CopyAndMoveSuccessors()
497 unsigned NumVals = F.getNumOperandRegisters(); in DelayForLiveRegsBottomUp() local
503 for (; NumVals; --NumVals, ++i) { in DelayForLiveRegsBottomUp()
509 i += NumVals; in DelayForLiveRegsBottomUp()
736 unsigned NumVals = N->getNumValues(); in Schedule() local
737 if (NumVals && N->getValueType(NumVals-1) == MVT::Glue && in Schedule()
738 N->hasAnyUseOfValue(NumVals-1)) { in Schedule()
H A DInstrEmitter.cpp1314 const unsigned NumVals = F.getNumOperandRegisters(); in EmitSpecialNode() local
1322 for (unsigned j = 0; j != NumVals; ++j, ++i) { in EmitSpecialNode()
1332 for (unsigned j = 0; j != NumVals; ++j, ++i) { in EmitSpecialNode()
1344 for (unsigned j = 0; j != NumVals; ++j, ++i) in EmitSpecialNode()
1354 for (unsigned j = 0; j != NumVals; ++j) in EmitSpecialNode()
1360 for (unsigned j = 0; j != NumVals; ++j, ++i) { in EmitSpecialNode()
H A DScheduleDAGRRList.cpp993 unsigned NumVals = N->getNumValues(); in TryUnfoldSU() local
1048 for (unsigned i = 0; i != NumVals; ++i) in TryUnfoldSU()
1374 unsigned NumVals = F.getNumOperandRegisters(); in DelayForLiveRegsBottomUp() local
1380 for (; NumVals; --NumVals, ++i) { in DelayForLiveRegsBottomUp()
1386 i += NumVals; in DelayForLiveRegsBottomUp()
H A DLegalizeTypes.cpp457 for (unsigned i = 0, NumVals = Node.getNumValues(); i < NumVals; ++i) in run() local
H A DSelectionDAGBuilder.cpp9884 unsigned NumVals = Op.getNode()->getNumValues(); in lowerRangeToAssertZExt() local
9885 if (NumVals == 1) in lowerRangeToAssertZExt()
9891 for (unsigned I = 1; I != NumVals; ++I) in lowerRangeToAssertZExt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOMemOPSizeOpt.cpp255 uint32_t NumVals, MaxNumVals = INSTR_PROF_NUM_BUCKETS; in perform() local
258 ValueDataArray.get(), NumVals, TotalCount)) in perform()
270 ArrayRef<InstrProfValueData> VDs(ValueDataArray.get(), NumVals); in perform()
403 if (SavedRemainCount > 0 || Version != NumVals) { in perform()
407 IPVK_MemOPSize, NumVals); in perform()
H A DIndirectCallPromotion.cpp299 uint32_t NumVals, NumCandidates; in processFunction() local
302 CB, NumVals, TotalCount, NumCandidates); in processFunction()
316 if (TotalCount == 0 || NumPromoted == NumVals) in processFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLocalizer.cpp69 for (unsigned I = 0, NumVals = MI->getNumIncomingValues(); I < NumVals; ++I) { in getNumPhiUses() local
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiAsmPrinter.cpp127 const unsigned NumVals = Flags.getNumOperandRegisters(); in PrintAsmOperand() local
128 if (NumVals != 2) in PrintAsmOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp844 uint32_t NumVals = 0; in doesHistoryAllowICP() local
850 ValueData.get(), NumVals, TotalCount, true); in doesHistoryAllowICP()
857 for (uint32_t I = 0; I < NumVals; I++) { in doesHistoryAllowICP()
890 uint32_t NumVals = 0; in updateIDTMetaData() local
897 ValueData.get(), NumVals, OldSum, true); in updateIDTMetaData()
907 for (uint32_t I = 0; I < NumVals; I++) in updateIDTMetaData()
923 for (uint32_t I = 0; I < NumVals; I++) { in updateIDTMetaData()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveInterval.cpp639 unsigned NumVals = getNumValNums(); in join() local
641 for (unsigned i = 0; i != NumVals; ++i) { in join()
693 if (NumValNos >= NumVals) in join()
700 if (NumNewVals < NumVals) in join()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp531 const unsigned NumVals = Flags.getNumOperandRegisters(); in PrintAsmOperand() local
534 if (NumVals != 2) { in PrintAsmOperand()
535 if (Subtarget->isGP64bit() && NumVals == 1 && MO.isReg()) { in PrintAsmOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp1123 SmallVector<Value *, 4> NumVals; in visitFDiv() local
1126 extractValues(Builder, NumVals, Num); in visitFDiv()
1132 SmallVector<Value *, 4> ResultVals(NumVals.size()); in visitFDiv()
1133 for (int I = 0, E = NumVals.size(); I != E; ++I) { in visitFDiv()
1134 Value *NumElt = NumVals[I]; in visitFDiv()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp383 const unsigned NumVals = F.getNumOperandRegisters(); in PrintAsmOperand() local
400 if (NumVals != 1) in PrintAsmOperand()
411 if (NumVals != 2) in PrintAsmOperand()
H A DARMISelLowering.cpp1964 unsigned NumVals = N->getNumValues(); in getSchedulingPreference() local
1965 if (!NumVals) in getSchedulingPreference()
1968 for (unsigned i = 0; i != NumVals; ++i) { in getSchedulingPreference()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp673 unsigned NumVals = Flags.getNumOperandRegisters(); in LowerINLINEASM() local
682 i += NumVals; in LowerINLINEASM()
687 for (; NumVals; --NumVals, ++i) { in LowerINLINEASM()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1735 unsigned ValNo = 0, NumVals = static_cast<unsigned>(PositionalVals.size()); in ParseCommandLineOptions() local
1749 while (NumVals - ValNo > NumPositionalRequired && !Done) { in ParseCommandLineOptions()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7856 const unsigned NumVals[] = { 1, 0, 1, 1, 1, 1, 2, 2, 3 }; in BuildAtomicExpr() local
7865 && sizeof(NumVals)/sizeof(NumVals[0]) == NumForm, in BuildAtomicExpr()
8211 if (i < NumVals[Form] + 1) { in BuildAtomicExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3828 unsigned NumVals = Flags.getNumOperandRegisters(); in LowerINLINEASM() local
3837 i += NumVals; in LowerINLINEASM()
3842 for (; NumVals; --NumVals, ++i) { in LowerINLINEASM()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp9668 unsigned NumVals = N->getNumValues(); in widenVectorOpsToi8() local
9671 NumVals, N.getValueType().changeVectorElementType(MVT::i8))); in widenVectorOpsToi8()
9674 for (unsigned I = 0; I < NumVals; I++) { in widenVectorOpsToi8()