Home
last modified time | relevance | path

Searched refs:isMax (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfoV3.td115 class T_XTYPE_MIN_MAX_P<bit isMax, bit isUnsigned>
117 "$Rd = "#!if(isMax,"max","min")#!if(isUnsigned,"u","")
126 let Inst{22-21} = !if(isMax, 0b10, 0b01);
127 let Inst{20-16} = !if(isMax, Rt, Rs);
128 let Inst{12-8} = !if(isMax, Rs, Rt);
130 let Inst{6} = !if(isMax, 0b0, 0b1);
DHexagonInstrInfo.td1145 class T_XTYPE_MIN_MAX < bit isMax, bit isUnsigned >
1147 "$Rd = "#!if(isMax,"max","min")#!if(isUnsigned,"u","")
1156 let Inst{22-21} = !if(isMax, 0b10, 0b01);
1159 let Inst{12-8} = !if(isMax, Rs, Rt);
1160 let Inst{20-16} = !if(isMax, Rt, Rs);
/external/valgrind/VEX/priv/
Dhost_arm_defs.h869 Bool isMax; member
1029 extern ARMInstr* ARMInstr_VMinMaxNum ( Bool isF64, Bool isMax,
Dhost_arm_defs.c1377 ARMInstr* ARMInstr_VMinMaxNum ( Bool isF64, Bool isMax, in ARMInstr_VMinMaxNum() argument
1383 i->ARMin.VMinMaxNum.isMax = isMax; in ARMInstr_VMinMaxNum()
1907 const HChar* nm = i->ARMin.VMinMaxNum.isMax ? "vmaxnm" : "vminnm"; in ppARMInstr()
3941 Bool isMax = i->ARMin.VMinMaxNum.isMax; in emit_ARMInstr() local
3967 (N << 3) | ((isMax ? 0 : 1) << 2) | (M << 1) | 0, in emit_ARMInstr()
Dhost_arm_isel.c5628 Bool isMax = e->Iex.Binop.op == Iop_MaxNumF64; in iselDblExpr_wrk() local
5630 True/*isF64*/, isMax, dst, srcL, srcR)); in iselDblExpr_wrk()
5800 Bool isMax = e->Iex.Binop.op == Iop_MaxNumF32; in iselFltExpr_wrk() local
5802 False/*!isF64*/, isMax, dst, srcL, srcR)); in iselFltExpr_wrk()
Dguest_arm_toIR.c13796 Bool isMax = INSN(21,21) == 0; in decode_V8_instruction() local
13826 IROp op = isMax ? Iop_MaxNumF32 : Iop_MinNumF32; in decode_V8_instruction()
13853 isMax ? "max" : "min", rch, in decode_V8_instruction()
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DPathProfiling.cpp1039 ICmpInst* isMax = new ICmpInst(insertPoint, CmpInst::ICMP_ULT, oldPc, in insertCounterIncrement() local
1045 SelectInst::Create( isMax, createIncrementConstant(increment?1:-1,32), in insertCounterIncrement()
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
DCBackend.cpp2732 static void printLimitValue(IntegerType &Ty, bool isSigned, bool isMax, in printLimitValue() argument
2752 Out << sprefix << type << (isMax ? "_MAX" : "_MIN"); in printLimitValue()
2754 Out << "U" << type << (isMax ? "_MAX" : "0"); in printLimitValue()
/external/llvm/lib/CodeGen/
DRegAllocGreedy.cpp238 bool isMax() const { return BrokenHints == ~0u; } in isMax() function
794 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterference()