Home
last modified time | relevance | path

Searched refs:pxCurrentTCB (Results 1 – 25 of 167) sorted by relevance

1234567

/Kernel-v11.1.0/portable/IAR/AVR32_UC3/
Dportmacro.h201 …extern volatile void * volatile pxCurrentTCB; …
205 …"mov r8, LWRD("ASTRINGZ ( pxCurrentTCB ) ") \n\t" …
206 …"orh r8, HWRD("ASTRINGZ ( pxCurrentTCB ) ") \n\t" …
234pxCurrentTCB; …
307 …extern volatile void * volatile pxCurrentTCB; …
340 …"mov r8, LWRD("ASTRINGZ ( pxCurrentTCB ) ") …
341 …"orh r8, HWRD("ASTRINGZ ( pxCurrentTCB ) ") …
355 …extern volatile void * volatile pxCurrentTCB; …
382 …"mov r8, LWRD("ASTRINGZ ( pxCurrentTCB ) ") …
383 …"orh r8, HWRD("ASTRINGZ ( pxCurrentTCB ) ") …
[all …]
/Kernel-v11.1.0/portable/GCC/AVR32_UC3/
Dportmacro.h198 … extern volatile void * volatile pxCurrentTCB; \
229 … [ pxCurrentTCB ] "i" ( &pxCurrentTCB ), \
304 …extern volatile void * volatile pxCurrentTCB; …
345 …[ pxCurrentTCB ] "i" ( &pxCurrentTCB ), …
356 …extern volatile void * volatile pxCurrentTCB; …
405 …[ pxCurrentTCB ] "i" ( &pxCurrentTCB ), …
422 …extern volatile void * volatile pxCurrentTCB; …
479 …:[ pxCurrentTCB ] "i" ( &pxCurrentTCB ) …
489 …extern volatile void * volatile pxCurrentTCB; …
500 …:[ pxCurrentTCB ] "i" ( &pxCurrentTCB ) …
[all …]
/Kernel-v11.1.0/include/
Dstack_macros.h62 if( pxCurrentTCB->pxTopOfStack <= pxCurrentTCB->pxStack + portSTACK_LIMIT_PADDING ) \
64 char * pcOverflowTaskName = pxCurrentTCB->pcTaskName; \
65 vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pcOverflowTaskName ); \
79 if( pxCurrentTCB->pxTopOfStack >= pxCurrentTCB->pxEndOfStack - portSTACK_LIMIT_PADDING ) \
81 char * pcOverflowTaskName = pxCurrentTCB->pcTaskName; \
82 vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pcOverflowTaskName ); \
93 const uint32_t * const pulStack = ( uint32_t * ) pxCurrentTCB->pxStack; \
101 char * pcOverflowTaskName = pxCurrentTCB->pcTaskName; \
102 vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB, pcOverflowTaskName ); \
113 …int8_t * pcEndOfStack = ( int8_t * ) pxCurrentTCB->pxEndOfStack; …
[all …]
/Kernel-v11.1.0/portable/Paradigm/Tern_EE/large_untested/
Dportasm.h30 extern volatile TCB_t * volatile pxCurrentTCB;
48 asm { mov ax, seg pxCurrentTCB } \
50 … asm { les bx, pxCurrentTCB } /* Save the stack pointer into the TCB. */ \
54 … asm { mov ax, seg pxCurrentTCB } /* Restore the stack pointer from the TCB. */ \
56 asm { les bx, dword ptr pxCurrentTCB } \
61 asm { mov ax, seg pxCurrentTCB } \
63 asm { les bx, dword ptr pxCurrentTCB } \
/Kernel-v11.1.0/portable/BCC/16BitDOS/common/
Dportasm.h33 extern volatile TCB_t * volatile pxCurrentTCB;
57 asm { mov ax, seg pxCurrentTCB } \
59 … asm { les bx, pxCurrentTCB } /* Save the stack pointer into the TCB. */ \
63 … asm { mov ax, seg pxCurrentTCB } /* Restore the stack pointer from the TCB. */ \
65 asm { les bx, dword ptr pxCurrentTCB } \
70 __asm { mov ax, seg pxCurrentTCB } \
72 __asm { les bx, dword ptr pxCurrentTCB } \
/Kernel-v11.1.0/portable/GCC/TriCore_1782/
Dport.c92 extern volatile uint32_t * pxCurrentTCB;
234 pulLowerCSA = portCSA_TO_ADDRESS( ( *pxCurrentTCB ) ); in xPortStartScheduler()
237 _mtcr( $PCXI, *pxCurrentTCB ); in xPortStartScheduler()
297 extern volatile uint32_t * pxCurrentTCB; in prvSystemTickHandler()
358 *pxCurrentTCB = pxUpperCSA[ 0 ]; in prvSystemTickHandler()
360 pxUpperCSA[ 0 ] = *pxCurrentTCB; in prvSystemTickHandler()
450 extern volatile uint32_t * pxCurrentTCB; in prvTrapYield()
479 *pxCurrentTCB = pxUpperCSA[ 0 ]; in prvTrapYield()
481 pxUpperCSA[ 0 ] = *pxCurrentTCB; in prvTrapYield()
498 extern volatile uint32_t * pxCurrentTCB; in prvInterruptYield()
[all …]
/Kernel-v11.1.0/portable/GCC/PPC440_Xilinx/
DFPU_Macros.h32 if( pxCurrentTCB->pxTaskTag != NULL ) \
35 vPortSaveFPURegisters( ( void * ) ( pxCurrentTCB->pxTaskTag ) ); \
41 if( pxCurrentTCB->pxTaskTag != NULL ) \
44 vPortRestoreFPURegisters( ( void * ) ( pxCurrentTCB->pxTaskTag ) ); \
/Kernel-v11.1.0/portable/GCC/PPC405_Xilinx/
DFPU_Macros.h32 if( pxCurrentTCB->pxTaskTag != NULL ) \
35 vPortSaveFPURegisters( ( void * ) ( pxCurrentTCB->pxTaskTag ) ); \
41 if( pxCurrentTCB->pxTaskTag != NULL ) \
44 vPortRestoreFPURegisters( ( void * ) ( pxCurrentTCB->pxTaskTag ) ); \
/Kernel-v11.1.0/portable/Paradigm/Tern_EE/small/
Dportasm.h33 extern volatile TCB_t * volatile pxCurrentTCB;
51 asm { mov bx, [pxCurrentTCB] } \
54 asm { mov bx, [pxCurrentTCB] } \
58 asm { mov bx, [pxCurrentTCB] } \
/Kernel-v11.1.0/portable/GCC/H8S2329/
Dportmacro.h102 extern void * pxCurrentTCB; \
108 ( void ) pxCurrentTCB;
112 extern void * pxCurrentTCB; \
118 ( void ) pxCurrentTCB;
/Kernel-v11.1.0/portable/GCC/ARM7_AT91FR40008/
Dportmacro.h123 extern volatile void * volatile pxCurrentTCB; \
154 ( void ) pxCurrentTCB; \
160 extern volatile void * volatile pxCurrentTCB; \
201 ( void ) pxCurrentTCB; \
/Kernel-v11.1.0/portable/Renesas/SH2A_FPU/
Dportmacro.h112 …ine traceTASK_SWITCHED_OUT() do { if( pxCurrentTCB->pxTaskTag != NULL ) vPortSaveFlopRegisters(…
113 …ne traceTASK_SWITCHED_IN() do { if( pxCurrentTCB->pxTaskTag != NULL ) vPortRestoreFlopRegister…
/Kernel-v11.1.0/portable/GCC/ARM7_AT91SAM7S/
Dportmacro.h114 extern volatile void * volatile pxCurrentTCB; \
145 ( void ) pxCurrentTCB; \
151 extern volatile void * volatile pxCurrentTCB; \
192 ( void ) pxCurrentTCB; \
/Kernel-v11.1.0/portable/GCC/ARM7_LPC2000/
Dportmacro.h91 extern volatile void * volatile pxCurrentTCB; \
122 ( void ) pxCurrentTCB; \
128 extern volatile void * volatile pxCurrentTCB; \
169 ( void ) pxCurrentTCB; \
/Kernel-v11.1.0/portable/GCC/ARM7_LPC23xx/
Dportmacro.h114 extern volatile void * volatile pxCurrentTCB; \
145 ( void ) pxCurrentTCB; \
151 extern volatile void * volatile pxCurrentTCB; \
192 ( void ) pxCurrentTCB; \
/Kernel-v11.1.0/portable/GCC/IA32_flat/
DportASM.S33 .extern pxCurrentTCB
76 movl pxCurrentTCB, %eax
86 movl pxCurrentTCB, %eax
114 movl pxCurrentTCB, %eax
169 movl pxCurrentTCB, %eax
199 movl pxCurrentTCB, %eax
/Kernel-v11.1.0/portable/CodeWarrior/HCS12/
Dportmacro.h130 extern volatile void * pxCurrentTCB; \
148 extern volatile void * pxCurrentTCB; \
167 extern volatile void * pxCurrentTCB; \
178 extern volatile void * pxCurrentTCB; \
/Kernel-v11.1.0/portable/ThirdParty/CDK/T-HEAD_CK802/
Dportasm.S35 lrw r4, pxCurrentTCB
64 lrw r2, pxCurrentTCB
69 lrw r4, pxCurrentTCB
99 lrw r7, pxCurrentTCB
116 lrw r7, pxCurrentTCB
/Kernel-v11.1.0/
Dtasks.c89 if( pxCurrentTCB->uxPriority < ( pxTCB )->uxPriority ) \
191 listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \
226 listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \
283 #define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle )…
309 …#define taskTASK_IS_RUNNING( pxTCB ) ( ( ( pxTCB ) == pxCurrentTCB ) ? ( …
310 …#define taskTASK_IS_RUNNING_OR_SCHEDULED_TO_YIELD( pxTCB ) ( ( ( pxTCB ) == pxCurrentTCB ) ? ( …
446 portDONT_DISCARD PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL; variable
452 #define pxCurrentTCB xTaskGetCurrentTaskHandle() macro
2027 if( pxCurrentTCB == NULL ) in prvAddNewTaskToReadyList()
2031 pxCurrentTCB = pxNewTCB; in prvAddNewTaskToReadyList()
[all …]
/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/
Dportasm.S35 .extern pxCurrentTCB
120 movi a2, pxCurrentTCB
161 movi a2, pxCurrentTCB
369 movi a2, pxCurrentTCB
371 movi a2, pxCurrentTCB
410 movi a3, pxCurrentTCB /* cp_state = */
497 movi a2, pxCurrentTCB
546 movi a3, pxCurrentTCB /* cp_state = */
591 movi a15, pxCurrentTCB
/Kernel-v11.1.0/portable/IAR/MSP430/
Dportasm.h34 IMPORT pxCurrentTCB
52 mov.w &pxCurrentTCB, r12
58 mov.w &pxCurrentTCB, r12
/Kernel-v11.1.0/portable/IAR/RX600/
Dport.c66 extern void * pxCurrentTCB;
143 if( pxCurrentTCB != NULL ) in xPortStartScheduler()
191 configASSERT( pxCurrentTCB == NULL ); in vPortEndScheduler()
/Kernel-v11.1.0/portable/IAR/ARM_CM35P_NTZ/non_secure/
Dportasm.s42 EXTERN pxCurrentTCB
97 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
138 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
162 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
218 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
254 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
295 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
335 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
347 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
/Kernel-v11.1.0/portable/IAR/ARM_CM33_NTZ/non_secure/
Dportasm.s42 EXTERN pxCurrentTCB
97 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
138 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
162 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
218 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
254 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
295 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
335 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
347 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
/Kernel-v11.1.0/portable/IAR/ARM_CM55_NTZ/non_secure/
Dportasm.s42 EXTERN pxCurrentTCB
97 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
138 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
162 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
218 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
254 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
295 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB ). */
335 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …
347 …ldr r2, =pxCurrentTCB /* Read the location of pxCurrentTCB i.e. &( pxCurrentTCB …

1234567