Home
last modified time | relevance | path

Searched refs:vcmp (Results 1 - 11 of 11) sorted by relevance

/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_optimizer_postRA.cpp29 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 Dassembler-arm.h800 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 Dmacro-assembler-arm.cc902 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 Dassembler-arm.cc3400 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 Ddisasm-arm.cc1426 // 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.c3032 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 Dassembler-aarch32.h4196 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 Ddisasm-aarch32.h1670 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 Ddisasm-aarch32.cc4355 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 Dassembler-aarch32.cc16007 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 Dmacro-assembler-aarch32.h7554 vcmp(cond, dt, rd, operand); in MacroAssembler()
7574 vcmp(cond, dt, rd, operand); in MacroAssembler()

Completed in 170 milliseconds