Home
last modified time | relevance | path

Searched refs:ConstantRangeList (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRangeList.h30 class [[nodiscard]] ConstantRangeList {
34 ConstantRangeList() = default;
35 ConstantRangeList(ArrayRef<ConstantRange> RangesRef) { in ConstantRangeList() function
45 static std::optional<ConstantRangeList>
79 ConstantRangeList unionWith(const ConstantRangeList &CRL) const;
83 ConstantRangeList intersectWith(const ConstantRangeList &CRL) const;
86 bool operator==(const ConstantRangeList &CRL) const {
89 bool operator!=(const ConstantRangeList &CRL) const {
H A DAttributes.h41 class ConstantRangeList; variable
1247 AttrBuilder &addInitializesAttr(const ConstantRangeList &CRL);
H A DAttributes.td50 /// ConstantRangeList attribute.
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRangeList.cpp14 bool ConstantRangeList::isOrderedRanges(ArrayRef<ConstantRange> RangesRef) { in isOrderedRanges()
30 std::optional<ConstantRangeList>
31 ConstantRangeList::getConstantRangeList(ArrayRef<ConstantRange> RangesRef) { in getConstantRangeList()
34 return ConstantRangeList(RangesRef); in getConstantRangeList()
37 void ConstantRangeList::insert(const ConstantRange &NewRange) { in insert()
84 void ConstantRangeList::subtract(const ConstantRange &SubRange) { in subtract()
143 ConstantRangeList
144 ConstantRangeList::unionWith(const ConstantRangeList &CRL) const { in unionWith()
153 ConstantRangeList Result; in unionWith()
193 ConstantRangeList
[all …]
H A DAttributes.cpp671 ConstantRangeList CRL = getInitializes(); in getAsString()
2036 AttrBuilder &AttrBuilder::addInitializesAttr(const ConstantRangeList &CRL) { in addInitializesAttr()
H A DVerifier.cpp2061 Check(ConstantRangeList::isOrderedRanges(Inits), in verifyParameterAttrs()
/freebsd/lib/clang/libllvm/
H A DMakefile800 SRCS_MIN+= IR/ConstantRangeList.cpp
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2396 if (!ConstantRangeList::isOrderedRanges(Val)) in parseAttributeGroupBlock()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3161 auto CRLOrNull = ConstantRangeList::getConstantRangeList(RangeList); in parseInitializesAttr()