@web-font-path: "roboto-debian.css";
Loading...
Searching...
No Matches
divider.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef _PICO_DIVIDER_H
8#define _PICO_DIVIDER_H
9
10#include "pico.h"
11#include "hardware/divider.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
42int32_t div_s32s32(int32_t a, int32_t b);
43
53static inline int32_t divmod_s32s32_rem(int32_t a, int32_t b, int32_t *rem) {
54 divmod_result_t r = hw_divider_divmod_s32(a, b);
55 *rem = to_remainder_s32(r);
56 return to_quotient_s32(r);
57}
58
67divmod_result_t divmod_s32s32(int32_t a, int32_t b);
68
77uint32_t div_u32u32(uint32_t a, uint32_t b);
78
88static inline uint32_t divmod_u32u32_rem(uint32_t a, uint32_t b, uint32_t *rem) {
89 divmod_result_t r = hw_divider_divmod_u32(a, b);
90 *rem = to_remainder_u32(r);
91 return to_quotient_u32(r);
92}
93
102divmod_result_t divmod_u32u32(uint32_t a, uint32_t b);
103
112int64_t div_s64s64(int64_t a, int64_t b);
113
123int64_t divmod_s64s64_rem(int64_t a, int64_t b, int64_t *rem);
124
133int64_t divmod_s64s64(int64_t a, int64_t b);
134
143uint64_t div_u64u64(uint64_t a, uint64_t b);
144
154uint64_t divmod_u64u64_rem(uint64_t a, uint64_t b, uint64_t *rem);
155
156
165uint64_t divmod_u64u64(uint64_t a, uint64_t b);
166
167// -----------------------------------------------------------------------
168// these "unsafe" functions are slightly faster, but do not save the divider state,
169// so are not generally safe to be called from interrupts
170// -----------------------------------------------------------------------
171
182int32_t div_s32s32_unsafe(int32_t a, int32_t b);
183
195int32_t divmod_s32s32_rem_unsafe(int32_t a, int32_t b, int32_t *rem);
196
207divmod_result_t divmod_s32s32_unsafe(int32_t a, int32_t b);
208
219uint32_t div_u32u32_unsafe(uint32_t a, uint32_t b);
220
232uint32_t divmod_u32u32_rem_unsafe(uint32_t a, uint32_t b, uint32_t *rem);
233
244divmod_result_t divmod_u32u32_unsafe(uint32_t a, uint32_t b);
245
256int64_t div_s64s64_unsafe(int64_t a, int64_t b);
257
269int64_t divmod_s64s64_rem_unsafe(int64_t a, int64_t b, int64_t *rem);
270
281int64_t divmod_s64s64_unsafe(int64_t a, int64_t b);
282
293uint64_t div_u64u64_unsafe(uint64_t a, uint64_t b);
294
306uint64_t divmod_u64u64_rem_unsafe(uint64_t a, uint64_t b, uint64_t *rem);
307
318uint64_t divmod_u64u64_unsafe(uint64_t a, uint64_t b);
319
320#ifdef __cplusplus
321}
322#endif
323#endif
static uint32_t to_quotient_u32(divmod_result_t r)
Efficient extraction of unsigned quotient from 32p32 fixed point.
Definition divider.h:198
static int32_t to_quotient_s32(divmod_result_t r)
Efficient extraction of signed quotient from 32p32 fixed point.
Definition divider.h:208
static int32_t to_remainder_s32(divmod_result_t r)
Efficient extraction of signed remainder from 32p32 fixed point.
Definition divider.h:232
static divmod_result_t hw_divider_divmod_s32(int32_t a, int32_t b)
Do a signed HW divide and wait for result.
Definition divider.h:74
static divmod_result_t hw_divider_divmod_u32(uint32_t a, uint32_t b)
Do an unsigned HW divide and wait for result.
Definition divider.h:92
static uint32_t to_remainder_u32(divmod_result_t r)
Efficient extraction of unsigned remainder from 32p32 fixed point.
Definition divider.h:220
static uint32_t divmod_u32u32_rem(uint32_t a, uint32_t b, uint32_t *rem)
Integer divide of two unsigned 32-bit values, with remainder.
Definition divider.h:88
int64_t div_s64s64(int64_t a, int64_t b)
Integer divide of two signed 64-bit values.
Definition divider_compiler.c:66
uint32_t divmod_u32u32_rem_unsafe(uint32_t a, uint32_t b, uint32_t *rem)
Unsafe integer divide of two unsigned 32-bit values, with remainder.
Definition divider_compiler.c:105
int32_t divmod_s32s32_rem_unsafe(int32_t a, int32_t b, int32_t *rem)
Unsafe integer divide of two signed 32-bit values, with remainder.
Definition divider_compiler.c:101
uint64_t divmod_u64u64_unsafe(uint64_t a, uint64_t b)
Unsafe integer divide of two signed 64-bit values.
uint64_t div_u64u64(uint64_t a, uint64_t b)
Integer divide of two unsigned 64-bit values.
Definition divider_compiler.c:82
int64_t divmod_s64s64_unsafe(int64_t a, int64_t b)
Unsafe integer divide of two signed 64-bit values.
uint64_t divmod_u64u64(uint64_t a, uint64_t b)
Integer divide of two signed 64-bit values.
Definition divider_compiler.c:93
uint64_t div_u64u64_unsafe(uint64_t a, uint64_t b)
Unsafe integer divide of two unsigned 64-bit values.
Definition divider_compiler.c:113
int32_t div_s32s32(int32_t a, int32_t b)
Integer divide of two signed 32-bit values.
Definition divider_compiler.c:10
divmod_result_t divmod_s32s32_unsafe(int32_t a, int32_t b)
Unsafe integer divide of two unsigned 32-bit values.
Definition divider_compiler.c:102
divmod_result_t divmod_u32u32(uint32_t a, uint32_t b)
Integer divide of two unsigned 32-bit values.
Definition divider_compiler.c:22
int64_t divmod_s64s64_rem(int64_t a, int64_t b, int64_t *rem)
Integer divide of two signed 64-bit values, with remainder.
Definition divider_compiler.c:71
int32_t div_s32s32_unsafe(int32_t a, int32_t b)
Unsafe integer divide of two signed 32-bit values.
Definition divider_compiler.c:100
int64_t divmod_s64s64(int64_t a, int64_t b)
Integer divide of two signed 64-bit values.
Definition divider_compiler.c:77
uint64_t divmod_u64u64_rem_unsafe(uint64_t a, uint64_t b, uint64_t *rem)
Unsafe integer divide of two unsigned 64-bit values, with remainder.
Definition divider_compiler.c:114
uint32_t div_u32u32(uint32_t a, uint32_t b)
Integer divide of two unsigned 32-bit values.
Definition divider_compiler.c:18
static int32_t divmod_s32s32_rem(int32_t a, int32_t b, int32_t *rem)
Integer divide of two signed 32-bit values, with remainder.
Definition divider.h:53
divmod_result_t divmod_s32s32(int32_t a, int32_t b)
Integer divide of two signed 32-bit values.
Definition divider_compiler.c:14
int64_t divmod_s64s64_rem_unsafe(int64_t a, int64_t b, int64_t *rem)
Unsafe integer divide of two signed 64-bit values, with remainder.
Definition divider_compiler.c:109
uint64_t divmod_u64u64_rem(uint64_t a, uint64_t b, uint64_t *rem)
Integer divide of two unsigned 64-bit values, with remainder.
Definition divider_compiler.c:87
divmod_result_t divmod_u32u32_unsafe(uint32_t a, uint32_t b)
Unsafe integer divide of two unsigned 32-bit values.
Definition divider_compiler.c:106
uint32_t div_u32u32_unsafe(uint32_t a, uint32_t b)
Unsafe integer divide of two unsigned 32-bit values.
Definition divider_compiler.c:104
int64_t div_s64s64_unsafe(int64_t a, int64_t b)
Unsafe integer divide of two signed 64-bit values.
Definition divider_compiler.c:108