aboutsummaryrefslogtreecommitdiff
path: root/host/include/loongarch64/host/load-extract-al16-al8.h.inc
blob: d1fb59d8af604b13b6dbe904196cdecb6626d70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * SPDX-License-Identifier: GPL-2.0-or-later
 * Atomic extract 64 from 128-bit, LoongArch version.
 *
 * Copyright (C) 2023 Linaro, Ltd.
 */

#ifndef LOONGARCH_LOAD_EXTRACT_AL16_AL8_H
#define LOONGARCH_LOAD_EXTRACT_AL16_AL8_H

#include "host/cpuinfo.h"
#include "tcg/debug-assert.h"

/**
 * load_atom_extract_al16_or_al8:
 * @pv: host address
 * @s: object size in bytes, @s <= 8.
 *
 * Load @s bytes from @pv, when pv % s != 0.  If [p, p+s-1] does not
 * cross an 16-byte boundary then the access must be 16-byte atomic,
 * otherwise the access must be 8-byte atomic.
 */
static inline uint64_t load_atom_extract_al16_or_al8(void *pv, int s)
{
    uintptr_t pi = (uintptr_t)pv;
    Int128 *ptr_align = (Int128 *)(pi & ~7);
    int shr = (pi & 7) * 8;
    uint64_t l, h;

    tcg_debug_assert(HAVE_ATOMIC128_RO);
    asm("vld $vr0, %2, 0\n\t"
        "vpickve2gr.d %0, $vr0, 0\n\t"
        "vpickve2gr.d %1, $vr0, 1"
	: "=r"(l), "=r"(h) : "r"(ptr_align), "m"(*ptr_align) : "f0");

    return (l >> shr) | (h << (-shr & 63));
}

#endif /* LOONGARCH_LOAD_EXTRACT_AL16_AL8_H */