Lines Matching defs:CC

305   enum CC {
449 static int branchcc(CC fcca) { return u_field(fcca, 21, 20); }
450 static int cmpcc(CC fcca) { return u_field(fcca, 26, 25); }
456 static int trapcc(CC cc) { return u_field(cc, 12, 11); }
504 static int opf_cc(CC c, bool useFloat) { return u_field((useFloat ? 0 : 4) + c, 13, 11); }
505 static int mov_cc(CC c, bool useFloat) { return u_field(useFloat ? 0 : 1, 18, 18) | u_field(c, 12, 11); }
823 inline void cbcond(Condition c, CC cc, Register s1, Register s2, Label &L);
824 inline void cbcond(Condition c, CC cc, Register s1, int simm5, Label &L);
835 inline void fbp(Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none);
836 inline void fbp(Condition c, bool a, CC cc, Predict p, Label &L);
845 inline void bp(Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none);
846 inline void bp(Condition c, bool a, CC cc, Predict p, Label &L);
890 inline void fcmp(FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2);
891 inline void fcmpe(FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2);
1043 inline void fmov(FloatRegisterImpl::Width w, Condition c, bool floatCC, CC cca, FloatRegister s2, FloatRegister d);
1051 inline void movcc(Condition c, bool floatCC, CC cca, Register s2, Register d);
1052 inline void movcc(Condition c, bool floatCC, CC cca, int simm11a, Register d);
1230 inline void trap(Condition c, CC cc, Register s1, Register s2);
1231 inline void trap(Condition c, CC cc, Register s1, int trapa);