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

/external/clang/lib/AST/
H A DItaniumCXXABI.cpp43 return CC_C;
H A DMicrosoftCXXABI.cpp36 return CC_C;
H A DMicrosoftMangle.cpp862 CC = IsInstMethod ? getASTContext().getDefaultMethodCallConv() : CC_C;
867 case CC_C: Out << 'A'; break;
H A DDumpXML.cpp920 case CC_C: return set("cc", "cdecl");
H A DTypePrinter.cpp432 case CC_C:
H A DType.cpp1530 case CC_C: return "cdecl";
/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.c697 eflags & CC_C ? 'C' : '-',
724 eflags & CC_C ? 'C' : '-',
H A Dtranslate.c1626 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~(CC_O | CC_C));
1634 tcg_gen_andi_tl(t0, t0, CC_C);
1705 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~(CC_O | CC_C));
1713 tcg_gen_andi_tl(t0, t0, CC_C);
6398 tcg_gen_andi_tl(cpu_T[0], cpu_T[0], CC_S | CC_Z | CC_A | CC_P | CC_C);
6416 tcg_gen_xori_tl(cpu_cc_src, cpu_cc_src, CC_C);
6423 tcg_gen_andi_tl(cpu_cc_src, cpu_cc_src, ~CC_C);
6430 tcg_gen_ori_tl(cpu_cc_src, cpu_cc_src, CC_C);
H A Dops_sse.h899 const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C};
1480 CC_SRC = (zf ? 0 : CC_Z) | (cf ? 0 : CC_C);
1890 CC_SRC |= CC_C;
/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.c259 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
262 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
592 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
/external/clang/include/clang/AST/
H A DASTContext.h1329 if (!LangOpts.MRTD && CC == CC_C)
H A DType.h441 CC_C, // __attribute__((cdecl)) enumerator in enum:clang::CallingConv
/external/clang/lib/CodeGen/
H A DCGCall.cpp111 return CC_C;
H A DTargetInfo.cpp974 if (CC == CC_Default || CC == CC_C) return true;
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp3001 case AttributeList::AT_cdecl: CC = CC_C; break;

Completed in 1572 milliseconds