Searched refs:CC_C (Results 1 - 25 of 40) sorted by relevance

12

/external/valgrind/main/VEX/test/
H A Dtest-amd64.c56 #define CC_C 0x0001 macro
67 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
116 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O)
155 #define CC_MASK (CC_C)
357 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
359 #define CC_MASK (CC_O | CC_C)
610 printf("fcomi(%f %f)=%016llx\n", a, b, rflags & (CC_Z | CC_P | CC_C));
757 rflags |= CC_C;
814 TEST_BCD(daa, 0x12340503, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A));
815 TEST_BCD(daa, 0x12340506, CC_A, (CC_C | CC_
[all...]
H A Dtest-i386.c46 #define CC_C 0x0001 macro
57 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
106 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O)
144 #define CC_MASK (CC_C)
345 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
347 #define CC_MASK (CC_O | CC_C)
572 printf("fcomi(%f %f)=%08x\n", a, b, eflags & (CC_Z | CC_P | CC_C));
719 eflags |= CC_C;
776 TEST_BCD(daa, 0x12340503, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A));
777 TEST_BCD(daa, 0x12340506, CC_A, (CC_C | CC_
[all...]
H A Dtest-i386.h129 | (c ? CC_C : 0)
139 exec_opl(s0, s1, CC_C);
140 exec_opw(s0, s1, CC_C);
141 exec_opb(s0, s1, CC_C);
H A Dtest-amd64.h120 | (c ? CC_C : 0)
132 exec_opq(s0, s1, CC_C);
133 exec_opl(s0, s1, CC_C);
134 exec_opw(s0, s1, CC_C);
135 exec_opb(s0, s1, CC_C);
H A Dtest-i386-shift.h122 | (c ? CC_C : 0)
H A Dtest-amd64-shift.h136 | (c ? CC_C : 0)
/external/qemu/target-i386/
H A Dhelper_template.h210 cf = (CC_SRC >> (DATA_BITS - 1)) & CC_C;
222 return (CC_SRC >> (DATA_BITS - 1)) & CC_C;
286 res = (t0 << count) | ((target_ulong)(eflags & CC_C) << (count - 1));
290 env->cc_tmp = (eflags & ~(CC_C | CC_O)) |
292 ((src >> (DATA_BITS - count)) & CC_C);
315 res = (t0 >> count) | ((target_ulong)(eflags & CC_C) << (DATA_BITS - count));
319 env->cc_tmp = (eflags & ~(CC_C | CC_O)) |
321 ((src >> (count - 1)) & CC_C);
H A Dexec.h279 CC_SRC = eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
H A Dop_helper.c1499 load_eflags(0, ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
1563 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
1579 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
1783 eflags |= CC_C | CC_A;
1785 eflags &= ~(CC_C | CC_A);
1807 eflags |= CC_C | CC_A;
1809 eflags &= ~(CC_C | CC_A);
1822 cf = eflags & CC_C;
1833 eflags |= CC_C;
1849 cf = eflags & CC_C;
[all...]
H A Dcpu.h101 #define CC_C 0x0001 macro
H A Dhelper.c703 eflags & CC_C ? 'C' : '-',
730 eflags & CC_C ? 'C' : '-',
H A Dtranslate.c1627 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~(CC_O | CC_C));
1635 tcg_gen_andi_tl(t0, t0, CC_C);
1706 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~(CC_O | CC_C));
1714 tcg_gen_andi_tl(t0, t0, CC_C);
6399 tcg_gen_andi_tl(cpu_T[0], cpu_T[0], CC_S | CC_Z | CC_A | CC_P | CC_C);
6417 tcg_gen_xori_tl(cpu_cc_src, cpu_cc_src, CC_C);
6424 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~CC_C);
6431 tcg_gen_ori_tl(cpu_cc_src, cpu_cc_src, CC_C);
/external/clang/include/clang/Basic/
H A DSpecifiers.h204 CC_C, // __attribute__((cdecl)) enumerator in enum:clang::CallingConv
H A DTargetInfo.h756 return CC_C;
772 case CC_C:
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp48 return CC_C;
H A DMicrosoftCXXABI.cpp38 return CC_C;
H A DMicrosoftMangle.cpp1379 CC = CC_C;
1386 case CC_C: Out << 'A'; break;
/external/valgrind/main/memcheck/tests/amd64/
H A Dmore_x87_fp.c62 #define CC_C 0x0001 macro
90 printf("fcomi(%f %f)=%08llx\n", a, b, eflags & (CC_Z | CC_P | CC_C));
237 eflags |= CC_C;
/external/valgrind/main/memcheck/tests/x86/
H A Dmore_x86_fp.c52 #define CC_C 0x0001 macro
80 printf("fcomi(%f %f)=%08x\n", a, b, eflags & (CC_Z | CC_P | CC_C));
227 eflags |= CC_C;
/external/valgrind/main/none/tests/amd64/
H A Damd64locked.c210 #define CC_C 0x0001 macro
217 #define CC_MASK (CC_C | CC_P | CC_A | CC_Z | CC_S | CC_O)
241 | (c ? CC_C : 0) \
335 | (c ? CC_C : 0) \
451 | (c ? CC_C : 0) \
/external/valgrind/main/none/tests/x86/
H A Dx86locked.c195 #define CC_C 0x0001 macro
202 #define CC_MASK (CC_C | CC_P | CC_A | CC_Z | CC_S | CC_O)
226 | (c ? CC_C : 0) \
313 | (c ? CC_C : 0) \
415 | (c ? CC_C : 0) \
/external/qemu/
H A Dcpu-exec.c277 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
280 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
615 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_lowering_nv50.cpp93 i[6]->setPredicate(CC_C, c[0]);
639 const CondCode cc[4] = { CC_EQU, CC_S, CC_C, CC_O };
H A Dnv50_ir.h195 CC_C = 0x16, enumerator in enum:nv50_ir::CondCode
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_lowering_nv50.cpp93 i[6]->setPredicate(CC_C, c[0]);
639 const CondCode cc[4] = { CC_EQU, CC_S, CC_C, CC_O };

Completed in 498 milliseconds

12