Home
last modified time | relevance | path

Searched refs:OutOfRange (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp165 enum RangeKind { OutOfRange, WithinRange }; enumerator
203 case OutOfRange: in apply()
214 case OutOfRange: in negate()
218 Tmp.Kind = OutOfRange; in negate()
641 Kind == OutOfRange ? Result += "out of" : Result += "within"; in describe()
1220 0U, OutOfRange, in initFunctionSummaries()
1233 0U, OutOfRange, in initFunctionSummaries()
1301 0U, OutOfRange, in initFunctionSummaries()
1312 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
1324 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp140 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max);
1282 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { in OutOfRange() function in HexagonAsmParser
1577 OutOfRange(IDLoc, s8, -128); in processInstruction()
1603 OutOfRange(IDLoc, s8, -128); in processInstruction()
1617 OutOfRange(IDLoc, s8, -128); in processInstruction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp401 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; in simplifyX86varShift() local
402 if (llvm::all_of(ShiftAmts, OutOfRange)) { in simplifyX86varShift()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp3990 bool OutOfRange = false; in matchRotateOutOfRange() local
3991 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange()
3993 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange()
3996 return matchUnaryPredicate(MRI, AmtReg, MatchOutOfRange) && OutOfRange; in matchRotateOutOfRange()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8161 bool OutOfRange = false; in visitRotate() local
8162 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate()
8163 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate()
8166 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) { in visitRotate()