2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* arch/sim/include/arch.h
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2007-02-18 00:21:28 +01:00
|
|
|
* only indirectly through nuttx/arch.h
|
|
|
|
*/
|
|
|
|
|
2016-08-07 02:48:45 +02:00
|
|
|
#ifndef __ARCH_SIM_INCLUDE_ARCH_H
|
|
|
|
#define __ARCH_SIM_INCLUDE_ARCH_H
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Inline functions
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-07-08 21:18:10 +02:00
|
|
|
/****************************************************************************
|
2021-06-09 10:26:18 +02:00
|
|
|
* Name: up_getsp
|
2020-07-08 21:18:10 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2021-06-09 10:26:18 +02:00
|
|
|
static inline uintptr_t up_getsp(void)
|
2020-07-08 21:18:10 +02:00
|
|
|
{
|
|
|
|
return (uintptr_t)__builtin_frame_address(0);
|
|
|
|
}
|
|
|
|
|
2016-08-07 02:48:45 +02:00
|
|
|
#endif /* __ARCH_SIM_INCLUDE_ARCH_H */
|