Lines Matching refs:imm19
569 void b(int64_t imm19, Condition cond);
581 void cbz(const Register& rt, int64_t imm19);
587 void cbnz(const Register& rt, int64_t imm19);
1316 // Load integer or FP register from pc + imm19 << 2.
1317 void ldr(const CPURegister& rt, int64_t imm19);
1319 // Load word with sign extension from pc + imm19 << 2.
1320 void ldrsw(const Register& xt, int64_t imm19);
2090 // Prefetch from pc + imm19 << 2.
2091 void prfm(PrefetchOperation op, int64_t imm19);
2106 // Prefetch from pc + imm19 << 2 (allowing unallocated hints).
2107 void prfm(int op, int64_t imm19);
7248 static Instr ImmCondBranch(int64_t imm19) {
7249 VIXL_ASSERT(IsInt19(imm19));
7250 return TruncateToUint19(imm19) << ImmCondBranch_offset;
7253 static Instr ImmCmpBranch(int64_t imm19) {
7254 VIXL_ASSERT(IsInt19(imm19));
7255 return TruncateToUint19(imm19) << ImmCmpBranch_offset;
7368 static Instr ImmLLiteral(int64_t imm19) {
7369 VIXL_ASSERT(IsInt19(imm19));
7370 return TruncateToUint19(imm19) << ImmLLiteral_offset;