summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/metal/compiler.h
blob: 80ca5fee49120054abfea09d0179c448791c42ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright 2018 SiFive, Inc */
/* SPDX-License-Identifier: Apache-2.0 */

#ifndef METAL__COMPILER_H
#define METAL__COMPILER_H

#define __METAL_DECLARE_VTABLE(type) extern const struct type type;

#define __METAL_DEFINE_VTABLE(type) const struct type type

#define __METAL_GET_FIELD(reg, mask)                                           \
    (((reg) & (mask)) / ((mask) & ~((mask) << 1)))

/* Set field with mask for a given value */
#define __METAL_SET_FIELD(reg, mask, val)                                      \
    (((reg) & ~(mask)) | (((val) * ((mask) & ~((mask) << 1))) & (mask)))

#define __METAL_MIN(a, b) ((a) < (b) ? (a) : (b))
#define __METAL_MAX(a, b) ((a) > (b) ? (a) : (b))

void _metal_trap(int ecode);

#endif