Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dinitial-image.h28 OutOfRange, enumerator
45 return OutOfRange; in Add()
66 return OutOfRange; in Add()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp170 enum RangeKind { OutOfRange, WithinRange }; enumerator
208 case OutOfRange: in apply()
219 case OutOfRange: in negate()
223 Tmp.Kind = OutOfRange; in negate()
801 Kind == OutOfRange ? Result += "out of" : Result += "within"; in describe()
1408 0U, OutOfRange, in initFunctionSummaries()
1424 0U, OutOfRange, in initFunctionSummaries()
1518 0U, OutOfRange, in initFunctionSummaries()
1534 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
1551 .Case({ArgumentCondition(0U, OutOfRange, in initFunctionSummaries()
[all …]
/llvm-project-15.0.7/clang/test/Sema/
H A Dobjc-bool-constant-conversion.m28 …BOOL OutOfRange = 400; // expected-warning{{implicit conversion from constant value 400 to 'BOOL';…
/llvm-project-15.0.7/libc/test/src/time/
H A Dgmtime_test.cpp23 TEST(LlvmLibcGmTime, OutOfRange) { in TEST() argument
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dinitial-image.cpp19 return OutOfRange; in Add()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp140 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max);
1271 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { in OutOfRange() function in HexagonAsmParser
1566 OutOfRange(IDLoc, s8, -128); in processInstruction()
1592 OutOfRange(IDLoc, s8, -128); in processInstruction()
1606 OutOfRange(IDLoc, s8, -128); in processInstruction()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp400 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; in simplifyX86varShift() local
401 if (llvm::all_of(ShiftAmts, OutOfRange)) { in simplifyX86varShift()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Ddata-to-inits.cpp425 case evaluate::InitialImage::OutOfRange: in InitElement()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4119 bool OutOfRange = false; in matchRotateOutOfRange() local
4120 auto MatchOutOfRange = [Bitsize, &OutOfRange](const Constant *C) { in matchRotateOutOfRange()
4122 OutOfRange |= CI->getValue().uge(Bitsize); in matchRotateOutOfRange()
4125 return matchUnaryPredicate(MRI, AmtReg, MatchOutOfRange) && OutOfRange; in matchRotateOutOfRange()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8802 bool OutOfRange = false; in visitRotate() local
8803 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) { in visitRotate()
8804 OutOfRange |= C->getAPIntValue().uge(Bitsize); in visitRotate()
8807 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) { in visitRotate()