Lines Matching refs:cc
535 // Takes a branch opcode (cc) and a label (L) and generates
540 // j(cc, &L); // forward branch to unbound label
542 // j(cc, &L); // backward branch to bound label
783 void movt(Register rd, Register rs, uint16_t cc = 0);
784 void movf(Register rd, Register rs, uint16_t cc = 0);
849 FPURegister ft, FPURegister fs, uint16_t cc = 0);
851 void bc1f(int16_t offset, uint16_t cc = 0);
852 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
853 void bc1t(int16_t offset, uint16_t cc = 0);
854 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }