FFmpeg
cpu.c
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 #define _GNU_SOURCE
22 #include "libavutil/cpu.h"
23 #include "libavutil/cpu_internal.h"
24 #include "libavutil/macros.h"
25 #include "libavutil/log.h"
26 #include "config.h"
27 
28 #if HAVE_GETAUXVAL
29 #include <sys/auxv.h>
30 #define HWCAP_RV(letter) (1ul << ((letter) - 'A'))
31 #endif
32 #if HAVE_SYS_HWPROBE_H
33 #include <sys/hwprobe.h>
34 #endif
35 
37 {
38  int ret = 0;
39 #if HAVE_SYS_HWPROBE_H
40  struct riscv_hwprobe pairs[] = {
41  { RISCV_HWPROBE_KEY_BASE_BEHAVIOR, 0 },
42  { RISCV_HWPROBE_KEY_IMA_EXT_0, 0 },
43  };
44 
45  if (__riscv_hwprobe(pairs, FF_ARRAY_ELEMS(pairs), 0, NULL, 0) == 0) {
46  if (pairs[0].value & RISCV_HWPROBE_BASE_BEHAVIOR_IMA)
48  if (pairs[1].value & RISCV_HWPROBE_IMA_FD)
50  if (pairs[1].value & RISCV_HWPROBE_IMA_V)
53  if (pairs[1].value & RISCV_HWPROBE_EXT_ZBA)
55  if (pairs[1].value & RISCV_HWPROBE_EXT_ZBB)
57 #ifdef RISCV_HWPROBE_EXT_ZVBB
58  if (pairs[1].value & RISCV_HWPROBE_EXT_ZVBB)
60 #endif
61  } else
62 #endif
63 #if HAVE_GETAUXVAL
64  {
65  const unsigned long hwcap = getauxval(AT_HWCAP);
66 
67  if (hwcap & HWCAP_RV('I'))
69  if (hwcap & HWCAP_RV('F'))
71  if (hwcap & HWCAP_RV('D'))
73  if (hwcap & HWCAP_RV('B'))
75 
76  /* The V extension implies all Zve* functional subsets */
77  if (hwcap & HWCAP_RV('V'))
80  }
81 #endif
82 
83 #ifdef __riscv_i
85 #endif
86 #if defined (__riscv_flen) && (__riscv_flen >= 32)
88 #if (__riscv_flen >= 64)
90 #endif
91 #endif
92 
93 #ifdef __riscv_zba
95 #endif
96 #ifdef __riscv_zbb
98 #endif
99 
100  /* If RV-V is enabled statically at compile-time, check the details. */
101 #ifdef __riscv_vector
103 #if __riscv_v_elen >= 64
105 #endif
106 #if __riscv_v_elen_fp >= 32
108 #if __riscv_v_elen_fp >= 64
110 #endif
111 #endif
112 #endif
113 #ifdef __riscv_zvbb
115 #endif
116 
117  return ret;
118 }
AV_CPU_FLAG_RVB_BASIC
#define AV_CPU_FLAG_RVB_BASIC
Basic bit-manipulations.
Definition: cpu.h:91
AV_CPU_FLAG_RV_ZVBB
#define AV_CPU_FLAG_RV_ZVBB
Vector basic bit-manipulations.
Definition: cpu.h:93
AV_CPU_FLAG_RVF
#define AV_CPU_FLAG_RVF
F (single precision FP)
Definition: cpu.h:85
AV_CPU_FLAG_RVV_F64
#define AV_CPU_FLAG_RVV_F64
Vectors of double's.
Definition: cpu.h:90
macros.h
AV_CPU_FLAG_RVV_F32
#define AV_CPU_FLAG_RVV_F32
Vectors of float's *‍/.
Definition: cpu.h:88
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
cpu_internal.h
AV_CPU_FLAG_RVB_ADDR
#define AV_CPU_FLAG_RVB_ADDR
Address bit-manipulations.
Definition: cpu.h:92
AV_CPU_FLAG_RVD
#define AV_CPU_FLAG_RVD
D (double precision FP)
Definition: cpu.h:86
NULL
#define NULL
Definition: coverity.c:32
cpu.h
log.h
AV_CPU_FLAG_RVV_I32
#define AV_CPU_FLAG_RVV_I32
Vectors of 8/16/32-bit int's *‍/.
Definition: cpu.h:87
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
ret
ret
Definition: filter_design.txt:187
AV_CPU_FLAG_RVI
#define AV_CPU_FLAG_RVI
I (full GPR bank)
Definition: cpu.h:84
AV_CPU_FLAG_RVV_I64
#define AV_CPU_FLAG_RVV_I64
Vectors of 64-bit int's *‍/.
Definition: cpu.h:89
ff_get_cpu_flags_riscv
int ff_get_cpu_flags_riscv(void)
Definition: cpu.c:36