mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
35 lines
843 B
C++
35 lines
843 B
C++
/*
|
|
* \brief Constants definitions for the ARM architecture.
|
|
* \author Sebastian Sumpf
|
|
* \date 2014-02-20
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__SPEC__ARM__CPU__CONSTS_H_
|
|
#define _INCLUDE__SPEC__ARM__CPU__CONSTS_H_
|
|
|
|
#include <base/stdint.h>
|
|
|
|
namespace Abi {
|
|
|
|
/*
|
|
* On ARM we align the stack top to 16-byte. As a call (or branch) will not
|
|
* change the stack pointer, we need no further stack adjustment.
|
|
*/
|
|
inline Genode::addr_t stack_align(Genode::addr_t addr) {
|
|
return (addr & ~0xf); }
|
|
|
|
/**
|
|
* Do ABI specific initialization to a freshly created stack
|
|
*/
|
|
inline void init_stack(Genode::addr_t) { }
|
|
}
|
|
|
|
#endif /* _INCLUDE__SPEC__ARM__CPU__CONSTS_H_ */
|