summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm: Fix default exception handlerSebastian Huber2019-09-031-2/+2
| | | | Keep the stack pointer properly 8-byte aligned.
* record: Add system eventsSebastian Huber2019-09-022-7/+7
| | | | Update #3665.
* record: Add system eventsSebastian Huber2019-08-304-102/+1467
| | | | | | Add system events for memory allocation/free. Update #3665.
* record: Add system eventsSebastian Huber2019-08-306-53/+149
| | | | | | | Add system events to identify the target system. Add system events to transfer blocks of memory and register sets. Update #3665.
* record: Initialize records earlierSebastian Huber2019-08-301-4/+4
| | | | | | | | The _Record_Initialize() function depends only initialized read-only data. Call it as the first initialization step to allow tracing of the complete system initialization. Update #3665.
* record: Simplify configurationSebastian Huber2019-08-303-8/+11
| | | | Update #3665.
* record: Introduce _Record_Drain()Sebastian Huber2019-08-302-36/+51
| | | | | | This allows its use in crash dump procedures. Update #3665.
* record: Add more system eventsSebastian Huber2019-08-295-137/+1576
| | | | | | | | | | Reduce the system dependencies to allow tracing of very low level functions, for example the interrupt disable/enable. Introduce general purpose RTEMS_RECORD_CALLER and RTEMS_RECORD_LINE events. Update #3665.
* score: Add RTEMS_RETURN_ADDRESS()Sebastian Huber2019-08-281-1/+12
|
* record: Add variants for critical sectionsSebastian Huber2019-08-281-3/+43
| | | | Update #3665.
* record: Introduce <rtems/recordserver.h>Sebastian Huber2019-08-284-34/+81
| | | | | | | This helps to get rid of the <rtems/rtems/tasks.h> dependency in <rtems/record.h>. Update #3665.
* record: Use BSS section instead of per-CPU dataSebastian Huber2019-08-285-29/+32
| | | | | | | | | | | The .rtemsrwset section is used for the per-CPU data. This section has loadable content. Place the ring buffers in the BSS section to avoid large executable image sizes. Not using the per-CPU data makes it possible to initialize the record support earlier. Update #3665.
* record: Add data size to clientSebastian Huber2019-08-272-0/+9
| | | | | | | This is necessary to get the thread names properly on 32-bit and 64-bit targets. Update #3665.
* record: Fix thread names on 64-bit targetsSebastian Huber2019-08-272-2/+8
| | | | | | Also fixes the thread names on signed char targets. Update #3665.
* record: Improve overflow handlingSebastian Huber2019-08-262-25/+63
| | | | | Signal the accumulated item overflow count with the time of the first new item.
* record: Fix off by one errorSebastian Huber2019-08-261-1/+1
|
* dev/sc16is752: Reduce RX FIFO trigger levelSebastian Huber2019-08-261-2/+2
| | | | This may help to avoid character loss.
* dev/sc16is752: Set TLS to zeroSebastian Huber2019-08-261-0/+14
| | | | Ensures that the FCR values are used.
* dev/sc16is752: Do FIFO reset separatelySebastian Huber2019-08-261-0/+5
|
* dev/sc16is752: Enable enhanced func earlySebastian Huber2019-08-261-1/+2
|
* dev/sc16is752: Write to right registerSebastian Huber2019-08-261-1/+1
|
* record: Add rtems_record_client_set_handler()Sebastian Huber2019-08-171-0/+8
|
* record: Pass bintime to client handlersSebastian Huber2019-08-172-10/+29
| | | | This is a minor optimization.
* record: Simplify client visit()Sebastian Huber2019-08-171-14/+24
|
* record: Remove superfluous castSebastian Huber2019-08-171-1/+1
|
* record: Increase client robustnessSebastian Huber2019-08-172-10/+34
| | | | Do nothing after errors.
* record: Improve overflow handlingSebastian Huber2019-08-172-10/+266
| | | | | | | | In case of a ring buffer overflow, the rtems_record_drain() will push the complete ring buffer content to the client. While the items are processed by the client, new items may overwrite some items being processed. The overwritten items can be detected in the following iteration once the next tail/head information is pushed to the client.
* record: Detect also large overflowsSebastian Huber2019-08-162-19/+34
|
* record: Simplify rtems_record_client_contextSebastian Huber2019-08-162-19/+27
|
* libdebugger/arm: Support ROM tables.Chris Johns2019-08-121-9/+294
| | | | | - Parse the ROM taables if present to find the component base for the debug hardware. This lets the RPi2 run dl09.exe.
* libdl/debugger: Fix the broken list delete when unloading an object module.Chris Johns2019-08-122-15/+13
| | | | Closes #3777
* record: Change thread name encodingSebastian Huber2019-08-062-2/+2
| | | | This scheme is easier to decode.
* libdl/arm: Add support for ARM trampolinesChris Johns2019-08-041-1/+18
| | | | Closes #3776
* libdebugger: ARM fixes for Cortex-A8 and ARM mode.Chris Johns2019-07-316-247/+730
| | | | | | | | | - Fix destorying the target and thread parts. - Fix the ARM backend to support Cortex-A8 and ARM mode code. - Use the DBGDSCR interrupt mask when single stepping. - Use the DBGDSCR method of entry to debug mode to filter the execptions. - Add support for BSPs to control the ARM backend.
* record: Add support for thread namesSebastian Huber2019-07-304-8/+104
|
* Add and use THREAD_DEFAULT_MAXIMUM_NAME_SIZESebastian Huber2019-07-303-2/+11
|
* libdl/arm: Fix ARM mode trampoline parsing of relocsChris Johns2019-07-281-16/+16
| | | | | | - No need to dump globals syms in test dl01 when tracing Closes #3775
* score/interr: Fix comments.Chris Johns2019-07-061-2/+2
|
* misc/rtemsdefaultconfig: Add bdbuf so libbsd can be used with configure.Chris Johns2019-07-021-1/+2
|
* score: Add and use _Thread_Get_unmapped_priority().Sebastian Huber2019-06-287-42/+65
| | | | Add and use _Thread_Get_unmapped_real_priority().
* arm: Return the current handler from arm_cp15_set_exception_handlerChris Johns2019-06-281-1/+6
| | | | Closes #3762
* libdebugger: Unmap thread prioritiesSebastian Huber2019-06-261-2/+3
|
* rtems/confdefs.h: Fix typoJoel Sherrill2019-06-191-1/+1
|
* dev/sc16is752: Add set/get EFCR IO controlsSebastian Huber2019-06-142-0/+16
|
* dev/sc16is752: Add RS485 mode variantsSebastian Huber2019-06-143-5/+31
|
* libdl/rap: fix RAP file load error.zhengxiaojun2019-06-121-2/+2
|
* sparc: Fix mistakenly cleared PSR[EF] bit.Maksim E. Kozlov2019-06-071-1/+1
| | | | | The superfluously modified %l0 had no effect if the branch is not taken. This change clarifies the code.
* sparc: Fix missed restoring of PSR in syscall_lazy_fp_switchMaksim E. Kozlov2019-06-061-0/+11
| | | | | | | | | It is needed to restore PSR just before return because condition codes are dirty after the CMP instructions and this may cause undefined program behavior after returning from the switching procedure (on following branch instruction, for example). Close #3756.
* sparc: Improve _CPU_Context_validate()Sebastian Huber2019-06-061-8/+20
| | | | | | Use the FPU and check that the condition codes in the PSR are preserved. Update #3756.
* score: Compact objects class indicesSebastian Huber2019-05-221-20/+28
|