Lines Matching refs:cc
322 // Returns the equivalent of !cc.
326 inline Condition NegateCondition(Condition cc) {
327 return static_cast<Condition>(cc ^ 1);
332 inline Condition ReverseCondition(Condition cc) {
333 switch (cc) {
351 return cc;
738 void cmovq(Condition cc, Register dst, Register src);
739 void cmovq(Condition cc, Register dst, const Operand& src);
740 void cmovl(Condition cc, Register dst, Register src);
741 void cmovl(Condition cc, Register dst, const Operand& src);
1179 void setcc(Condition cc, Register reg);
1183 // Takes a branch opcode (cc) and a label (L) and generates
1188 // j(cc, &L); // forward branch to unbound label
1190 // j(cc, &L); // backward branch to bound label
1231 void j(Condition cc,
1234 void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode);