Lines Matching defs:Condition

766   enum Condition {
1252 inline void cbcond(Condition c, CC cc, Register s1, Register s2, Label& L);
1253 inline void cbcond(Condition c, CC cc, Register s1, int simm5, Label& L);
1259 inline void fb( Condition c, bool a, address d, relocInfo::relocType rt = relocInfo::none );
1260 inline void fb( Condition c, bool a, Label& L );
1264 inline void fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1265 inline void fbp( Condition c, bool a, CC cc, Predict p, Label& L );
1269 inline void br( Condition c, bool a, address d, relocInfo::relocType rt = relocInfo::none );
1270 inline void br( Condition c, bool a, Label& L );
1274 inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1275 inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
1279 inline void cb( Condition c, bool a, address d, relocInfo::relocType rt = relocInfo::none );
1280 inline void cb( Condition c, bool a, Label& L );
1534 void fmov( FloatRegisterImpl::Width w, Condition c, bool floatCC, CC cca, FloatRegister s2, FloatRegister d ) { v9_only(); emit_long( op(arith_op) | fd(d, w) | op3(fpop2_op3) | cond_mov(c) | opf_cc(cca, floatCC) | opf_low6(w) | fs2(s2, w)); }
1542 void movcc( Condition c, bool floatCC, CC cca, Register s2, Register d ) { v9_only(); emit_long( op(arith_op) | rd(d) | op3(movcc_op3) | mov_cc(cca, floatCC) | cond_mov(c) | rs2(s2) ); }
1543 void movcc( Condition c, bool floatCC, CC cca, int simm11a, Register d ) { v9_only(); emit_long( op(arith_op) | rd(d) | op3(movcc_op3) | mov_cc(cca, floatCC) | cond_mov(c) | immed(true) | simm(simm11a, 11) ); }
1771 void trap( Condition c, CC cc, Register s1, Register s2 ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | rs2(s2)); }
1772 void trap( Condition c, CC cc, Register s1, int trapa ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | immed(true) | u_field(trapa, 6, 0)); }
1806 // Condition (the one you would use to get the same effect after "tst" on
1808 Assembler::Condition reg_cond_to_cc_cond(RCondition in);
1928 inline void br( Condition c, bool a, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1929 inline void br( Condition c, bool a, Predict p, Label& L );
1931 inline void fb( Condition c, bool a, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1932 inline void fb( Condition c, bool a, Predict p, Label& L );
1935 void cmp_zero_and_br( Condition c, Register s1, Label& L, bool a = false, Predict p = pn );
1948 void cmp_and_br_short(Register s1, Register s2, Condition c, Predict p, Label& L);
1949 void cmp_and_br_short(Register s1, int simm13a, Condition c, Predict p, Label& L);
1951 void cmp_and_brx_short(Register s1, Register s2, Condition c, Predict p, Label& L);
1952 void cmp_and_brx_short(Register s1, int simm13a, Condition c, Predict p, Label& L);
1961 inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1962 inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
1965 inline void brx( Condition c, bool a, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1966 inline void brx( Condition c, bool a, Predict p, Label& L );
1972 inline void fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
1973 inline void fbp( Condition c, bool a, CC cc, Predict p, Label& L );
2224 void breakpoint_trap(Condition c, CC cc);
2610 Condition negate_condition(Condition cond);
2614 void cond_inc(Condition cond, address counter_addr, Register Rtemp1, Register Rtemp2);
2646 const bool* flag_addr, Assembler::Condition condition);