Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp167 enum RangeKind { OutOfRange, WithinRange }; enumerator
205 case OutOfRange: in apply()
216 case OutOfRange: in negate()
220 Tmp.Kind = OutOfRange; in negate()
806 Kind == OutOfRange ? Result += "out of" : Result += "within"; in describe()
1442 0U, OutOfRange, in initFunctionSummaries()
1458 0U, OutOfRange, in initFunctionSummaries()
1552 0U, OutOfRange, in initFunctionSummaries()
1568 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
1585 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
[all …]
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp141 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max);
1280 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { in OutOfRange() function in HexagonAsmParser
1575 OutOfRange(IDLoc, s8, -128); in processInstruction()
1601 OutOfRange(IDLoc, s8, -128); in processInstruction()
1615 OutOfRange(IDLoc, s8, -128); in processInstruction()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4187 bool OutOfRange = false; in matchRotateOutOfRange() local
4188 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange()
4190 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange()
4193 return matchUnaryPredicate(MRI, AmtReg, MatchOutOfRange) && OutOfRange; in matchRotateOutOfRange()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9070 bool OutOfRange = false; in visitRotate() local
9071 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate()
9072 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate()
9075 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) { in visitRotate()