From 903486642e4841e5d1aae1dde7e5f6ff76ad8b3f Mon Sep 17 00:00:00 2001 From: svenbarth Date: Thu, 26 Nov 2020 20:13:40 +0000 Subject: [PATCH] * allow an integer expression for SetPeFlags and SetPeOptFlags (Delphi compatible) * adjusted test to check that as well git-svn-id: trunk@47602 - --- compiler/scandir.pas | 26 ++++++++++++++------------ tests/tbs/tb0596.pp | 8 ++++++++ 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/compiler/scandir.pas b/compiler/scandir.pas index 52e4de9b34..3c612ac7f0 100644 --- a/compiler/scandir.pas +++ b/compiler/scandir.pas @@ -1339,30 +1339,32 @@ unit scandir; procedure dir_setpeflags; var ident : string; + flags : int64; begin if not (target_info.system in (systems_all_windows)) then Message(scan_w_setpeflags_not_support); - current_scanner.skipspace; - ident:=current_scanner.readid; - if ident<>'' then - peflags:=peflags or get_peflag_const(ident,scan_e_illegal_peflag) - else - peflags:=peflags or current_scanner.readval; + if current_scanner.readpreprocint(flags,'SETPEFLAGS') then + begin + if flags>$ffff then + message(scan_e_illegal_peflag); + peflags:=peflags or uint16(flags); + end; SetPEFlagsSetExplicity:=true; end; procedure dir_setpeoptflags; var ident : string; + flags : int64; begin if not (target_info.system in (systems_all_windows)) then Message(scan_w_setpeoptflags_not_support); - current_scanner.skipspace; - ident:=current_scanner.readid; - if ident<>'' then - peoptflags:=peoptflags or get_peflag_const(ident,scan_e_illegal_peoptflag) - else - peoptflags:=peoptflags or current_scanner.readval; + if current_scanner.readpreprocint(flags,'SETPEOPTFLAGS') then + begin + if flags>$ffff then + message(scan_e_illegal_peoptflag); + peoptflags:=peoptflags or uint16(flags); + end; SetPEOptFlagsSetExplicity:=true; end; diff --git a/tests/tbs/tb0596.pp b/tests/tbs/tb0596.pp index 6beda27c3e..28153cbd88 100644 --- a/tests/tbs/tb0596.pp +++ b/tests/tbs/tb0596.pp @@ -5,13 +5,21 @@ program tb0596; const IMAGE_FILE_LARGE_ADDRESS_AWARE = $0020; + IMAGE_REMOVABLE_RUN_FROM_SWAP = $0400; + IMAGE_NET_RUN_FROM_SWAP = $0800; + IMAGE_DLLCHARACTERISTICS_NO_ISOLATION = $0200; + IMAGE_DLLCHARACTERISTICS_APPCONTAINER = $1000; IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = $8000; {$setpeflags IMAGE_FILE_LARGE_ADDRESS_AWARE} {$setpeflags $0800} +{$setpeflags IMAGE_REMOVABLE_RUN_FROM_SWAP or IMAGE_NET_RUN_FROM_SWAP} +{$setpeflags $0008 or $0004} {$setpeoptflags IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE} {$setpeoptflags $0040} +{$setpeoptflags IMAGE_DLLCHARACTERISTICS_APPCONTAINER or IMAGE_DLLCHARACTERISTICS_NO_ISOLATION} +{$setpeoptflags $0008 or $0004} begin