mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2013 - 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu
|
|
* @defgroup cpu_native Native
|
|
* @brief Native CPU specific code
|
|
* @details The native CPU uses system calls to simulate hardware access.
|
|
* @ingroup cpu
|
|
* @brief CPU abstraction for the native port
|
|
* @{
|
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
|
*/
|
|
|
|
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include "cpu_conf.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief The CPU supports unaligned memory access.
|
|
* Even if the underlying architecture does not support it, the kernel will take care of it.
|
|
*/
|
|
#define CPU_HAS_UNALIGNED_ACCESS
|
|
|
|
/**
|
|
* @brief Gets the address the callee will return to
|
|
*/
|
|
__attribute__((always_inline)) static inline uintptr_t cpu_get_caller_pc(void)
|
|
{
|
|
/* __builtin_return_address will return the address the calling function
|
|
* will return to - since cpu_get_caller_pc is forced inline,
|
|
* it is the return address of the user of this function */
|
|
return (uintptr_t)__builtin_return_address(0);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
#endif /* CPU_H */
|