Searched refs:OutOfRange (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdLibraryFunctionsChecker.cpp | 80 enum RangeKind { OutOfRange, WithinRange }; enumerator 84 case OutOfRange: in negateKind() 87 return OutOfRange; in negateKind() 343 case OutOfRange: in applyOnRange() 1840 ReturnValueCondition(OutOfRange, SingleValue(0))}, in initFunctionSummaries() 1849 0U, OutOfRange, in initFunctionSummaries() 1860 ReturnValueCondition(OutOfRange, SingleValue(0))}, in initFunctionSummaries() 1866 0U, OutOfRange, in initFunctionSummaries() 1874 ReturnValueCondition(OutOfRange, SingleValue(0))}, in initFunctionSummaries() 1876 .Case({ArgumentCondition(0U, OutOfRange, Range(0, 127)), in initFunctionSummaries() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
| H A D | HexagonAsmParser.cpp | 146 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max); 1342 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { in OutOfRange() function in HexagonAsmParser 1639 OutOfRange(IDLoc, s8, -128); in processInstruction() 1665 OutOfRange(IDLoc, s8, -128); in processInstruction() 1679 OutOfRange(IDLoc, s8, -128); in processInstruction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstCombineIntrinsic.cpp | 396 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; in simplifyX86varShift() local 397 if (llvm::all_of(ShiftAmts, OutOfRange)) { in simplifyX86varShift()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CombinerHelper.cpp | 4476 bool OutOfRange = false; in matchRotateOutOfRange() local 4477 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange() 4479 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange() 4482 return matchUnaryPredicate(MRI, AmtReg, MatchOutOfRange) && OutOfRange; in matchRotateOutOfRange()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 10256 bool OutOfRange = false; in visitRotate() local 10257 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate() 10258 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate() 10261 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) { in visitRotate()
|