Lines Matching refs:rd

310     void Mov(const Register &rd, const Immediate &imm);
311 void Mov(const Register &rd, const Register &rm);
312 void Movz(const Register &rd, uint64_t imm, int shift);
313 void Movk(const Register &rd, uint64_t imm, int shift);
314 void Movn(const Register &rd, uint64_t imm, int shift);
315 void Orr(const Register &rd, const Register &rn, const LogicalImmediate &imm);
316 void Orr(const Register &rd, const Register &rn, const Operand &operand);
317 void And(const Register &rd, const Register &rn, const Operand &operand);
318 void Ands(const Register &rd, const Register &rn, const Operand &operand);
319 void And(const Register &rd, const Register &rn, const LogicalImmediate &imm);
320 void Ands(const Register &rd, const Register &rn, const LogicalImmediate &imm);
321 void Lsr(const Register &rd, const Register &rn, unsigned shift);
322 void Lsl(const Register &rd, const Register &rn, const Register &rm);
323 void Lsr(const Register &rd, const Register &rn, const Register &rm);
324 void Ubfm(const Register &rd, const Register &rn, unsigned immr, unsigned imms);
325 void Bfm(const Register &rd, const Register &rn, unsigned immr, unsigned imms);
327 void Add(const Register &rd, const Register &rn, const Operand &operand);
328 void Adds(const Register &rd, const Register &rn, const Operand &operand);
329 void Sub(const Register &rd, const Register &rn, const Operand &operand);
330 void Subs(const Register &rd, const Register &rn, const Operand &operand);
331 void Cmp(const Register &rd, const Operand &operand);
332 void CMov(const Register &rd, const Register &rn, const Operand &operand, Condition cond);
408 void AddSubImm(AddSubOpCode op, const Register &rd, const Register &rn, bool setFlags, uint64_t imm);
409 void AddSubReg(AddSubOpCode op, const Register &rd, const Register &rn, bool setFlags, const Operand &operand);
410 void MovWide(uint32_t op, const Register &rd, uint64_t imm, int shift);
411 void BitWiseOpImm(BitwiseOpCode op, const Register &rd, const Register &rn, uint64_t imm);
412 void BitWiseOpShift(BitwiseOpCode op, const Register &rd, const Register &rn, const Operand &operand);
413 bool TrySequenceOfOnes(const Register &rd, uint64_t imm);
414 bool TryReplicateHWords(const Register &rd, uint64_t imm);
415 void EmitMovInstruct(const Register &rd, uint64_t imm,