Searched defs:nzcv (Results 1 - 12 of 12) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_arm64_helpers.c120 /* (nzcv:28x0, unused, unused) */
238 /* (nzcv:28x0, unused, unused) */
357 /* (nzcv:28x0, unused, unused) */
467 /* (nzcv:28x0, unused, unused) */
1166 ULong nzcv = 0; local
1168 nzcv |= arm64g_calculate_flags_nzcv(
1174 vassert(0 == (nzcv & 0xFFFFFFFF0FFFFFFFULL));
1198 return nzcv;
H A Dguest_arm64_toIR.c1464 IRTemp cond, IRTemp argL, IRTemp argR, UInt nzcv
1469 CC_DEP1 = ITE(cond, argL64, nzcv << 28)
1501 assign(f_dep1, mkU64(nzcv << 28));
1698 IRTemp nzcv = newTemp(Ity_I64); local
1704 4 bits of 'nzcv'. */
1705 /* Map compare result from IR to ARM(nzcv) */
1707 FP cmp result | IR | ARM(nzcv)
1761 assign(nzcv, binop(Iop_Sub64, mkexpr(termL), mkexpr(termR)));
1762 return nzcv;
2684 sf 1 111010010 imm5 cond 10 Rn 0 nzcv CCM
2698 UInt nzcv = INSN(3,0); local
2737 UInt nzcv = INSN(3,0); local
5845 IRTemp nzcv = mk_convert_IRCmpF64Result_to_NZCV(irRes); local
[all...]
H A Dguest_arm_toIR.c2499 IRTemp nzcv = newTemp(Ity_I32); local
2504 4 bits of 'nzcv'. */
2505 /* Map compare result from IR to ARM(nzcv) */
2507 FP cmp result | IR | ARM(nzcv)
2559 assign(nzcv, binop(Iop_Sub32, mkexpr(termL), mkexpr(termR)));
2560 return nzcv;
13590 IRTemp nzcv = IRTemp_INVALID; local
13597 bottom 4 bits of 'nzcv'. */
13598 /* Map compare result from IR to ARM(nzcv) */
13600 FP cmp result | IR | ARM(nzcv)
14079 IRTemp nzcv = IRTemp_INVALID; local
[all...]
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64-inl.h1145 Instr Assembler::Nzcv(StatusFlags nzcv) { argument
1146 return ((nzcv >> Flags_offset) & 0xf) << Nzcv_offset;
H A Ddisasm-arm64.cc1162 case NZCV: form = "'Xt, nzcv"; break;
1171 case NZCV: form = "nzcv, 'Xt"; break;
1440 int nzcv = (instr->Nzcv() << Flags_offset); local
1441 AppendToOutput("#%c%c%c%c", ((nzcv & NFlag) == 0) ? 'n' : 'N',
1442 ((nzcv & ZFlag) == 0) ? 'z' : 'Z',
1443 ((nzcv & CFlag) == 0) ? 'c' : 'C',
1444 ((nzcv & VFlag) == 0) ? 'v' : 'V');
H A Dmacro-assembler-arm64-inl.h127 StatusFlags nzcv,
131 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMN);
133 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMP);
140 StatusFlags nzcv,
144 ConditionalCompareMacro(rn, -operand.ImmediateValue(), nzcv, cond, CCMP);
146 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMN);
558 StatusFlags nzcv,
562 fccmp(fn, fm, nzcv, cond);
125 Ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
138 Ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
556 Fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
H A Dassembler-arm64.cc1405 StatusFlags nzcv,
1407 ConditionalCompare(rn, operand, nzcv, cond, CCMN);
1413 StatusFlags nzcv,
1415 ConditionalCompare(rn, operand, nzcv, cond, CCMP);
1966 StatusFlags nzcv,
1969 Emit(FPType(fn) | FCCMP | Rm(fm) | Cond(cond) | Rn(fn) | Nzcv(nzcv));
2310 StatusFlags nzcv,
2323 Emit(SF(rn) | ccmpop | Cond(cond) | Rn(rn) | Nzcv(nzcv));
1403 ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
1411 ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
1964 fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
2308 ConditionalCompare(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) argument
H A Dmacro-assembler-arm64.cc350 StatusFlags nzcv,
358 ConditionalCompareMacro(rn, temp, nzcv, cond, op);
365 ConditionalCompare(rn, operand, nzcv, cond, op);
373 ConditionalCompare(rn, temp, nzcv, cond, op);
348 ConditionalCompareMacro(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) argument
/external/vixl/src/a64/
H A Ddisasm-a64.cc1170 case NZCV: form = "'Xt, nzcv"; break;
1179 case NZCV: form = "nzcv, 'Xt"; break;
1434 int nzcv = (instr->Nzcv() << Flags_offset); local
1435 AppendToOutput("#%c%c%c%c", ((nzcv & NFlag) == 0) ? 'n' : 'N',
1436 ((nzcv & ZFlag) == 0) ? 'z' : 'Z',
1437 ((nzcv & CFlag) == 0) ? 'c' : 'C',
1438 ((nzcv & VFlag) == 0) ? 'v' : 'V');
H A Dmacro-assembler-a64.cc388 StatusFlags nzcv,
392 ConditionalCompareMacro(rn, -operand.immediate(), nzcv, cond, CCMN);
394 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMP);
401 StatusFlags nzcv,
405 ConditionalCompareMacro(rn, -operand.immediate(), nzcv, cond, CCMP);
407 ConditionalCompareMacro(rn, operand, nzcv, cond, CCMN);
414 StatusFlags nzcv,
422 ConditionalCompare(rn, operand, nzcv, cond, op);
429 ConditionalCompare(rn, temp, nzcv, cond, op);
386 Ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
399 Ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
412 ConditionalCompareMacro(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) argument
H A Dmacro-assembler-a64.h194 StatusFlags nzcv,
198 StatusFlags nzcv,
202 StatusFlags nzcv,
540 StatusFlags nzcv,
544 fccmp(fn, fm, nzcv, cond);
538 Fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
H A Dassembler-a64.cc858 StatusFlags nzcv,
860 ConditionalCompare(rn, operand, nzcv, cond, CCMN);
866 StatusFlags nzcv,
868 ConditionalCompare(rn, operand, nzcv, cond, CCMP);
1408 StatusFlags nzcv,
1411 Emit(FPType(fn) | FCCMP | Rm(fm) | Cond(cond) | Rn(fn) | Nzcv(nzcv));
1696 StatusFlags nzcv,
1708 Emit(SF(rn) | ccmpop | Cond(cond) | Rn(rn) | Nzcv(nzcv));
856 ccmn(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
864 ccmp(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond) argument
1406 fccmp(const FPRegister& fn, const FPRegister& fm, StatusFlags nzcv, Condition cond) argument
1694 ConditionalCompare(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) argument

Completed in 263 milliseconds