Home
last modified time | relevance | path

Searched refs:RangeSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp637 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second); in encodeDefRange() local
638 GapAndRangeSizes.push_back({GapSize, RangeSize}); in encodeDefRange()
647 unsigned RangeSize = GapAndRangeSizes[I].second; in encodeDefRange() local
651 if (RangeSize + GapAndRangeSize > MaxDefRange) in encodeDefRange()
653 RangeSize += GapAndRangeSize; in encodeDefRange()
663 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); in encodeDefRange()
692 RangeSize -= Chunk; in encodeDefRange()
693 } while (RangeSize > 0); in encodeDefRange()
700 unsigned GapSize, RangeSize; in encodeDefRange() local
702 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]; in encodeDefRange()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerRandom.h39 auto RangeSize = static_cast<unsigned long long>(To) - in operator() local
41 return static_cast<T>(this->operator()(RangeSize) + From); in operator()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILResource.cpp61 LowerBound(R.getResourceIndex()), RangeSize(1) { in ResourceBase()
63 RangeSize = ArrTy->getNumElements(); in ResourceBase()
228 if (RangeSize != UINT_MAX) in print()
229 OS << right_justify(std::to_string(RangeSize), 6) << "\n"; in print()
295 Entries[5] = ConstantAsMetadata::get(B.getInt32(RangeSize)); in write()
H A DDXILResource.h37 uint32_t RangeSize; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp309 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() local
314 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) { in convertFunctionLineTable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2678 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local
2697 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2702 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2703 HiBound = RangeSize; in foldICmpDivConstant()
2708 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2714 APInt DivNeg = -RangeSize; in foldICmpDivConstant()
2720 RangeSize.negate(); in foldICmpDivConstant()
2723 LoBound = RangeSize + 1; in foldICmpDivConstant()
2724 HiBound = -RangeSize; in foldICmpDivConstant()
2735 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
[all …]