Home
last modified time | relevance | path

Searched refs:CC_C (Results 1 – 25 of 29) sorted by relevance

12

/external/valgrind/VEX/test/
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)); in test_fcmp()
719 eflags |= CC_C; in test_fcmov()
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_P | CC_Z | CC_S | CC_A));
[all …]
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)); in test_fcmp()
757 rflags |= CC_C; in test_fcmov()
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_P | CC_Z | CC_S | CC_A));
[all …]
Dtest-amd64.h120 | (c ? CC_C : 0) in exec_op()
132 exec_opq(s0, s1, CC_C); in exec_op()
133 exec_opl(s0, s1, CC_C); in exec_op()
134 exec_opw(s0, s1, CC_C); in exec_op()
135 exec_opb(s0, s1, CC_C); in exec_op()
Dtest-i386.h129 | (c ? CC_C : 0) in exec_op()
139 exec_opl(s0, s1, CC_C); in exec_op()
140 exec_opw(s0, s1, CC_C); in exec_op()
141 exec_opb(s0, s1, CC_C); in exec_op()
Dtest-i386-shift.h122 | (c ? CC_C : 0) in exec_op()
Dtest-amd64-shift.h136 | (c ? CC_C : 0) in exec_op()
/external/valgrind/memcheck/tests/x86/
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)); in test_fcmp()
227 eflags |= CC_C; in test_fcmov()
/external/valgrind/memcheck/tests/amd64/
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)); in test_fcmp()
237 eflags |= CC_C; in test_fcmov()
/external/valgrind/none/tests/x86/
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) \ in GEN_do_locked_G_E()
415 | (c ? CC_C : 0) \
/external/valgrind/none/tests/amd64/
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) \ in GEN_do_locked_G_E()
451 | (c ? CC_C : 0) \
/external/clang/include/clang/Basic/
DSpecifiers.h202 CC_C, // __attribute__((cdecl)) enumerator
DTargetInfo.h840 return CC_C; in getDefaultCallingConv()
857 case CC_C: in checkCallingConvention()
/external/clang/lib/AST/
DItaniumCXXABI.cpp119 return CC_C; in getDefaultMethodCallConv()
DMicrosoftCXXABI.cpp80 return CC_C; in getDefaultMethodCallConv()
DTypePrinter.cpp662 case CC_C: in printFunctionProtoAfter()
DType.cpp1572 case CC_C: return "cdecl"; in getNameForCallConv()
DMicrosoftMangle.cpp1774 case CC_C: Out << 'A'; break; in mangleCallingConvention()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_lowering_nv50.cpp93 i[6]->setPredicate(CC_C, c[0]); in expandIntegerMUL()
639 const CondCode cc[4] = { CC_EQU, CC_S, CC_C, CC_O }; in handleTXB()
Dnv50_ir.h195 CC_C = 0x16, enumerator
Dnv50_ir_emit_nv50.cpp220 case CC_C: enc = 0x11; break; in emitCondCode()
/external/clang/lib/Basic/
DTargets.cpp2364 CC == CC_C || in checkCallingConvention()
2370 return MT == CCMT_Member ? CC_X86ThisCall : CC_C; in getDefaultCallingConv()
3746 return (CC == CC_C || in checkCallingConvention()
3753 return CC_C; in getDefaultCallingConv()
3792 case CC_C: in checkCallingConvention()
/external/clang/lib/CodeGen/
DCGCall.cpp142 return IsWindows ? CC_C : CC_X86_64Win64; in getCallingConventionForDecl()
145 return IsWindows ? CC_X86_64SysV : CC_C; in getCallingConventionForDecl()
147 return CC_C; in getCallingConventionForDecl()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp3411 case AttributeList::AT_CDecl: CC = CC_C; break; in CheckCallingConvAttr()
3418 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C : in CheckCallingConvAttr()
3423 CC_C; in CheckCallingConvAttr()
DSemaLookup.cpp742 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_C); in LookupDirect()
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
Dnv50_ir_emit_nvc0.cpp214 case CC_C: val = 0x16; break; in emitCondCode()

12