Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp622 unsigned RangeSize = computeLabelDiff(Asm, Range.first, Range.second); in encodeDefRange() local
623 GapAndRangeSizes.push_back({GapSize, RangeSize}); in encodeDefRange()
632 unsigned RangeSize = GapAndRangeSizes[I].second; in encodeDefRange() local
636 if (RangeSize + GapAndRangeSize > MaxDefRange) in encodeDefRange()
638 RangeSize += GapAndRangeSize; in encodeDefRange()
648 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); in encodeDefRange()
677 RangeSize -= Chunk; in encodeDefRange()
678 } while (RangeSize > 0); in encodeDefRange()
685 unsigned GapSize, RangeSize; in encodeDefRange() local
687 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]; in encodeDefRange()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerRandom.h40 auto RangeSize = static_cast<unsigned long long>(To) - in operator() local
42 return static_cast<T>(this->operator()(RangeSize) + From); in operator()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp603 auto *RangeSize = llvm::ConstantInt::get(CGM.IntTy, 1); in initializeBufferFromBinding() local
619 SmallVector<Value *> Args{Space, RegSlot, RangeSize, in initializeBufferFromBinding()
626 SmallVector<Value *> Args{OrderID, Space, RangeSize, in initializeBufferFromBinding()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp316 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() local
332 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector, in convertFunctionLineTable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2850 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local
2869 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2874 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2875 HiBound = RangeSize; in foldICmpDivConstant()
2880 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2886 APInt DivNeg = -RangeSize; in foldICmpDivConstant()
2892 RangeSize.negate(); in foldICmpDivConstant()
2895 LoBound = RangeSize + 1; in foldICmpDivConstant()
2896 HiBound = -RangeSize; in foldICmpDivConstant()
2907 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp3656 IntegerLiteral *RangeSize = IntegerLiteral::Create( in initGlobalResourceDecl() local
3674 Expr *Args[] = {RegSlot, Space, RangeSize, Index, Name}; in initGlobalResourceDecl()
3682 Expr *Args[] = {Space, RangeSize, Index, OrderId, Name}; in initGlobalResourceDecl()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2472 unsigned RangeSize = Record[i++]; in parseAttributeGroupBlock() local
2474 for (unsigned Idx = 0; Idx < RangeSize; ++Idx) { in parseAttributeGroupBlock()