Searched refs:OutOfRange (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdLibraryFunctionsChecker.cpp | 165 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() 1213 ReturnValueCondition(OutOfRange, SingleValue(0))}) in initFunctionSummaries() 1220 0U, OutOfRange, in initFunctionSummaries() 1229 ReturnValueCondition(OutOfRange, SingleValue(0))}) in initFunctionSummaries() 1233 0U, OutOfRange, in initFunctionSummaries() 1240 ReturnValueCondition(OutOfRange, SingleValue(0))}) in initFunctionSummaries() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/ |
| H A D | HexagonAsmParser.cpp | 140 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max); 1281 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { in OutOfRange() function in HexagonAsmParser 1576 OutOfRange(IDLoc, s8, -128); in processInstruction() 1602 OutOfRange(IDLoc, s8, -128); in processInstruction() 1616 OutOfRange(IDLoc, s8, -128); in processInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CombinerHelper.cpp | 3912 bool OutOfRange = false; in matchRotateOutOfRange() local 3913 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange() 3915 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange() 3918 return matchUnaryPredicate(MRI, AmtReg, MatchOutOfRange) && OutOfRange; in matchRotateOutOfRange()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86InstCombineIntrinsic.cpp | 401 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; in simplifyX86varShift() local 402 if (llvm::all_of(ShiftAmts, OutOfRange)) { in simplifyX86varShift()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 8123 bool OutOfRange = false; in visitRotate() local 8124 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate() 8125 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate() 8128 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) { in visitRotate()
|