/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | test_optimizer_postRA.cpp | 29 BEGIN_TEST(optimizer_postRA.vcmp) 51 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(), variable 53 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm)); 68 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(), variable 70 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm)); 85 auto vcmp = bld.vopc_e64(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, reg_s4), Operand::zero(), variable 87 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), Operand(vcmp, reg_s4), Operand(exec, bld.lm)); 118 auto vcmp = bld.vopc(aco_opcode::v_cmp_eq_u32, bld.def(bld.lm, vcc), Operand::zero(), variable 120 auto sand = bld.sop2(Builder::s_and, bld.def(bld.lm, reg_s0), bld.def(s1, scc), bld.vcc(vcmp), Operand(exec, bld.lm));
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm.h | 800 void vcmp(const DwVfpRegister src1, const DwVfpRegister src2, 802 void vcmp(const SwVfpRegister src1, const SwVfpRegister src2, 804 void vcmp(const DwVfpRegister src1, const double src2, 806 void vcmp(const SwVfpRegister src1, const float src2,
|
H A D | macro-assembler-arm.cc | 902 vcmp(src1, src2, cond); in CallRecordWriteStub() 911 vcmp(src1, src2, cond); in CallRecordWriteStub() 920 vcmp(src1, src2, cond); in CallRecordWriteStub() 929 vcmp(src1, src2, cond); in CallRecordWriteStub()
|
H A D | assembler-arm.cc | 3400 void Assembler::vcmp(const DwVfpRegister src1, const DwVfpRegister src2, in vcmp() function in v8::internal::Assembler 3402 // vcmp(Dd, Dm) double precision floating point comparison. in vcmp() 3416 void Assembler::vcmp(const SwVfpRegister src1, const SwVfpRegister src2, in vcmp() function in v8::internal::Assembler 3418 // vcmp(Sd, Sm) single precision floating point comparison. in vcmp() 3430 void Assembler::vcmp(const DwVfpRegister src1, const double src2, in vcmp() function in v8::internal::Assembler 3432 // vcmp(Dd, #0.0) double precision floating point comparison. in vcmp() 3444 void Assembler::vcmp(const SwVfpRegister src1, const float src2, in vcmp() function in v8::internal::Assembler 3446 // vcmp(Sd, #0.0) single precision floating point comparison. in vcmp()
|
/third_party/node/deps/v8/src/diagnostics/arm/ |
H A D | disasm-arm.cc | 1426 // vcmp(Dd, Dm) 1427 // vcmp(Sd, Sm) 1690 Format(instr, "vcmp'cond.f64 'Dd, 'Dm"); in DecodeVCMP() 1692 Format(instr, "vcmp'cond.f64 'Dd, #0.0"); in DecodeVCMP() 1698 Format(instr, "vcmp'cond.f32 'Sd, 'Sm"); in DecodeVCMP() 1700 Format(instr, "vcmp'cond.f32 'Sd, #0.0"); in DecodeVCMP()
|
/third_party/python/Modules/_decimal/ |
H A D | _decimal.c | 3032 to the converted objects in vcmp and wcmp. Return 0 for failure. In that 3033 case wcmp is either NULL or Py_NotImplemented (new reference) and vcmp 3036 convert_op_cmp(PyObject **vcmp, PyObject **wcmp, PyObject *v, PyObject *w, in convert_op_cmp() argument 3041 *vcmp = v; in convert_op_cmp() 3089 *vcmp = multiply_by_denominator(v, w, context); in convert_op_cmp() 3090 if (*vcmp == NULL) { in convert_op_cmp() 3104 if (*vcmp == v) { in convert_op_cmp() 3110 #define CONVERT_BINOP_CMP(vcmp, wcmp, v, w, op, ctx) \ 3111 if (!convert_op_cmp(vcmp, wcmp, v, w, op, ctx)) { \
|
/third_party/vixl/src/aarch32/ |
H A D | assembler-aarch32.h | 4196 void vcmp(Condition cond, DataType dt, SRegister rd, const SOperand& operand); 4197 void vcmp(DataType dt, SRegister rd, const SOperand& operand) { in vcmp() function in vixl::aarch32::Assembler 4198 vcmp(al, dt, rd, operand); in vcmp() 4201 void vcmp(Condition cond, DataType dt, DRegister rd, const DOperand& operand); 4202 void vcmp(DataType dt, DRegister rd, const DOperand& operand) { in vcmp() function in vixl::aarch32::Assembler 4203 vcmp(al, dt, rd, operand); in vcmp()
|
H A D | disasm-aarch32.h | 1670 void vcmp(Condition cond, DataType dt, SRegister rd, const SOperand& operand); 1672 void vcmp(Condition cond, DataType dt, DRegister rd, const DOperand& operand);
|
H A D | disasm-aarch32.cc | 4355 void Disassembler::vcmp(Condition cond, in vcmp() function in vixl::aarch32::Disassembler 4364 void Disassembler::vcmp(Condition cond, in vcmp() function in vixl::aarch32::Disassembler [all...] |
H A D | assembler-aarch32.cc | 16007 void Assembler::vcmp(Condition cond, in vcmp() function in vixl::aarch32::Assembler 16047 Delegate(kVcmp, &Assembler::vcmp, cond, dt, rd, operand); in vcmp() 16050 void Assembler::vcmp(Condition cond, in vcmp() function in vixl::aarch32::Assembler 16090 Delegate(kVcmp, &Assembler::vcmp, cond, dt, rd, operand); in vcmp()
|
H A D | macro-assembler-aarch32.h | 7554 vcmp(cond, dt, rd, operand); in MacroAssembler() 7574 vcmp(cond, dt, rd, operand); in MacroAssembler()
|