Lines Matching refs:cc
229 // Returns the equivalent of !cc.
233 inline Condition NegateCondition(Condition cc) {
234 return static_cast<Condition>(cc ^ 1);
239 inline Condition ReverseCondition(Condition cc) {
240 switch (cc) {
258 return cc;
722 void cmov(Condition cc, Register dst, Register src) {
723 cmov(cc, dst, Operand(src));
725 void cmov(Condition cc, Register dst, const Operand& src);
860 // Takes a branch opcode (cc) and a label (L) and generates
865 // j(cc, &L); // forward branch to unbound label
867 // j(cc, &L); // backward branch to bound label
895 void j(Condition cc,
898 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
899 void j(Condition cc, Handle<Code> code);
971 void setcc(Condition cc, Register reg);