Home
last modified time | relevance | path

Searched refs:sge (Results 1 – 25 of 28) sorted by relevance

12

/third_party/ltp/tools/sparse/sparse-src/validation/
Dtautological-compare.c8 int sge(int a) { return a >= a; } in sge() function
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dcanonical-cmp.c9 sint sge(sint p, sint a) { return (123 <= p) == (p >= 123); } in sge() function
Dbinops-same-args.c16 int sge(int a) { return a >= a; } in sge() function
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_icmp_i1vec.ll68 %cmp = icmp sge <16 x i1> %a.trunc, %b.trunc
158 %cmp = icmp sge <8 x i1> %a.trunc, %b.trunc
248 %cmp = icmp sge <4 x i1> %a.trunc, %b.trunc
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.def99 X(Sge, Sle, "sge") \
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler_nir_emit.c73 …OPC(seq, SET, 0_1_X, EQ), OPC(sne, SET, 0_1_X, NE), OPC(sge, SET, 0_1_X, GE), OPC(slt, SET, 0_1_X,…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPSInt.h166 return IsUnsigned ? uge(RHS) : sge(RHS);
DAPInt.h1329 bool sge(const APInt &RHS) const { return !slt(RHS); } in sge() function
1337 bool sge(int64_t RHS) const { return !slt(RHS); } in sge() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1135 bool sge(const APInt &RHS) const { return !slt(RHS); } in sge() function
1143 bool sge(int64_t RHS) const { return !slt(RHS); } in sge() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp1302 return GEPBaseOffset.sge(ObjectBaseOffset + (int64_t)ObjectAccessSize); in isGEPBaseAtNegativeOffset()
1444 if (GEP1BaseOffset.sge(0)) { in aliasGEP()
1501 (SignKnownZero && Scale.sge(0)) || (SignKnownOne && Scale.slt(0)); in aliasGEP()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLLexer.cpp710 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMips64InstrInfo.td1225 "sge\t$rd, $rs, $imm">, GPR_64;
1226 def : MipsInstAlias<"sge $rs, $imm", (SGEImm64 GPR64Opnd:$rs,
DMipsInstrInfo.td2683 "sge\t$rd, $rs, $rt">, ISA_MIPS1;
2684 def : MipsInstAlias<"sge $rs, $rt",
2689 "sge\t$rd, $rs, $imm">, GPR_32;
2690 def : MipsInstAlias<"sge $rs, $imm", (SGEImm GPR32Opnd:$rs,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp321 IMPLEMENT_INTEGER_ICMP(sge,Ty); in executeICMP_SGE()
322 IMPLEMENT_VECTOR_INTEGER_ICMP(sge,Ty); in executeICMP_SGE()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenAsmMatcher.inc5080 "d\010seleqz.s\006selnez\010selnez.d\010selnez.s\003seq\004seqi\003sge\004"
7595 …{ 8065 /* sge */, Mips::SGE, Convert__GPR32AsmReg1_0__GPR32AsmReg1_0__GPR32AsmReg1_1, AMFBS_HasStd…
7596 …{ 8065 /* sge */, Mips::SGEImm, Convert__GPR32AsmReg1_0__GPR32AsmReg1_0__SImm321_1, AMFBS_IsGP32bi…
7597 …{ 8065 /* sge */, Mips::SGEImm64, Convert__GPR64AsmReg1_0__GPR64AsmReg1_0__Imm1_1, AMFBS_IsGP64bit…
7598 …{ 8065 /* sge */, Mips::SGE, Convert__GPR32AsmReg1_0__GPR32AsmReg1_1__GPR32AsmReg1_2, AMFBS_HasStd…
7599 …{ 8065 /* sge */, Mips::SGEImm, Convert__GPR32AsmReg1_0__GPR32AsmReg1_1__SImm321_2, AMFBS_IsGP32bi…
7600 …{ 8065 /* sge */, Mips::SGEImm64, Convert__GPR64AsmReg1_0__GPR64AsmReg1_1__Imm1_2, AMFBS_IsGP64bit…
11098 { 8065 /* sge */, 3 /* 0, 1 */, MCK_GPR32AsmReg, AMFBS_HasStdEnc_NotInMicroMips },
11099 { 8065 /* sge */, 1 /* 0 */, MCK_GPR32AsmReg, AMFBS_IsGP32bit_NotInMicroMips },
11100 { 8065 /* sge */, 1 /* 0 */, MCK_GPR64AsmReg, AMFBS_IsGP64bit },
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPatternMatch.h504 return C.sge(*Thr); in isValue()
DIntrinsicsNVVM.td24 // * llvm.nvvm.max.i --> select(x sge y, x, y)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp840 C1->isNegative() && C1->sge(-C2->sext(C1->getBitWidth()))) { in foldNoWrapAdd()
DInstCombineSelect.cpp1584 (SPF1 == SPF_SMAX && CB->sge(*CC))) in foldSPFofSPF()
DInstCombineCompares.cpp5111 if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C) in foldICmpUsingKnownBits()
5140 if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B) in foldICmpUsingKnownBits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantFold.cpp1896 case ICmpInst::ICMP_SGE: return ConstantInt::get(ResultTy, V1.sge(V2)); in ConstantFoldCompareInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXInstrInfo.td662 return v.sge(0) && v.slt(32);
668 return v.sge(0) && v.slt(16);
DNVPTXISelLowering.cpp4671 if (ShiftAmt.sge(0) && ShiftAmt.slt(BitWidth)) { in TryMULWIDECombine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2068 case ISD::SETGE: return getBoolConstant(C1.sge(C2), dl, VT, OpVT); in FoldSetCC()
4803 case ISD::SMAX: return C1.sge(C2) ? C1 : C2; in FoldValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelDAGToDAG.cpp2697 return CR && CR->getSignedMin().sge(-1ull << Width) && in isSExtAbsoluteSymbolRef()

12