Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
0ecf24f3
Commit
0ecf24f3
authored
Dec 13, 2007
by
Arnaud Charlet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New file.
From-SVN: r130885
parent
70e4fcc4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
gcc/ada/vx_stack_info.c
+62
-0
No files found.
gcc/ada/vx_stack_info.c
0 → 100644
View file @
0ecf24f3
/****************************************************************************
* *
* GNAT COMPILER COMPONENTS *
* *
* V X _ S T A C K _ I N F O *
* *
* C Implementation File *
* *
* Copyright (C) 2007, Free Software Foundation, Inc. *
* *
* GNAT is free software; you can redistribute it and/or modify it under *
* terms of the GNU General Public License as published by the Free Soft- *
* ware Foundation; either version 2, or (at your option) any later ver- *
* sion. GNAT is distributed in the hope that it will be useful, but WITH- *
* OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. You should have received a copy of the GNU General *
* Public License distributed with GNAT; see file COPYING. If not, write *
* to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301, USA. *
* *
* As a special exception, if you link this file with other files to *
* produce an executable, this file does not by itself cause the resulting *
* executable to be covered by the GNU General Public License. This except- *
* ion does not however invalidate any other reasons why the executable *
* file might be covered by the GNU Public License. *
* *
* GNAT was originally developed by the GNAT team at New York University. *
* Extensive contributions were provided by Ada Core Technologies Inc. *
* *
****************************************************************************/
/* VxWorks-specific file to have access to task-specific data and be able
to extract the stack boundaries for stack checking. */
#include <taskLib.h>
typedef
struct
{
int
size
;
char
*
base
;
char
*
end
;
}
stack_info
;
/* __gnat_get_stack_info is used by s-stchop.adb only for VxWorks. This
procedure fills the stack information associated to the currently
executing task. */
extern
void
__gnat_get_stack_info
(
stack_info
*
vxworks_stack_info
);
void
__gnat_get_stack_info
(
stack_info
*
vxworks_stack_info
)
{
TASK_DESC
descriptor
;
/* Ask the VxWorks kernel about stack values */
taskInfoGet
(
taskIdSelf
(),
&
descriptor
);
/* Fill the stack data with the information provided by the kernel */
vxworks_stack_info
->
size
=
descriptor
.
td_stackSize
;
vxworks_stack_info
->
base
=
descriptor
.
td_pStackBase
;
vxworks_stack_info
->
end
=
descriptor
.
td_pStackEnd
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment