Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRangeList.cpp37 void ConstantRangeList::insert(const ConstantRange &NewRange) { in insert() argument
38 if (NewRange.isEmptySet()) in insert()
40 assert(!NewRange.isFullSet() && "Do not support full set"); in insert()
41 assert(NewRange.getLower().slt(NewRange.getUpper())); in insert()
42 assert(getBitWidth() == NewRange.getBitWidth()); in insert()
44 if (empty() || Ranges.back().getUpper().slt(NewRange.getLower())) { in insert()
45 Ranges.push_back(NewRange); in insert()
48 if (NewRange.getUpper().slt(Ranges.front().getLower())) { in insert()
49 Ranges.insert(Ranges.begin(), NewRange); in insert()
54 Ranges, NewRange, [](const ConstantRange &a, const ConstantRange &b) { in insert()
[all …]
H A DMetadata.cpp1251 ConstantRange NewRange(Low->getValue(), High->getValue()); in tryMergeRange() local
1256 if (canBeMerged(NewRange, LastRange)) { in tryMergeRange()
1257 ConstantRange Union = LastRange.unionWith(NewRange); in tryMergeRange()
/freebsd/contrib/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp55 const Annotation &NewRange = OpenRanges.back(); in Annotations() local
57 {NewRange.Begin, Code.size(), NewRange.Name, NewRange.Payload}); in Annotations()
58 Ranges[NewRange.Name].push_back(All.size() - 1); in Annotations()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRangeList.h69 void insert(const ConstantRange &NewRange);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveInterval.cpp953 SubRange *NewRange = createSubRange(Allocator, ToApply); in refineSubRanges()
954 Apply(*NewRange);
950 SubRange *NewRange = createSubRange(Allocator, ToApply); refineSubRanges() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1560 Attribute NewRange = AL.getRetAttr(Attribute::Range); in AddReturnAttributes() local
1561 if (NewRange.isValid()) { in AddReturnAttributes()
1563 CBRange.getRange().intersectWith(NewRange.getRange())); in AddReturnAttributes()