Searched refs:isMax (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfoV3.td | 115 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);
|
D | HexagonInstrInfo.td | 1145 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/ |
D | host_arm_defs.h | 869 Bool isMax; member 1029 extern ARMInstr* ARMInstr_VMinMaxNum ( Bool isF64, Bool isMax,
|
D | host_arm_defs.c | 1377 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()
|
D | host_arm_isel.c | 5628 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()
|
D | guest_arm_toIR.c | 13796 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/ |
D | PathProfiling.cpp | 1039 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/ |
D | CBackend.cpp | 2732 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/ |
D | RegAllocGreedy.cpp | 238 bool isMax() const { return BrokenHints == ~0u; } in isMax() function 794 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterference()
|