source: rtems/cpukit/score/cpu/i386/include/rtems/score/cpu.h @ 8937f12

5
Last change on this file since 8937f12 was 8937f12, checked in by Jan Sommer <jan.sommer@…>, on 05/31/20 at 14:22:54

bsp/pc386: Update context switch and restore

Uses similar flow in cpu_asm.S for i386 as for arm.

  • Property mode set to 100644
File size: 17.2 KB
RevLine 
[6d6891e]1/**
[d9e0006]2 * @file
3 *
4 * @brief Intel I386 CPU Dependent Source
5 *
6 * This include file contains information pertaining to the Intel
7 * i386 processor.
[6d6891e]8 */
9
10/*
[06dcaf0]11 *  COPYRIGHT (c) 1989-2011.
[7908ba5b]12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
[c499856]16 *  http://www.rtems.org/license/LICENSE.
[7908ba5b]17 */
18
[7f70d1b7]19#ifndef _RTEMS_SCORE_CPU_H
20#define _RTEMS_SCORE_CPU_H
[7908ba5b]21
[a6d48e3]22#ifndef ASM
[af063f6]23#include <string.h> /* for memcpy */
[a6d48e3]24#endif
[af063f6]25
[7908ba5b]26#ifdef __cplusplus
27extern "C" {
28#endif
29
[a1df2fdc]30#include <rtems/score/basedefs.h>
[7c39cab]31#if defined(RTEMS_PARAVIRT)
32#include <rtems/score/paravirt.h>
33#endif
[89b85e51]34#include <rtems/score/i386.h>
[d670ef9]35   
36/**
[4c20da4b]37 * @defgroup RTEMSScoreCPUi386 i386 Specific Support
[d670ef9]38 *
39 * @ingroup RTEMSScoreCPUi386
40 *
41 * @brief i386 specific support.
42 */
43/**@{**/
[7908ba5b]44
45/* conditional compilation parameters */
46
[562cadfa]47/*
48 *  Does the CPU follow the simple vectored interrupt model?
49 *
50 *  If TRUE, then RTEMS allocates the vector table it internally manages.
51 *  If FALSE, then the BSP is assumed to allocate and manage the vector
52 *  table
53 *
54 *  PowerPC Specific Information:
55 *
56 *  The PowerPC and x86 were the first to use the PIC interrupt model.
57 *  They do not use the simple vectored interrupt model.
58 */
59#define CPU_SIMPLE_VECTORED_INTERRUPTS FALSE
60
[7908ba5b]61/*
62 *  Does the RTEMS invoke the user's ISR with the vector number and
[84c53452]63 *  a pointer to the saved interrupt frame (1) or just the vector
[7908ba5b]64 *  number (0)?
65 */
66
[141e16d]67#define CPU_ISR_PASSES_FRAME_POINTER FALSE
[7908ba5b]68
69/*
70 *  Some family members have no FP, some have an FPU such as the i387
71 *  for the i386, others have it built in (i486DX, Pentium).
72 */
73
[b02f4cc1]74#ifdef __SSE__
75#define CPU_HARDWARE_FP                  TRUE
76#define CPU_SOFTWARE_FP                  FALSE
77
78#define CPU_ALL_TASKS_ARE_FP             TRUE
79#define CPU_IDLE_TASK_IS_FP              TRUE
80#define CPU_USE_DEFERRED_FP_SWITCH       FALSE
81#else /* __SSE__ */
82
[7908ba5b]83#if ( I386_HAS_FPU == 1 )
84#define CPU_HARDWARE_FP     TRUE    /* i387 for i386 */
85#else
86#define CPU_HARDWARE_FP     FALSE
87#endif
[17508d02]88#define CPU_SOFTWARE_FP     FALSE
[7908ba5b]89
90#define CPU_ALL_TASKS_ARE_FP             FALSE
91#define CPU_IDLE_TASK_IS_FP              FALSE
[965ef82]92#if defined(RTEMS_SMP)
93  #define CPU_USE_DEFERRED_FP_SWITCH     FALSE
94#else
95  #define CPU_USE_DEFERRED_FP_SWITCH     TRUE
96#endif
[b02f4cc1]97#endif /* __SSE__ */
[7908ba5b]98
[84e6f15]99#define CPU_ENABLE_ROBUST_THREAD_DISPATCH FALSE
100
[7908ba5b]101#define CPU_STACK_GROWS_UP               FALSE
[a8865f8]102
103/* FIXME: The Pentium 4 used 128 bytes, it this processor still relevant? */
104#define CPU_CACHE_LINE_BYTES 64
105
[7908ba5b]106#define CPU_STRUCTURE_ALIGNMENT
107
[decff899]108#define CPU_MAXIMUM_PROCESSORS 32
109
[38b59a6]110#define I386_CONTEXT_CONTROL_EFLAGS_OFFSET 0
111#define I386_CONTEXT_CONTROL_ESP_OFFSET 4
112#define I386_CONTEXT_CONTROL_EBP_OFFSET 8
113#define I386_CONTEXT_CONTROL_EBX_OFFSET 12
114#define I386_CONTEXT_CONTROL_ESI_OFFSET 16
115#define I386_CONTEXT_CONTROL_EDI_OFFSET 20
[7b0c74ff]116#define I386_CONTEXT_CONTROL_GS_0_OFFSET 24
117#define I386_CONTEXT_CONTROL_GS_1_OFFSET 28
[8937f12]118#define I386_CONTEXT_CONTROL_ISR_DISPATCH_DISABLE 32
[38b59a6]119
120#ifdef RTEMS_SMP
[8937f12]121  #define I386_CONTEXT_CONTROL_IS_EXECUTING_OFFSET 36
[38b59a6]122#endif
123
[7908ba5b]124/* structures */
125
[a6d48e3]126#ifndef ASM
127
[7908ba5b]128/*
129 *  Basic integer context for the i386 family.
130 */
131
132typedef struct {
[7b0c74ff]133  uint32_t    eflags;     /* extended flags register                   */
134  void       *esp;        /* extended stack pointer register           */
135  void       *ebp;        /* extended base pointer register            */
136  uint32_t    ebx;        /* extended bx register                      */
137  uint32_t    esi;        /* extended source index register            */
138  uint32_t    edi;        /* extended destination index flags register */
139  segment_descriptors gs; /* gs segment descriptor                     */
[8937f12]140  uint32_t isr_dispatch_disable;
[38b59a6]141#ifdef RTEMS_SMP
142  volatile bool is_executing;
143#endif
[7908ba5b]144}   Context_Control;
145
[0ca6d0d9]146#define _CPU_Context_Get_SP( _context ) \
147  (_context)->esp
148
[38b59a6]149#ifdef RTEMS_SMP
[11b05f1]150  static inline bool _CPU_Context_Get_is_executing(
151    const Context_Control *context
152  )
153  {
154    return context->is_executing;
155  }
156
157  static inline void _CPU_Context_Set_is_executing(
158    Context_Control *context,
159    bool is_executing
160  )
161  {
162    context->is_executing = is_executing;
163  }
[38b59a6]164#endif
165
[7908ba5b]166/*
167 *  FP context save area for the i387 numeric coprocessors.
168 */
[b02f4cc1]169#ifdef __SSE__
170/* All FPU and SSE registers are volatile; hence, as long
171 * as we are within normally executing C code (including
172 * a task switch) there is no need for saving/restoring
173 * any of those registers.
174 * We must save/restore the full FPU/SSE context across
175 * interrupts and exceptions, however:
176 *   -  after ISR execution a _Thread_Dispatch() may happen
177 *      and it is therefore necessary to save the FPU/SSE
178 *      registers to be restored when control is returned
179 *      to the interrupted task.
180 *   -  gcc may implicitly use FPU/SSE instructions in
181 *      an ISR.
182 *
183 * Even though there is no explicit mentioning of the FPU
184 * control word in the SYSV ABI (i386) being non-volatile
185 * we maintain MXCSR and the FPU control-word for each task.
186 */
187typedef struct {
188        uint32_t  mxcsr;
189        uint16_t  fpucw;
190} Context_Control_fp;
191
192#else
[7908ba5b]193
194typedef struct {
[e6aeabd]195  uint8_t     fp_save_area[108];    /* context size area for I80387 */
[7908ba5b]196                                    /*  28 bytes for environment    */
197} Context_Control_fp;
198
[b02f4cc1]199#endif
200
[7908ba5b]201
202/*
203 *  The following structure defines the set of information saved
204 *  on the current stack by RTEMS upon receipt of execptions.
205 *
206 * idtIndex is either the interrupt number or the trap/exception number.
207 * faultCode is the code pushed by the processor on some exceptions.
[b02f4cc1]208 *
209 * Since the first registers are directly pushed by the CPU they
210 * may not respect 16-byte stack alignment, which is, however,
211 * mandatory for the SSE register area.
212 * Therefore, these registers are stored at an aligned address
213 * and a pointer is stored in the CPU_Exception_frame.
214 * If the executive was compiled without SSE support then
215 * this pointer is NULL.
[7908ba5b]216 */
217
[b02f4cc1]218struct Context_Control_sse;
219
[7908ba5b]220typedef struct {
[b02f4cc1]221  struct Context_Control_sse *fp_ctxt;
[e6aeabd]222  uint32_t    edi;
223  uint32_t    esi;
224  uint32_t    ebp;
225  uint32_t    esp0;
226  uint32_t    ebx;
227  uint32_t    edx;
228  uint32_t    ecx;
229  uint32_t    eax;
230  uint32_t    idtIndex;
231  uint32_t    faultCode;
232  uint32_t    eip;
233  uint32_t    cs;
234  uint32_t    eflags;
[7908ba5b]235} CPU_Exception_frame;
236
[b02f4cc1]237#ifdef __SSE__
238typedef struct Context_Control_sse {
239  uint16_t  fcw;
240  uint16_t  fsw;
241  uint8_t   ftw;
242  uint8_t   res_1;
243  uint16_t  fop;
244  uint32_t  fpu_ip;
245  uint16_t  cs;
246  uint16_t  res_2;
247  uint32_t  fpu_dp;
248  uint16_t  ds;
249  uint16_t  res_3;
250  uint32_t  mxcsr;
251  uint32_t  mxcsr_mask;
252  struct {
253        uint8_t fpreg[10];
254        uint8_t res_4[ 6];
255  } fp_mmregs[8];
256  uint8_t   xmmregs[8][16];
257  uint8_t   res_5[224];
258} Context_Control_sse
259__attribute__((aligned(16)))
260;
261#endif
262
[7908ba5b]263typedef void (*cpuExcHandlerType) (CPU_Exception_frame*);
264extern cpuExcHandlerType _currentExcHandler;
[1b502424]265extern void rtems_exception_init_mngt(void);
[7908ba5b]266
[e9fb3133]267#ifdef RTEMS_SMP
268  /* Throw compile-time error to indicate incomplete support */
269  #error "i386 targets do not support SMP.\
270 See: https://devel.rtems.org/ticket/3335"
271
272  /*
273   * This size must match the size of the CPU_Interrupt_frame, which must be
274   * used in the SMP context switch code, which is incomplete at the moment.
275   */
276  #define CPU_INTERRUPT_FRAME_SIZE 4
277#endif
278
[7908ba5b]279/*
[78667e3]280 * This port does not pass any frame info to the
281 * interrupt handler.
[7908ba5b]282 */
283
[e9fb3133]284typedef struct {
285  uint32_t todo_replace_with_apt_registers;
286} CPU_Interrupt_frame;
[7908ba5b]287
288typedef enum {
289  I386_EXCEPTION_DIVIDE_BY_ZERO      = 0,
290  I386_EXCEPTION_DEBUG               = 1,
291  I386_EXCEPTION_NMI                 = 2,
292  I386_EXCEPTION_BREAKPOINT          = 3,
293  I386_EXCEPTION_OVERFLOW            = 4,
294  I386_EXCEPTION_BOUND               = 5,
295  I386_EXCEPTION_ILLEGAL_INSTR       = 6,
296  I386_EXCEPTION_MATH_COPROC_UNAVAIL = 7,
297  I386_EXCEPTION_DOUBLE_FAULT        = 8,
298  I386_EXCEPTION_I386_COPROC_SEG_ERR = 9,
299  I386_EXCEPTION_INVALID_TSS         = 10,
300  I386_EXCEPTION_SEGMENT_NOT_PRESENT = 11,
301  I386_EXCEPTION_STACK_SEGMENT_FAULT = 12,
302  I386_EXCEPTION_GENERAL_PROT_ERR    = 13,
303  I386_EXCEPTION_PAGE_FAULT          = 14,
304  I386_EXCEPTION_INTEL_RES15         = 15,
305  I386_EXCEPTION_FLOAT_ERROR         = 16,
306  I386_EXCEPTION_ALIGN_CHECK         = 17,
307  I386_EXCEPTION_MACHINE_CHECK       = 18,
308  I386_EXCEPTION_ENTER_RDBG          = 50     /* to enter manually RDBG */
309
310} Intel_symbolic_exception_name;
[84c53452]311
[7908ba5b]312
313/*
314 *  context size area for floating point
315 *
316 *  NOTE:  This is out of place on the i386 to avoid a forward reference.
317 */
318
319#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
320
321/* variables */
322
[deaf716]323extern Context_Control_fp _CPU_Null_fp_context;
[7908ba5b]324
[a6d48e3]325#endif /* ASM */
326
[7908ba5b]327/* constants */
328
329/*
330 *  This defines the number of levels and the mask used to pick those
331 *  bits out of a thread mode.
332 */
333
334#define CPU_MODES_INTERRUPT_MASK   0x00000001 /* interrupt level in mode */
335
336/*
337 *  extra stack required by the MPCI receive server thread
338 */
339
340#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 1024
341
[4db30283]342/*
343 *  This is defined if the port has a special way to report the ISR nesting
344 *  level.  Most ports maintain the variable _ISR_Nest_level.
345 */
346
347#define CPU_PROVIDES_ISR_IS_IN_PROGRESS FALSE
348
[7908ba5b]349/*
350 *  Minimum size of a thread's stack.
351 */
352
[6952f3d]353#define CPU_STACK_MINIMUM_SIZE          4096
[7908ba5b]354
[f1738ed]355#define CPU_SIZEOF_POINTER 4
356
[7908ba5b]357/*
358 *  i386 is pretty tolerant of alignment.  Just put things on 4 byte boundaries.
359 */
360
361#define CPU_ALIGNMENT                    4
362#define CPU_HEAP_ALIGNMENT               CPU_ALIGNMENT
363
364/*
365 *  On i386 thread stacks require no further alignment after allocation
[a6d48e3]366 *  from the Workspace. However, since gcc maintains 16-byte alignment
367 *  we try to respect that. If you find an option to let gcc squeeze
368 *  the stack more tightly then setting CPU_STACK_ALIGNMENT to 16 still
369 *  doesn't waste much space since this only determines the *initial*
370 *  alignment.
[7908ba5b]371 */
372
[a6d48e3]373#define CPU_STACK_ALIGNMENT             16
[7908ba5b]374
[c8df844]375#define CPU_INTERRUPT_STACK_ALIGNMENT CPU_CACHE_LINE_BYTES
376
[7908ba5b]377/* macros */
378
[a6d48e3]379#ifndef ASM
[7908ba5b]380/*
381 *  ISR handler macros
382 *
383 *  These macros perform the following functions:
[effa6593]384 *     + initialize the RTEMS vector table
[7908ba5b]385 *     + disable all maskable CPU interrupts
386 *     + restore previous interrupt level (enable)
387 *     + temporarily restore interrupts (flash)
388 *     + set a particular level
389 */
390
[7c39cab]391#if !defined(I386_DISABLE_INLINE_ISR_DISABLE_ENABLE)
[7908ba5b]392#define _CPU_ISR_Disable( _level ) i386_disable_interrupts( _level )
393
394#define _CPU_ISR_Enable( _level )  i386_enable_interrupts( _level )
395
396#define _CPU_ISR_Flash( _level )   i386_flash_interrupts( _level )
397
398#define _CPU_ISR_Set_level( _new_level ) \
399  { \
[c05f6238]400    if ( _new_level ) __asm__ volatile ( "cli" ); \
401    else              __asm__ volatile ( "sti" ); \
[7908ba5b]402  }
[3267f95]403#else
[dda25b1]404#define _CPU_ISR_Disable( _level ) _level = i386_disable_interrupts()
[3267f95]405#define _CPU_ISR_Enable( _level ) i386_enable_interrupts( _level )
406#define _CPU_ISR_Flash( _level ) i386_flash_interrupts( _level )
[dda25b1]407#define _CPU_ISR_Set_level( _new_level ) i386_set_interrupt_level(_new_level)
[3267f95]408#endif
[7908ba5b]409
[408609f6]410RTEMS_INLINE_ROUTINE bool _CPU_ISR_Is_enabled( uint32_t level )
411{
412  return ( level & EFLAGS_INTR_ENABLE ) != 0;
413}
414
[e6aeabd]415uint32_t   _CPU_ISR_Get_level( void );
[7908ba5b]416
[42e243e]417/*  Make sure interrupt stack has space for ISR
[b01d7c7]418 *  'vector' arg at the top and that it is aligned
419 *  properly.
420 */
421
422#define _CPU_Interrupt_stack_setup( _lo, _hi )  \
423        do {                                        \
424                _hi = (void*)(((uintptr_t)(_hi) - 4) & ~ (CPU_STACK_ALIGNMENT - 1)); \
425        } while (0)
426
[a6d48e3]427#endif /* ASM */
428
[7908ba5b]429/* end of ISR handler macros */
430
431/*
432 *  Context handler macros
433 *
434 *  These macros perform the following functions:
435 *     + initialize a context area
436 *     + restart the current thread
437 *     + calculate the initial pointer into a FP context area
438 *     + initialize an FP context area
439 */
440
441#define CPU_EFLAGS_INTERRUPTS_ON  0x00003202
442#define CPU_EFLAGS_INTERRUPTS_OFF 0x00003002
443
[a6d48e3]444#ifndef ASM
445
[cb0d9a0]446void _CPU_Context_Initialize(
447  Context_Control *the_context,
448  void *stack_area_begin,
449  size_t stack_area_size,
450  uint32_t new_level,
451  void (*entry_point)( void ),
452  bool is_fp,
453  void *tls_area
454);
[7908ba5b]455
456#define _CPU_Context_Restart_self( _the_context ) \
457   _CPU_Context_restore( (_the_context) );
458
[06dcaf0]459#if defined(RTEMS_SMP)
[53e008b]460  uint32_t _CPU_SMP_Initialize( void );
461
462  bool _CPU_SMP_Start_processor( uint32_t cpu_index );
463
464  void _CPU_SMP_Finalize_initialization( uint32_t cpu_count );
[4627fcd]465
[efa0039e]466  void _CPU_SMP_Prepare_start_multitasking( void );
[c34f94f7]467
[47d60134]468  uint32_t _CPU_SMP_Get_current_processor( void );
[39e51758]469
[ca63ae2]470  void _CPU_SMP_Send_interrupt( uint32_t target_processor_index );
471
[07f6e419]472  static inline void _CPU_SMP_Processor_event_broadcast( void )
[2f6108f9]473  {
474    __asm__ volatile ( "" : : : "memory" );
475  }
476
[f7740e97]477  static inline void _CPU_SMP_Processor_event_receive( void )
[2f6108f9]478  {
479    __asm__ volatile ( "" : : : "memory" );
480  }
[06dcaf0]481#endif
482
[7908ba5b]483#define _CPU_Context_Initialize_fp( _fp_area ) \
484  { \
[af063f6]485    memcpy( *_fp_area, &_CPU_Null_fp_context, CPU_CONTEXT_FP_SIZE ); \
[7908ba5b]486  }
487
488/* end of Context handler macros */
489
490/*
491 *  Fatal Error manager macros
492 *
493 *  These macros perform the following functions:
494 *    + disable interrupts and halt the CPU
495 */
496
[505dc61]497extern void _CPU_Fatal_halt(uint32_t source, uint32_t error)
498  RTEMS_NO_RETURN;
[7908ba5b]499
[a6d48e3]500#endif /* ASM */
501
[7908ba5b]502/* end of Fatal Error manager macros */
503
504/*
505 *  Bitfield handler macros
506 *
507 *  These macros perform the following functions:
508 *     + scan for the highest numbered (MSB) set in a 16 bit bitfield
509 */
510
511#define CPU_USE_GENERIC_BITFIELD_CODE FALSE
512
513#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
514  { \
[f35c3be9]515    uint16_t __value_in_register = ( _value ); \
516    uint16_t __output = 0; \
[c05f6238]517    __asm__ volatile ( "bsfw    %0,%1 " \
[3bf9fdb]518                    : "=r" ( __value_in_register ), "=r" ( __output ) \
519                    : "0"  ( __value_in_register ), "1"  ( __output ) \
[7908ba5b]520    ); \
[3bf9fdb]521    ( _output ) = __output; \
[7908ba5b]522  }
523
524/* end of Bitfield handler macros */
525
526/*
527 *  Priority handler macros
528 *
529 *  These macros perform the following functions:
530 *    + return a mask with the bit for this major/minor portion of
531 *      of thread priority set.
532 *    + translate the bit number returned by "Bitfield_find_first_bit"
533 *      into an index into the thread ready chain bit maps
534 */
535
536#define _CPU_Priority_Mask( _bit_number ) \
537  ( 1 << (_bit_number) )
538
539#define _CPU_Priority_bits_index( _priority ) \
540  (_priority)
541
542/* functions */
543
[a6d48e3]544#ifndef ASM
[7908ba5b]545/*
546 *  _CPU_Initialize
547 *
548 *  This routine performs CPU dependent initialization.
549 */
550
[c03e2bc]551void _CPU_Initialize(void);
[7908ba5b]552
[3c6a6e8]553typedef void ( *CPU_ISR_handler )( void );
[7908ba5b]554
555void _CPU_ISR_install_vector(
[3c6a6e8]556  uint32_t         vector,
557  CPU_ISR_handler  new_handler,
558  CPU_ISR_handler *old_handler
[7908ba5b]559);
560
[cca8379]561void *_CPU_Thread_Idle_body( uintptr_t ignored );
[7908ba5b]562
563/*
564 *  _CPU_Context_switch
565 *
566 *  This routine switches from the run context to the heir context.
567 */
568
569void _CPU_Context_switch(
570  Context_Control  *run,
571  Context_Control  *heir
572);
573
574/*
575 *  _CPU_Context_restore
576 *
577 *  This routine is generally used only to restart self in an
578 *  efficient manner and avoid stack conflicts.
579 */
580
581void _CPU_Context_restore(
582  Context_Control *new_context
[143696a]583) RTEMS_NO_RETURN;
[7908ba5b]584
585/*
586 *  _CPU_Context_save_fp
587 *
588 *  This routine saves the floating point context passed to it.
589 */
590
[b02f4cc1]591#ifdef __SSE__
592#define _CPU_Context_save_fp(fp_context_pp) \
593  do {                                      \
594    __asm__ __volatile__(                   \
595      "fstcw %0"                            \
596      :"=m"((*(fp_context_pp))->fpucw)      \
597    );                                      \
598        __asm__ __volatile__(                   \
599      "stmxcsr %0"                          \
600      :"=m"((*(fp_context_pp))->mxcsr)      \
601    );                                      \
602  } while (0)
603#else
[7908ba5b]604void _CPU_Context_save_fp(
[3c86f88]605  Context_Control_fp **fp_context_ptr
[7908ba5b]606);
[b02f4cc1]607#endif
[7908ba5b]608
609/*
610 *  _CPU_Context_restore_fp
611 *
612 *  This routine restores the floating point context passed to it.
613 */
[b02f4cc1]614#ifdef __SSE__
615#define _CPU_Context_restore_fp(fp_context_pp) \
616  do {                                         \
617    __asm__ __volatile__(                      \
618      "fldcw %0"                               \
619      ::"m"((*(fp_context_pp))->fpucw)         \
620      :"fpcr"                                  \
621    );                                         \
622    __builtin_ia32_ldmxcsr(_Thread_Executing->fp_context->mxcsr);  \
623  } while (0)
624#else
[7908ba5b]625void _CPU_Context_restore_fp(
[3c86f88]626  Context_Control_fp **fp_context_ptr
[7908ba5b]627);
[b02f4cc1]628#endif
629
630#ifdef __SSE__
631#define _CPU_Context_Initialization_at_thread_begin() \
632  do {                                                \
633    __asm__ __volatile__(                             \
634      "finit"                                         \
635      :                                               \
636      :                                               \
637      :"st","st(1)","st(2)","st(3)",                  \
638       "st(4)","st(5)","st(6)","st(7)",               \
639       "fpsr","fpcr"                                  \
640    );                                                \
641        if ( _Thread_Executing->fp_context ) {            \
642          _CPU_Context_restore_fp(&_Thread_Executing->fp_context); \
643   }                                                  \
644  } while (0)
645#endif
[7908ba5b]646
[815994f]647void _CPU_Exception_frame_print( const CPU_Exception_frame *frame );
648
[24bf11e]649typedef uint32_t CPU_Counter_ticks;
650
[65f868c]651uint32_t _CPU_Counter_frequency( void );
652
[24bf11e]653CPU_Counter_ticks _CPU_Counter_read( void );
654
655static inline CPU_Counter_ticks _CPU_Counter_difference(
656  CPU_Counter_ticks second,
657  CPU_Counter_ticks first
658)
659{
660  return second - first;
661}
662
[d670ef9]663/**@}**/
664
[a1df2fdc]665/** Type that can store a 32-bit integer or a pointer. */
666typedef uintptr_t CPU_Uint32ptr;
667
[a6d48e3]668#endif /* ASM */
669
[7908ba5b]670#ifdef __cplusplus
671}
672#endif
673
674#endif
Note: See TracBrowser for help on using the repository browser.