Searched refs:emit_auipc_and_next (Results 1 – 1 of 1) sorted by relevance
/art/compiler/utils/riscv64/ |
D | assembler_riscv64.cc | 7081 auto emit_auipc_and_next = [&](XRegister reg, auto next) { in EmitBranch() local 7154 emit_auipc_and_next(TMP, [&](int32_t short_offset) { Jalr(Zero, TMP, short_offset); }); in EmitBranch() 7158 emit_auipc_and_next(lhs, [&](int32_t short_offset) { Jalr(lhs, lhs, short_offset); }); in EmitBranch() 7163 emit_auipc_and_next(lhs, [&](int32_t short_offset) { Addi(lhs, lhs, short_offset); }); in EmitBranch() 7167 emit_auipc_and_next(lhs, [&](int32_t short_offset) { Lw(lhs, lhs, short_offset); }); in EmitBranch() 7170 emit_auipc_and_next(lhs, [&](int32_t short_offset) { Lwu(lhs, lhs, short_offset); }); in EmitBranch() 7173 emit_auipc_and_next(lhs, [&](int32_t short_offset) { Ld(lhs, lhs, short_offset); }); in EmitBranch() 7176 emit_auipc_and_next( in EmitBranch() 7180 emit_auipc_and_next( in EmitBranch()
|