reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/APSInt.h
  166     return IsUnsigned ? uge(RHS) : sge(RHS);
include/llvm/IR/PatternMatch.h
  481       return C.sge(*Thr);
lib/Analysis/BasicAliasAnalysis.cpp
 1301   return GEPBaseOffset.sge(ObjectBaseOffset + (int64_t)ObjectAccessSize);
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 2030       case ISD::SETGE:  return getBoolConstant(C1.sge(C2), dl, VT, OpVT);
 4709   case ISD::SMAX: return std::make_pair(C1.sge(C2) ? C1 : C2, true);
lib/ExecutionEngine/Interpreter/Execution.cpp
  321     IMPLEMENT_INTEGER_ICMP(sge,Ty);
  322     IMPLEMENT_VECTOR_INTEGER_ICMP(sge,Ty);
lib/IR/ConstantFold.cpp
 1871     case ICmpInst::ICMP_SGE: return ConstantInt::get(ResultTy, V1.sge(V2));
lib/Target/AMDGPU/SIISelLowering.cpp
 9023     if (K0->getAPIntValue().sge(K1->getAPIntValue()))
lib/Transforms/InstCombine/InstCombineAddSub.cpp
  840       C1->isNegative() && C1->sge(-C2->sext(C1->getBitWidth()))) {
lib/Transforms/InstCombine/InstCombineCompares.cpp
 5076     if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C)
 5105     if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B)
lib/Transforms/InstCombine/InstCombineSelect.cpp
 1570           (SPF1 == SPF_SMAX && CB->sge(*CC)))
tools/clang/utils/TableGen/MveEmitter.cpp
  797       if (lo.sle(typelo) && hi.sge(typehi))
unittests/ADT/APIntTest.cpp
  374       EXPECT_EQ(sv1 >= sv2, arg1.sge(arg2));