FFmpeg
cpu.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2022 Rémi Denis-Courmont.
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVUTIL_RISCV_CPU_H
22 #define AVUTIL_RISCV_CPU_H
23 
24 #include "config.h"
25 #include <stdbool.h>
26 #include <stddef.h>
28 #include "libavutil/cpu.h"
29 
30 #ifndef __riscv_zbb
32 #endif
33 
34 static inline av_const bool ff_rv_zbb_support(void)
35 {
36 #ifndef __riscv_zbb
37  return ff_rv_zbb_supported;
38 #else
39  return true;
40 #endif
41 }
42 
43 #if HAVE_RVV
44 /**
45  * Returns the vector size in bytes (always a power of two and at least 4).
46  * This is undefined behaviour if vectors are not implemented.
47  */
48 static inline size_t ff_get_rv_vlenb(void)
49 {
50  size_t vlenb;
51 
52  __asm__ (
53  ".option push\n"
54  ".option arch, +v\n"
55  " csrr %0, vlenb\n"
56  ".option pop\n" : "=r" (vlenb));
57  return vlenb;
58 }
59 
60 /**
61  * Checks that the vector bit-size is at least the given value.
62  * This is potentially undefined behaviour if vectors are not implemented.
63  */
64 static inline bool ff_rv_vlen_least(unsigned int bits)
65 {
66 #ifdef __riscv_v_min_vlen
67  if (bits <= __riscv_v_min_vlen)
68  return true;
69 #else
70  /*
71  * Vector lengths smaller than 128 bits are only possible in embedded cases
72  * and cannot be run-time detected, so we can assume 128 bits at least.
73  */
74  if (bits <= 128)
75  return true;
76 #endif
77  return bits <= (8 * ff_get_rv_vlenb());
78 }
79 #endif
80 #endif /* HAVE_RVV */
av_const
#define av_const
Definition: attributes.h:84
attribute_visibility_hidden
#define attribute_visibility_hidden
Definition: attributes_internal.h:29
attributes_internal.h
ff_rv_zbb_support
static av_const bool ff_rv_zbb_support(void)
Definition: cpu.h:34
bits
uint8_t bits
Definition: vp3data.h:128
cpu.h
__asm__
__asm__(".macro parse_r var r\n\t" "\\var = -1\n\t" _IFC_REG(0) _IFC_REG(1) _IFC_REG(2) _IFC_REG(3) _IFC_REG(4) _IFC_REG(5) _IFC_REG(6) _IFC_REG(7) _IFC_REG(8) _IFC_REG(9) _IFC_REG(10) _IFC_REG(11) _IFC_REG(12) _IFC_REG(13) _IFC_REG(14) _IFC_REG(15) _IFC_REG(16) _IFC_REG(17) _IFC_REG(18) _IFC_REG(19) _IFC_REG(20) _IFC_REG(21) _IFC_REG(22) _IFC_REG(23) _IFC_REG(24) _IFC_REG(25) _IFC_REG(26) _IFC_REG(27) _IFC_REG(28) _IFC_REG(29) _IFC_REG(30) _IFC_REG(31) ".iflt \\var\n\t" ".error \"Unable to parse register name \\r\"\n\t" ".endif\n\t" ".endm")
ff_rv_zbb_supported
attribute_visibility_hidden bool ff_rv_zbb_supported
Definition: cpu_common.c:24