HomeSort by relevance Sort by last modified time
    Searched refs:cc_op (Results 1 - 12 of 12) sorted by null

  /external/valgrind/main/VEX/priv/
guest_arm_defs.h 83 UInt armg_calculate_flags_nzcv ( UInt cc_op, UInt cc_dep1,
89 UInt armg_calculate_flag_c ( UInt cc_op, UInt cc_dep1,
95 UInt armg_calculate_flag_v ( UInt cc_op, UInt cc_dep1,
101 UInt armg_calculate_condition ( UInt cond_n_op /* ARMCondcode << 4 | cc_op */,
135 CC_OP, which describes the operation.
145 CC_OP field. This is important because otherwise Memcheck could
147 between the CC_OP field and CC_DEP1/2/3, and so believes
guest_x86_helpers.c 493 UInt x86g_calculate_eflags_all_WRK ( UInt cc_op,
498 switch (cc_op) {
566 cc_op, cc_dep1_formal, cc_dep2_formal, cc_ndep_formal );
574 UInt x86g_calculate_eflags_all ( UInt cc_op,
585 x86g_calculate_eflags_all_WRK ( cc_op, cc_dep1, cc_dep2, cc_ndep );
592 UInt x86g_calculate_eflags_c ( UInt cc_op,
600 tabc_fast[cc_op]++;
605 switch (cc_op) {
627 tabc_fast[cc_op]--;
628 tabc_slow[cc_op]++
802 IRExpr *cond, *cc_op, *cc_dep1, *cc_dep2; local
1221 IRExpr *cc_op, *cc_dep1, *cc_dep2, *cc_ndep; local
1295 IRExpr *cc_op, *cc_dep1; \/*, *cc_dep2, *cc_ndep; *\/ local
    [all...]
guest_amd64_helpers.c 573 ULong amd64g_calculate_rflags_all_WRK ( ULong cc_op,
578 switch (cc_op) {
661 cc_op, cc_dep1_formal, cc_dep2_formal, cc_ndep_formal );
669 ULong amd64g_calculate_rflags_all ( ULong cc_op,
680 amd64g_calculate_rflags_all_WRK ( cc_op, cc_dep1, cc_dep2, cc_ndep );
686 ULong amd64g_calculate_rflags_c ( ULong cc_op,
694 tabc_fast[cc_op]++;
699 switch (cc_op) {
724 tabc_fast[cc_op]--;
725 tabc_slow[cc_op]++
899 IRExpr *cond, *cc_op, *cc_dep1, *cc_dep2; local
1315 IRExpr *cc_op, *cc_dep1, *cc_dep2, *cc_ndep; local
    [all...]
guest_x86_defs.h 86 UInt cc_op, UInt cc_dep1, UInt cc_dep2, UInt cc_ndep
91 UInt cc_op, UInt cc_dep1, UInt cc_dep2, UInt cc_ndep
96 UInt cc_op,
213 CC_OP, which describes the operation.
229 (1) In the guest state layout info (x86guest_layout), CC_OP and
239 definedness of CC_OP or CC_NDEP, we may as well not even bother to
244 CC_OP field (eg, CC_DEP2 is not used if CC_OP is CC_LOGIC1/2/4).
247 CC_OP field and CC_DEP1 and CC_DEP2, and so believes that the
251 However, it is only necessary to set CC_NDEP when the CC_OP valu
    [all...]
guest_arm_helpers.c 69 UInt armg_calculate_flags_nzcv ( UInt cc_op, UInt cc_dep1,
72 switch (cc_op) {
180 cc_op, cc_dep1, cc_dep2, cc_dep3 );
189 UInt armg_calculate_flag_c ( UInt cc_op, UInt cc_dep1,
192 UInt r = armg_calculate_flags_nzcv(cc_op, cc_dep1, cc_dep2, cc_dep3);
200 UInt armg_calculate_flag_v ( UInt cc_op, UInt cc_dep1,
203 UInt r = armg_calculate_flags_nzcv(cc_op, cc_dep1, cc_dep2, cc_dep3);
224 UInt armg_calculate_condition ( UInt cond_n_op /* ARMCondcode << 4 | cc_op */,
229 UInt cc_op = cond_n_op & 0xF; local
238 nzcv = armg_calculate_flags_nzcv(cc_op, cc_dep1, cc_dep2, cc_dep3)
    [all...]
guest_amd64_defs.h 86 ULong cc_op,
91 ULong cc_op,
97 ULong cc_op,
271 CC_OP, which describes the operation.
287 (1) In the guest state layout info (amd64guest_layout), CC_OP and
297 definedness of CC_OP or CC_NDEP, we may as well not even bother to
302 CC_OP field (eg, CC_DEP2 is not used if CC_OP is CC_LOGIC1/2/4).
305 CC_OP field and CC_DEP1 and CC_DEP2, and so believes that the
309 However, it is only necessary to set CC_NDEP when the CC_OP valu
    [all...]
guest_arm_toIR.c     [all...]
  /external/qemu/target-i386/
translate.c 99 int cc_op; /* current CC operation */ member in struct:DisasContext
745 if (s->cc_op != CC_OP_DYNAMIC)
746 gen_op_set_cc_op(s->cc_op);
758 if (s->cc_op != CC_OP_DYNAMIC)
759 gen_op_set_cc_op(s->cc_op);
784 if (s->cc_op != CC_OP_DYNAMIC) {
785 gen_op_set_cc_op(s->cc_op);
786 s->cc_op = CC_OP_DYNAMIC;
836 if (s->cc_op != CC_OP_DYNAMIC)
837 gen_op_set_cc_op(s->cc_op);
2308 int l1, l2, cc_op; local
7792 int cc_op; local
    [all...]
exec.h 50 #define CC_OP (env->cc_op)
273 return env->eflags | helper_cc_compute_all(CC_OP) | (DF & DF_MASK);
276 /* NOTE: CC_OP must be modified manually to CC_OP_EFLAGS */
helper.c 771 if ((unsigned)env->cc_op < CC_OP_NB)
772 snprintf(cc_op_name, sizeof(cc_op_name), "%s", cc_op_str[env->cc_op]);
774 snprintf(cc_op_name, sizeof(cc_op_name), "[%d]", env->cc_op);
    [all...]
cpu.h 441 CC_OP_DYNAMIC, /* must use dynamic code to get cc_op */
577 uint32_t cc_op; member in struct:CPUX86State
  /external/qemu/
cpu-exec.c 261 CC_OP = CC_OP_EFLAGS;
266 env->cc_op = CC_OP_FLAGS;
590 env->eflags = env->eflags | helper_cc_compute_all(CC_OP) | (DF & DF_MASK);
594 cpu_m68k_flush_flags(env, env->cc_op);
595 env->cc_op = CC_OP_FLAGS;
681 env->eflags = env->eflags | helper_cc_compute_all(CC_OP) | (DF & DF_MASK);
689 cpu_m68k_flush_flags(env, env->cc_op);
690 env->cc_op = CC_OP_FLAGS;
    [all...]

Completed in 1017 milliseconds