Lines Matching refs:cc_dep1
115 ULong arm64g_calculate_flag_n ( ULong cc_op, ULong cc_dep1, in arm64g_calculate_flag_n() argument
121 ULong nf = (cc_dep1 >> ARM64G_CC_SHIFT_N) & 1; in arm64g_calculate_flag_n()
126 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_n()
134 ULong argL = cc_dep1; in arm64g_calculate_flag_n()
142 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_n()
150 ULong argL = cc_dep1; in arm64g_calculate_flag_n()
158 UInt argL = cc_dep1; in arm64g_calculate_flag_n()
168 ULong argL = cc_dep1; in arm64g_calculate_flag_n()
178 UInt argL = cc_dep1; in arm64g_calculate_flag_n()
188 ULong argL = cc_dep1; in arm64g_calculate_flag_n()
198 UInt res = (UInt)cc_dep1; in arm64g_calculate_flag_n()
204 ULong res = cc_dep1; in arm64g_calculate_flag_n()
224 cc_op, cc_dep1, cc_dep2, cc_dep3 ); in arm64g_calculate_flag_n()
233 ULong arm64g_calculate_flag_z ( ULong cc_op, ULong cc_dep1, in arm64g_calculate_flag_z() argument
239 ULong zf = (cc_dep1 >> ARM64G_CC_SHIFT_Z) & 1; in arm64g_calculate_flag_z()
244 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_z()
252 ULong argL = cc_dep1; in arm64g_calculate_flag_z()
260 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_z()
268 ULong argL = cc_dep1; in arm64g_calculate_flag_z()
276 UInt argL = cc_dep1; in arm64g_calculate_flag_z()
286 ULong argL = cc_dep1; in arm64g_calculate_flag_z()
296 UInt argL = cc_dep1; in arm64g_calculate_flag_z()
306 ULong argL = cc_dep1; in arm64g_calculate_flag_z()
316 UInt res = (UInt)cc_dep1; in arm64g_calculate_flag_z()
322 ULong res = cc_dep1; in arm64g_calculate_flag_z()
343 cc_op, cc_dep1, cc_dep2, cc_dep3 ); in arm64g_calculate_flag_z()
352 ULong arm64g_calculate_flag_c ( ULong cc_op, ULong cc_dep1, in arm64g_calculate_flag_c() argument
358 ULong cf = (cc_dep1 >> ARM64G_CC_SHIFT_C) & 1; in arm64g_calculate_flag_c()
363 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_c()
371 ULong argL = cc_dep1; in arm64g_calculate_flag_c()
379 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_c()
386 ULong argL = cc_dep1; in arm64g_calculate_flag_c()
393 UInt argL = cc_dep1; in arm64g_calculate_flag_c()
403 ULong argL = cc_dep1; in arm64g_calculate_flag_c()
413 UInt argL = cc_dep1; in arm64g_calculate_flag_c()
422 ULong argL = cc_dep1; in arm64g_calculate_flag_c()
452 cc_op, cc_dep1, cc_dep2, cc_dep3 ); in arm64g_calculate_flag_c()
462 ULong arm64g_calculate_flag_v ( ULong cc_op, ULong cc_dep1, in arm64g_calculate_flag_v() argument
468 ULong vf = (cc_dep1 >> ARM64G_CC_SHIFT_V) & 1; in arm64g_calculate_flag_v()
473 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_v()
481 ULong argL = cc_dep1; in arm64g_calculate_flag_v()
489 UInt argL = (UInt)cc_dep1; in arm64g_calculate_flag_v()
497 ULong argL = cc_dep1; in arm64g_calculate_flag_v()
505 UInt argL = cc_dep1; in arm64g_calculate_flag_v()
515 ULong argL = cc_dep1; in arm64g_calculate_flag_v()
525 UInt argL = cc_dep1; in arm64g_calculate_flag_v()
535 ULong argL = cc_dep1; in arm64g_calculate_flag_v()
566 cc_op, cc_dep1, cc_dep2, cc_dep3 ); in arm64g_calculate_flag_v()
576 ULong arm64g_calculate_flags_nzcv ( ULong cc_op, ULong cc_dep1, in arm64g_calculate_flags_nzcv() argument
581 f = 1 & arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_flags_nzcv()
583 f = 1 & arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_flags_nzcv()
585 f = 1 & arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_flags_nzcv()
587 f = 1 & arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_flags_nzcv()
611 ULong cc_dep1, in arm64g_calculate_condition() argument
629 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
634 cf = arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
639 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
644 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
649 cf = arm64g_calculate_flag_c(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
650 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
655 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
656 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
661 nf = arm64g_calculate_flag_n(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
662 vf = arm64g_calculate_flag_v(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
663 zf = arm64g_calculate_flag_z(cc_op, cc_dep1, cc_dep2, cc_dep3); in arm64g_calculate_condition()
674 cond, cc_op, cc_dep1, cc_dep2, cc_dep3 ); in arm64g_calculate_condition()
743 IRExpr *cond_n_op, *cc_dep1, *cc_dep2 ; //, *cc_ndep; in guest_arm64_spechelper() local
746 cc_dep1 = args[1]; in guest_arm64_spechelper()
756 binop(Iop_CmpEQ64, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
761 binop(Iop_CmpNE64, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
769 binop(Iop_CmpLE64U, cc_dep2, cc_dep1)); in guest_arm64_spechelper()
774 binop(Iop_CmpLT64U, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
781 binop(Iop_CmpLE64U, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
787 binop(Iop_CmpLT64U, cc_dep2, cc_dep1)); in guest_arm64_spechelper()
794 binop(Iop_CmpLT64S, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
800 binop(Iop_CmpLE64S, cc_dep2, cc_dep1)); in guest_arm64_spechelper()
808 binop(Iop_CmpLT64S, cc_dep2, cc_dep1)); in guest_arm64_spechelper()
813 binop(Iop_CmpLE64S, cc_dep1, cc_dep2)); in guest_arm64_spechelper()
822 binop(Iop_CmpEQ32, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
828 binop(Iop_CmpNE32, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
838 unop(Iop_64to32, cc_dep1))); in guest_arm64_spechelper()
843 binop(Iop_CmpLT32U, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
851 binop(Iop_CmpLE32U, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
859 unop(Iop_64to32, cc_dep1))); in guest_arm64_spechelper()
866 binop(Iop_CmpLT32S, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
874 unop(Iop_64to32, cc_dep1))); in guest_arm64_spechelper()
883 unop(Iop_64to32, cc_dep1))); in guest_arm64_spechelper()
888 binop(Iop_CmpLE32S, unop(Iop_64to32, cc_dep1), in guest_arm64_spechelper()
944 binop(Iop_Shr64, cc_dep1, in guest_arm64_spechelper()
952 binop(Iop_Shr64, cc_dep1, in guest_arm64_spechelper()