Home | History | Annotate | Download | only in priv

Lines Matching defs:cc_op

115 ULong arm64g_calculate_flag_n ( ULong cc_op, ULong cc_dep1,
118 switch (cc_op) {
224 cc_op, cc_dep1, cc_dep2, cc_dep3 );
233 ULong arm64g_calculate_flag_z ( ULong cc_op, ULong cc_dep1,
236 switch (cc_op) {
343 cc_op, cc_dep1, cc_dep2, cc_dep3 );
352 ULong arm64g_calculate_flag_c ( ULong cc_op, ULong cc_dep1,
355 switch (cc_op) {
452 cc_op, cc_dep1, cc_dep2, cc_dep3 );
462 ULong arm64g_calculate_flag_v ( ULong cc_op, ULong cc_dep1,
465 switch (cc_op) {
566 cc_op, cc_dep1, cc_dep2, cc_dep3 );
576 ULong arm64g_calculate_flags_nzcv ( ULong cc_op, ULong cc_dep1,
581 f = 1 & arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3);
583 f = 1 & arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3);
585 f = 1 & arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3);
587 f = 1 & arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3);
609 ULong arm64g_calculate_condition ( /* ARM64Condcode << 4 | cc_op */
615 ULong cc_op = cond_n_op & 0xF;
620 NOTE_EVAL(cc_op, cond);
629 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3);
634 cf = arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3);
639 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3);
644 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3);
649 cf = arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3);
650 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3);
655 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3);
656 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3);
661 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3);
662 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3);
663 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3);
674 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 );
1016 //ZZ IRExpr *cc_op, *cc_dep1, *cc_dep2, *cc_ndep;
1018 //ZZ cc_op = args[0]; /* ARMG_CC_OP_* */
1023 //ZZ if (isU32(cc_op, ARMG_CC_OP_LOGIC)) {
1029 //ZZ if (isU32(cc_op, ARMG_CC_OP_SUB)) {
1037 //ZZ if (isU32(cc_op, ARMG_CC_OP_SBB)) {
1066 //ZZ IRExpr *cc_op, *cc_dep1, *cc_dep2, *cc_ndep;
1068 //ZZ cc_op = args[0]; /* ARMG_CC_OP_* */
1073 //ZZ if (isU32(cc_op, ARMG_CC_OP_LOGIC)) {
1079 //ZZ if (isU32(cc_op, ARMG_CC_OP_SUB)) {
1098 //ZZ if (isU32(cc_op, ARMG_CC_OP_SBB)) {