Searched refs:RegCount (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h850 SmallVector<unsigned, 4> RegCount; member in struct:llvm::RegsForValue
872 RegCount.push_back(RHS.Regs.size());
899 /// Check if the total RegCount is greater than one.
901 return std::accumulate(RegCount.begin(), RegCount.end(), 0) > 1;
H A DSelectionDAGBuilder.cpp780 RegCount(1, regs.size()), CallConv(CC) {}
801 RegCount.push_back(NumRegs);
822 unsigned NumRegs = RegCount[Value];
904 unsigned NumParts = RegCount[Value];
1005 for (auto CountAndVT : zip_first(RegCount, RegVTs)) {
1006 unsigned RegCount = std::get<0>(CountAndVT);
1009 for (unsigned E = I + RegCount; I != E; ++I)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1322 uint32_t encodeCompactUnwindRegistersWithoutFrame(unsigned RegCount) const {
1336 for (unsigned i = 0; i < RegCount; ++i) {
1346 for (unsigned i = CU_NUM_SAVED_REGS - RegCount; i < CU_NUM_SAVED_REGS; ++i){
1348 for (unsigned j = CU_NUM_SAVED_REGS - RegCount; j < i; ++j)
1357 switch (RegCount) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp7360 llvm::Value *RegCount = CGF.Builder.CreateLoad(RegCountPtr, "reg_count");
7362 llvm::Value *InRegs = CGF.Builder.CreateICmpULT(RegCount, MaxRegsV,
7375 CGF.Builder.CreateMul(RegCount, PaddedSizeV, "scaled_reg_count");
7394 CGF.Builder.CreateAdd(RegCount, One, "reg_count");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp3711 uint32_t RegCount = local
3719 RegCount >>= 1;
3723 RegCount += 1;
3731 if (RegCount > DstSize) {

Completed in 283 milliseconds