• Home
  • Raw
  • Download

Lines Matching full:void

299     void Ldp(const Register &rt, const Register &rt2, const MemoryOperand &operand);
300 void Stp(const Register &rt, const Register &rt2, const MemoryOperand &operand);
301 void Ldp(const VectorRegister &vt, const VectorRegister &vt2, const MemoryOperand &operand);
302 void Stp(const VectorRegister &vt, const VectorRegister &vt2, const MemoryOperand &operand);
303 void Ldr(const Register &rt, const MemoryOperand &operand);
304 void Ldrh(const Register &rt, const MemoryOperand &operand);
305 void Ldrb(const Register &rt, const MemoryOperand &operand);
306 void Str(const Register &rt, const MemoryOperand &operand);
307 void Ldur(const Register &rt, const MemoryOperand &operand);
308 void Stur(const Register &rt, const MemoryOperand &operand);
309 void Mov(const Register &rd, const Immediate &imm);
310 void Mov(const Register &rd, const Register &rm);
311 void Movz(const Register &rd, uint64_t imm, int shift);
312 void Movk(const Register &rd, uint64_t imm, int shift);
313 void Movn(const Register &rd, uint64_t imm, int shift);
314 void Orr(const Register &rd, const Register &rn, const LogicalImmediate &imm);
315 void Orr(const Register &rd, const Register &rn, const Operand &operand);
316 void And(const Register &rd, const Register &rn, const Operand &operand);
317 void Ands(const Register &rd, const Register &rn, const Operand &operand);
318 void And(const Register &rd, const Register &rn, const LogicalImmediate &imm);
319 void Ands(const Register &rd, const Register &rn, const LogicalImmediate &imm);
320 void Lsr(const Register &rd, const Register &rn, unsigned shift);
321 void Lsl(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);
326 void Add(const Register &rd, const Register &rn, const Operand &operand);
327 void Adds(const Register &rd, const Register &rn, const Operand &operand);
328 void Sub(const Register &rd, const Register &rn, const Operand &operand);
329 void Subs(const Register &rd, const Register &rn, const Operand &operand);
330 void Cmp(const Register &rd, const Operand &operand);
331 void CMov(const Register &rd, const Register &rn, const Operand &operand, Condition cond);
332 void B(Label *label);
333 void B(int32_t imm);
334 void B(Condition cond, Label *label);
335 void B(Condition cond, int32_t imm);
336 void Br(const Register &rn);
337 void Blr(const Register &rn);
338 void Bl(Label *label);
339 void Bl(int32_t imm);
340 void Cbz(const Register &rt, int32_t imm);
341 void Cbz(const Register &rt, Label *label);
342 void Cbnz(const Register &rt, int32_t imm);
343 void Cbnz(const Register &rt, Label *label);
344 void Tbz(const Register &rt, int32_t bitPos, Label *label);
345 void Tbz(const Register &rt, int32_t bitPos, int32_t imm);
346 void Tbnz(const Register &rt, int32_t bitPos, Label *label);
347 void Tbnz(const Register &rt, int32_t bitPos, int32_t imm);
348 void Tst(const Register &rn, const Operand &operand);
349 void Tst(const Register &rn, const LogicalImmediate &imm);
350 void Ret();
351 void Ret(const Register &rn);
352 void Brk(const Immediate &imm);
353 void Bind(Label *target);
407void AddSubImm(AddSubOpCode op, const Register &rd, const Register &rn, bool setFlags, uint64_t im…
408void AddSubReg(AddSubOpCode op, const Register &rd, const Register &rn, bool setFlags, const Opera…
409 void MovWide(uint32_t op, const Register &rd, uint64_t imm, int shift);
410 void BitWiseOpImm(BitwiseOpCode op, const Register &rd, const Register &rn, uint64_t imm);
411void BitWiseOpShift(BitwiseOpCode op, const Register &rd, const Register &rn, const Operand &opera…
414 void EmitMovInstruct(const Register &rd, uint64_t imm,
419 void SetRealOffsetToBranchInst(uint32_t linkPos, int32_t disp);
420 void Ldr(const Register &rt, const MemoryOperand &operand, Scale scale);