summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/bsp/install/include/metal/compiler.h
blob: 62c0ea975e37ce1d48f550a4620f8268b6b5011e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 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)))

void _metal_trap(int ecode);

#endif