.. |
app
|
FpDebug, app/FpdServer: fixed compilation
|
2023-03-02 19:56:36 +01:00 |
languages
|
FPDebug: updated Russian translation
|
2023-05-20 02:05:12 +03:00 |
test
|
LazDebuggerFp, FpDebug: Improve some error messages / Start on i18n
|
2023-03-21 16:41:53 +01:00 |
fpdbgavrclasses.pas
|
FpDebug: Refactor TBreakLocationMap, so that "OrigValue" is no longer exposed. Move some functionality from TProcess to TBreakLocationMap.
|
2023-01-25 20:54:59 +01:00 |
fpdbgcallcontextinfo.pas
|
FpDebug: clean up compile hints
|
2023-03-12 22:34:28 +01:00 |
fpdbgclasses.pp
|
FpDebug: Fix mem leak, if breakpoint is set to "auto destroy"
|
2024-01-20 17:23:53 +01:00 |
fpdbgcommon.pas
|
Add loongarch64 support. FPC trunk supports it, too. Issue #40127, patch by Alfred Glänzer.
|
2023-02-25 23:24:38 +02:00 |
fpdbgcontroller.pas
|
FpDebug: Asm-step-over, ignore unloading library events
|
2024-11-06 16:20:17 +01:00 |
fpdbgdarwinclasses.pas
|
FpDebug: fix typo
|
2022-09-16 19:55:14 +02:00 |
fpdbgdisasavr.pp
|
FpDebug: clean up compile hints
|
2023-03-12 22:34:28 +01:00 |
fpdbgdisasx86.pp
|
FpDebug: x86-disassembler: fix vcvtph2ps Issue #40837
|
2024-03-15 16:30:21 +01:00 |
fpdbgdwarf.pas
|
FpDebug: fix range check error with enum values (negative ord value). Issue #41240
|
2024-11-17 13:19:18 +01:00 |
fpdbgdwarfcfi.pas
|
FpDebug: fix range check in stack unwind (CFI)
|
2024-01-23 11:29:03 +01:00 |
fpdbgdwarfconst.pas
|
FpDebug: Don't read debug info with unknown DW_FORM
|
2024-01-16 17:46:06 +01:00 |
fpdbgdwarfdataclasses.pas
|
FpDebug: fix checks for end of CIE-data. Don't read outside the section data.
|
2024-11-23 17:04:42 +01:00 |
fpdbgdwarffreepascal.pas
|
FpDebug: fix :refcnt for fpc 3.3.1
|
2023-12-02 17:03:08 +01:00 |
fpdbgdwarfverboseprinter.pas
|
FpDebug: Use Dwarf Call Frame Information (CFI) for stack-tracing when available. Refactored some stuff to be able to place it in a separate unit.
|
2022-06-28 23:09:34 +02:00 |
fpdbghardcodedfreepascalinfo.pas
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbginfo.pas
|
FpDebug: check error in expressions, when new dbg-values are created.
|
2023-12-02 17:03:08 +01:00 |
fpdbglinuxclasses.pas
|
FpDebug: Do not free current DbgThread while still in use / Will be freed after next run/step. (Linux)
|
2025-01-09 13:12:56 +01:00 |
fpdbglinuxextra.pas
|
FpDebug: Compilation on LIBC based targets. Workaround for issue #40575
|
2023-11-28 13:31:16 +01:00 |
fpdbgloader.pp
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbgpetypes.pp
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbgrsp.pas
|
[RSP] Do not acknowledge an OK response, since qemu complains about receiving an acknowledge after an OK response. It is not clear whether this is in accordance with the RSP protocol specification.
|
2023-01-08 17:05:04 +01:00 |
fpdbgsymbols.pas
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbgsymtable.pas
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbgsymtablecontext.pas
|
FpDebug: added IFDEF $INLINE OFF
|
2022-06-21 00:06:04 +02:00 |
fpdbgutil.pp
|
FpDebug: fix for some missing stackframes
|
2023-10-05 20:00:27 +02:00 |
fpdbgwinclasses.pas
|
LazDebuggerFp, FpDebug: Fix watch-function-call when debuggee has crashed. Prevent the function call
|
2023-03-13 12:32:30 +01:00 |
fpdbgwinextra.pp
|
Fix compile / issue #0036204
|
2019-10-24 20:22:45 +00:00 |
fpdebug.lpk
|
updated makefiles, fixed compile fpdebug with fpc 3.2.2
|
2022-11-13 13:23:46 +01:00 |
fpdebug.pas
|
FpDebug: Use Dwarf Call Frame Information (CFI) for stack-tracing when available. Refactored some stuff to be able to place it in a separate unit.
|
2022-06-28 23:09:34 +02:00 |
fpdmemorytools.pas
|
FpDebug: Add comparing enum-values in watches "enum1 >= enum2"
|
2023-12-30 21:07:09 +01:00 |
fperrormessages.pas
|
FpDebug: Allow to deref constant numbers, and show a memory-dump. Issue #36836
|
2023-05-19 18:13:41 +02:00 |
fpimgreaderbase.pas
|
FpDebug: Windows, implement alternative "normal" file reading (via stream). On 32bit mapping an entire file into memory can fail, if not enough continuous memory is available.
|
2024-05-23 22:02:30 +02:00 |
fpimgreaderelf.pas
|
FpDebug: Handle overflow for relocation with 32bit target. RelocationOffset is stored as QWord, but can be negative. For 32bit targets the overflow must be masked out.
|
2023-10-14 15:03:00 +02:00 |
fpimgreaderelftypes.pas
|
FpDebug: New TTargetDescriptor type used to store target specific information. All target specific classes are automatically registered in the respective initialization sections. TDbgController.Run modified to call CheckExecutableAndLoadClasses which loads target info from specified file, loads global disassembler instance and DbgProcess class. Patch/Contributed by ccrause
|
2020-03-12 14:20:33 +00:00 |
fpimgreadermacho.pas
|
FpDebug: Fix Mac-ImageReader. Deal with Symbols of type N_PEXT. And fix, for entries where N_SECT is encountered before N_GSYM. Issue #39696
|
2022-09-04 10:52:57 +02:00 |
fpimgreadermachofile.pas
|
Support compiling more of Lazarus + its components with -Sy option.
|
2023-05-21 01:32:42 +03:00 |
fpimgreaderwinpe.pas
|
Support compiling most of Lazarus + its components with -Sy option.
|
2023-05-20 12:51:35 +03:00 |
fpimgreaderwinpetypes.pas
|
|
|
fpmake.pp
|
FpDebug: Workaround in fpmake.pp for usage with fpc 3.2.2
|
2022-07-10 12:54:03 +02:00 |
fppascalbuilder.pas
|
LazDebuggerFp: fixed uninitialized result
|
2023-10-07 19:51:20 +02:00 |
fppascalparser.pas
|
FpDebug: prevent div-by-zero in the debugger (in the IDE) while evaluating watches.
|
2023-12-30 21:07:10 +01:00 |
fpwatchresultdata.pas
|
FpDebug: check error in expressions, when new dbg-values are created.
|
2023-12-02 17:03:08 +01:00 |
macho.pas
|
Updated macho.pas from compiler folder. Needed the CPU_TYPE_ constants to identify target information. Patch by ccrause
|
2020-01-04 03:56:56 +00:00 |
Makefile
|
updated makefiles
|
2025-01-18 10:32:39 +01:00 |
Makefile.compiled
|
updated makefiles
|
2023-05-27 02:07:12 +02:00 |
Makefile.fpc
|
updated makefiles
|
2023-05-27 02:07:12 +02:00 |
README_DUBY.txt
|
|
|
README_macho.txt
|
|
|