FpDebug: added IFDEF $INLINE OFF

This commit is contained in:
Martin 2022-06-18 12:45:37 +02:00
parent ae8bbb1cd6
commit 63a6ce4f32
31 changed files with 31 additions and 3 deletions

View File

@ -1,7 +1,7 @@
unit FpDbgCallContextInfo; unit FpDbgCallContextInfo;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface
uses uses

View File

@ -34,6 +34,7 @@
unit FpDbgClasses; unit FpDbgClasses;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpDbgCommon; unit FpDbgCommon;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -2,6 +2,7 @@ unit FPDbgController;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -2,6 +2,7 @@ unit FpDbgDarwinClasses;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$linkframework Security} {$linkframework Security}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -33,6 +33,7 @@
} }
unit FpDbgDisasAvr; unit FpDbgDisasAvr;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface
uses uses

View File

@ -33,6 +33,7 @@
} }
unit FpDbgDisasX86; unit FpDbgDisasX86;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface
{.$define debug_OperandSize} {.$define debug_OperandSize}

View File

@ -36,7 +36,7 @@ unit FpDbgDwarf;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
{off $INLINE OFF} {$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
(* Notes: (* Notes:

View File

@ -22,6 +22,7 @@
unit FpDbgDwarfConst; unit FpDbgDwarfConst;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -36,7 +36,7 @@ unit FpDbgDwarfDataClasses;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$ModeSwitch advancedrecords} {$ModeSwitch advancedrecords}
//{$INLINE OFF} {$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{off $DEFINE USE_ABBREV_TMAP} {off $DEFINE USE_ABBREV_TMAP}
interface interface

View File

@ -2,6 +2,7 @@ unit FpDbgDwarfFreePascal;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpDbgDwarfVerbosePrinter; unit FpDbgDwarfVerbosePrinter;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -34,6 +34,7 @@ unit FpDbgHardcodedFreepascalInfo;
debug-information when the proper debug-information is not available. } debug-information when the proper debug-information is not available. }
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$IF FPC_FULLVERSION>30100} {$IF FPC_FULLVERSION>30100}
{$DEFINE HasGenObjDict} {$DEFINE HasGenObjDict}

View File

@ -36,6 +36,7 @@ unit FpDbgInfo;
*) *)
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpDbgLinuxClasses; unit FpDbgLinuxClasses;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$packrecords c} {$packrecords c}
{$modeswitch advancedrecords} {$modeswitch advancedrecords}
{off $define DebuglnLinuxDebugEvents} {off $define DebuglnLinuxDebugEvents}

View File

@ -36,6 +36,7 @@
unit FpDbgLoader; unit FpDbgLoader;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -22,6 +22,7 @@
} }
unit FpDbgPETypes; unit FpDbgPETypes;
{$mode objfpc}{$H+}{$inline on} {$mode objfpc}{$H+}{$inline on}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface
{$ifdef windows} {$ifdef windows}
uses uses

View File

@ -34,6 +34,7 @@
unit FpDbgSymbols; unit FpDbgSymbols;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit fpDbgSymTable; unit fpDbgSymTable;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit fpDbgSymTableContext; unit fpDbgSymTableContext;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -34,6 +34,7 @@
unit FpDbgUtil; unit FpDbgUtil;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -102,6 +102,7 @@
unit FpDbgWinClasses; unit FpDbgWinClasses;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{off $DEFINE DebuglnWinDebugEvents} {off $DEFINE DebuglnWinDebugEvents}
interface interface

View File

@ -1,6 +1,7 @@
unit FpdMemoryTools; unit FpdMemoryTools;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$HINT 5024 OFF} {$HINT 5024 OFF}
(* Tools to read data from Target or Own memory. (* Tools to read data from Target or Own memory.

View File

@ -1,6 +1,7 @@
unit FpErrorMessages; unit FpErrorMessages;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpImgReaderBase; unit FpImgReaderBase;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$modeswitch advancedrecords} {$modeswitch advancedrecords}
interface interface

View File

@ -27,6 +27,7 @@
unit FpImgReaderElf; unit FpImgReaderElf;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpImgReaderMacho; unit FpImgReaderMacho;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -35,6 +35,7 @@
unit FpImgReaderWinPE; unit FpImgReaderWinPE;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface

View File

@ -1,6 +1,7 @@
unit FpPascalBuilder; unit FpPascalBuilder;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
interface interface

View File

@ -25,6 +25,7 @@
unit FpPascalParser; unit FpPascalParser;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
interface interface

View File

@ -1,6 +1,7 @@
unit FpWatchResultData; unit FpWatchResultData;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
{$IFDEF INLINE_OFF}{$INLINE OFF}{$ENDIF}
interface interface