8

即使构建配置设置为“调试”并且优化为 False,我也会得到“由于优化而无法访问的变量 ForAllUsers”。所以,我无法调试我的程序。

为什么我会得到这个?
当我按下运行按钮时运行的是哪个版本?
我怎么看


procedure Test(ForAllUsers: boolean);
VAR
   FName, Path1, Path2: string;
   RootKey: HKEY;
begin
 Result:= FALSE;
 TRY
  if ForAllUsers
  then
    begin
     RootKey:= HKEY_CLASSES_ROOT;
     Path1:= '';
     Path2:= '';
    end
  else
    begin
     RootKey:= HKEY_CURRENT_USER;           <----- Break point here
     Path1:= '\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\';
     Path2:= '\Software\Classes\';    
    end;

... 结尾;


更新:
距离我发布这个问题只有几分钟,它已经被投票两次并被加注了两次。似乎这是一个很常见的问题。

4

3 回答 3

11

我们都会不时遭受这种痛苦。我有时会在需要调试引用变量但什么都不做的变量时添加一些虚假代码。例如:

if x>0 then x := x*1;

或者如果它是一个布尔值,那么:

if b then b := not not b;

沿着这些思路的东西通常足以让编译器写出使变量保持活动状态的代码,以便调试器可以检查它。确保将代码放在例程的底部!并确保在签入代码之前记得将其删除。

于 2011-06-06T19:36:17.990 回答
9

让我们看看代码中优化和不优化的区别:

procedure test;
var
  x,y,z: integer;
begin
  x:= 1;   //x is stored in register EAX.
  Inc(x);  
  y:= x;   //this is a no-op because it's just a rename.
//After this point x is no longer used.
//Here you will get `Variable x inaccessible here due to optimization`
  z:= 0;   //z is never used 
  if (y = 1) then Inc(z);  //because Delphi knows this code will never execute
end;

这是经过优化的汇编代码

Project5.dpr.12: x:= 1;   //x is stored in register EAX.
004085E8 B801000000       mov eax,$00000001
Project5.dpr.13: Inc(x);  
004085ED 40               inc eax
Project5.dpr.18: if (y = 1) then Inc(z);
004085EE 48               dec eax  //test to see if eax=1, triggers `jz` if true.
                                   //Delphi put it in to facilitate the `if`, but
                                   //is not smart enough to eliminate it :-)
Project5.dpr.19: end;
004085EF C3               ret 

这是没有优化的代码:

Project5.dpr.11: begin    //note that Delphi doesn't use registers, but the stack 
                          //to keep variables.
004085E8 55               push ebp
004085E9 8BEC             mov ebp,esp      //init the stack frame.
004085EB 83C4F4           add esp,-$0c
Project5.dpr.12: x:= 1;   //x is stored near the top of the stack.
004085EE C745FC01000000   mov [ebp-$04],$00000001
Project5.dpr.13: Inc(x);  
004085F5 FF45FC           inc dword ptr [ebp-$04]
Project5.dpr.14: y:= x;   //y sits on the stack frame.
004085F8 8B45FC           mov eax,[ebp-$04]
004085FB 8945F8           mov [ebp-$08],eax
Project5.dpr.17: z:= 0;    //z is also in the stack frame.
004085FE 33C0             xor eax,eax
00408600 8945F4           mov [ebp-$0c],eax
Project5.dpr.18: if (y = 1) then Inc(z);
00408603 837DF801         cmp dword ptr [ebp-$08],$01
00408607 7503             jnz $0040860c
00408609 FF45F4           inc dword ptr [ebp-$0c]
Project5.dpr.19: end;     //all vars stay in scope.
0040860C 8BE5             mov esp,ebp  //until the stack frame is dismantled.
0040860E 5D               pop ebp  
0040860F C3               ret 

所以你的情况不应该优化关闭的情况下发生,但是......

您也可以在源代码中设置优化开/关:

{$Optimization on/off}  or
{$O+/-}

如果该行在您的例程前面,它将覆盖全局设置。

http://docwiki.embarcadero.com/RADStudio/en/Optimization_%28Delphi%29

于 2011-06-06T19:46:08.627 回答
2

您发布的代码没有按原样编译,所以我不能 100% 我没有通过我的个人修改杀死复制案例以使其运行......但我无法重现您的特定问题。还有谁能做到?

当然,调试器/评估器在优化开启时会抱怨,但随着优化关闭和重建,问题肯定会消失。你确定你做了正确的重建吗?

我有点不同意戴维斯的说法,即“我们都会不时遭受这种痛苦”。除了已知和可预测的边界情况(变量超出范围,断点结束)之外,我实际上从未遇到过这个问题。只要我阻止我的同事通过优化将 dproj 检查到版本控制中,就是这样。

于 2011-06-06T20:12:07.567 回答