Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCCodeView.cpp621 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second); in encodeDefRange() local
622 GapAndRangeSizes.push_back({GapSize, RangeSize}); in encodeDefRange()
631 unsigned RangeSize = GapAndRangeSizes[I].second; in encodeDefRange() local
635 if (RangeSize + GapAndRangeSize > MaxDefRange) in encodeDefRange()
637 RangeSize += GapAndRangeSize; in encodeDefRange()
647 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); in encodeDefRange()
678 RangeSize -= Chunk; in encodeDefRange()
679 } while (RangeSize > 0); in encodeDefRange()
686 unsigned GapSize, RangeSize; in encodeDefRange() local
688 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]; in encodeDefRange()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/
H A DDXILResource.cpp61 LowerBound(R.getResourceIndex()), RangeSize(1) { in ResourceBase()
63 RangeSize = ArrTy->getNumElements(); in ResourceBase()
227 if (RangeSize != UINT_MAX) in print()
228 OS << right_justify(std::to_string(RangeSize), 6) << "\n"; in print()
346 Entries[5] = ConstantAsMetadata::get(B.getInt32(RangeSize)); in write()
H A DDXILResource.h37 uint32_t RangeSize; variable
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp256 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() local
261 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) { in convertFunctionLineTable()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2511 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local
2530 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2535 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2536 HiBound = RangeSize; in foldICmpDivConstant()
2541 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2547 APInt DivNeg = -RangeSize; in foldICmpDivConstant()
2553 RangeSize.negate(); in foldICmpDivConstant()
2556 LoBound = RangeSize + 1; in foldICmpDivConstant()
2557 HiBound = -RangeSize; in foldICmpDivConstant()
2568 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
[all …]