Difference between revisions of "Interfacing the Debugger"

m
m
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
[[Category:Compiler]]
 
[[Category:Compiler]]
{{Warning|'''Warning''': Article under development}}
+
[[Category:EiffelDebugger]]
 +
{{UnderConstruction}}
  
 
====Introduction====
 
====Introduction====
 +
EiffelStudio supports a rich debugging feature set for workbench code. Finalized systems can only be debugged at the C level.
  
/* foo */
+
====Requirements on the runtime====
 +
When a program is being debugged it is either executing or communicating with the debug daemon. For the latter it is waiting for commands from the daemon (over an inter process communication mechanism) and executing them. Some of those commands are:
 +
* Proceed to the next breakpoint.
 +
* Proceed to the next breakpoint slot.
 +
* Stop the execution.
 +
* Resume the execution.
 +
* Give information about variables on the stack or heap.
  
EIF_BOOLEAN Fadkw7f (EIF_REFERENCE Current, EIF_REFERENCE arg1, EIF_REFERENCE arg2)
+
The runtime thus needs to be able to inspect the C stack and make the transition between the two states executing and communicating.
 +
 
 +
====An Example====
 +
The translation to workbench code of feature foo will be used throughout the remainder of the text:
 +
 
 +
{|border="0" cellpadding="2" cellspacing="0" align="center"
 +
|-valign="top" -halign="center"
 +
|
 +
<eiffel>foo (list: LIST [LIST [ANY]]
 +
    str: STRING): BOOLEAN
 +
  local
 +
      i: INTEGER
 +
  do
 +
      i := 10
 +
      list.first.force (str)
 +
      Result := True
 +
  end</eiffel>
 +
|
 +
<c>/* foo */
 +
EIF_BOOLEAN Fadkw7f (EIF_REFERENCE Current,  
 +
                    EIF_REFERENCE arg1,  
 +
                    EIF_REFERENCE arg2)
 
{
 
{
  GTCX
 
  RTEX;
 
 
   EIF_INTEGER_32 loc1 = (EIF_INTEGER_32) 0;
 
   EIF_INTEGER_32 loc1 = (EIF_INTEGER_32) 0;
  EIF_REFERENCE tp1 = NULL;
 
  EIF_REFERENCE tp2 = NULL;
 
 
   EIF_BOOLEAN Result = (EIF_BOOLEAN) 0;
 
   EIF_BOOLEAN Result = (EIF_BOOLEAN) 0;
   RTSN;
+
   ...
  RTDA;
+
 
   RTLD;
+
   /*Load locals onto the debuggers stack (cop_stack):*/
 
+
   RTLU (SK_BOOL, &Result);  
  RTLI(5);
+
  RTLR(1,tp1);
+
  RTLR(0,arg1);
+
  RTLR(2,arg2);
+
  RTLR(4,Current);
+
  RTLR(3,tp2);
+
 
+
   RTLU (SK_BOOL, &Result);
+
 
   RTLU(SK_REF,&arg1);
 
   RTLU(SK_REF,&arg1);
 
   RTLU(SK_REF,&arg2);
 
   RTLU(SK_REF,&arg2);
 
   RTLU (SK_REF, &Current);
 
   RTLU (SK_REF, &Current);
 
   RTLU(SK_INT32, &loc1);
 
   RTLU(SK_INT32, &loc1);
   RTEAA("foo", RTUD(9), Current, 1, 2, 186);
+
   ...
   RTGC;
+
   RTHOOK(1); //Signal debugger, breakpoint slot 1 reached
  RTSA(Dtype(Current));
+
  RTSC;
+
  RTIV2(Current, RTAL);
+
  RTHOOK(1);
+
 
   loc1 = (EIF_INTEGER_32)((EIF_INTEGER_32) 10L);
 
   loc1 = (EIF_INTEGER_32)((EIF_INTEGER_32) 10L);
   RTHOOK(2);
+
   RTHOOK(2); //Signal debugger, breakpoint slot 2 reached
   tp1 = (FUNCTION_CAST(EIF_REFERENCE, (EIF_REFERENCE)) RTVF(100, 33, "first", arg1))(arg1);
+
   tp1 = (FUNCTION_CAST(EIF_REFERENCE, (EIF_REFERENCE))  
   RTNHOOK(2);
+
      RTVF(100, 33, "first", arg1))(arg1);
 +
   RTNHOOK(2); //Signal debugger, nested breakpoint slot
 
   tp2 = RTCCL(arg2);
 
   tp2 = RTCCL(arg2);
   (FUNCTION_CAST(void, (EIF_REFERENCE, EIF_REFERENCE)) RTVF(100, 39, "force", tp1))(tp1, tp2);
+
   (FUNCTION_CAST(void, (EIF_REFERENCE, EIF_REFERENCE))  
   RTHOOK(3);
+
      RTVF(100, 39, "force", tp1))(tp1, tp2);
 +
   RTHOOK(3); //Signal debugger, breakpoint slot 3 reached
 
   Result = (EIF_BOOLEAN)(EIF_BOOLEAN) 1;
 
   Result = (EIF_BOOLEAN)(EIF_BOOLEAN) 1;
  RTVI2(Current, RTAL);
+
   RTHOOK(4); //Signal debugger, breakpoint slot 4 reached
  RTRS;
+
   RTLO(5);   //Pop the five locals from the debuggers stack
   RTHOOK(4);
+
 
  RTLE;
+
   RTLO(5);
+
  RTEE;
+
 
   return Result;
 
   return Result;
}
+
}</c>
 +
|
 +
|}
 +
====Inspecting the C stack====
 +
====Switching between executing and communicating====
 +
In the code example above there are several calls to the macro RTHOOK and RTNHOOK.

Latest revision as of 23:23, 6 May 2007

Construction.png Not Ready for Review: This Page is Under Development!

Introduction

EiffelStudio supports a rich debugging feature set for workbench code. Finalized systems can only be debugged at the C level.

Requirements on the runtime

When a program is being debugged it is either executing or communicating with the debug daemon. For the latter it is waiting for commands from the daemon (over an inter process communication mechanism) and executing them. Some of those commands are:

  • Proceed to the next breakpoint.
  • Proceed to the next breakpoint slot.
  • Stop the execution.
  • Resume the execution.
  • Give information about variables on the stack or heap.

The runtime thus needs to be able to inspect the C stack and make the transition between the two states executing and communicating.

An Example

The translation to workbench code of feature foo will be used throughout the remainder of the text:

foo (list: LIST [LIST [ANY]]
     str: STRING): BOOLEAN
   local
      i: INTEGER
   do
      i := 10
      list.first.force (str)
      Result := True
   end
/* foo */
EIF_BOOLEAN Fadkw7f (EIF_REFERENCE Current, 
                     EIF_REFERENCE arg1, 
                     EIF_REFERENCE arg2)
{
   EIF_INTEGER_32 loc1 = (EIF_INTEGER_32) 0;
   EIF_BOOLEAN Result = (EIF_BOOLEAN) 0;
   ...
 
   /*Load locals onto the debuggers stack (cop_stack):*/
   RTLU (SK_BOOL, &Result); 
   RTLU(SK_REF,&arg1);
   RTLU(SK_REF,&arg2);
   RTLU (SK_REF, &Current);
   RTLU(SK_INT32, &loc1);
   ...
   RTHOOK(1);  //Signal debugger, breakpoint slot 1 reached
   loc1 = (EIF_INTEGER_32)((EIF_INTEGER_32) 10L);
   RTHOOK(2);  //Signal debugger, breakpoint slot 2 reached
   tp1 = (FUNCTION_CAST(EIF_REFERENCE, (EIF_REFERENCE)) 
      RTVF(100, 33, "first", arg1))(arg1);
   RTNHOOK(2); //Signal debugger, nested breakpoint slot
   tp2 = RTCCL(arg2);
   (FUNCTION_CAST(void, (EIF_REFERENCE, EIF_REFERENCE)) 
      RTVF(100, 39, "force", tp1))(tp1, tp2);
   RTHOOK(3);  //Signal debugger, breakpoint slot 3 reached
   Result = (EIF_BOOLEAN)(EIF_BOOLEAN) 1;
   RTHOOK(4);  //Signal debugger, breakpoint slot 4 reached
   RTLO(5);    //Pop the five locals from the debuggers stack
 
   return Result;
}

Inspecting the C stack

Switching between executing and communicating

In the code example above there are several calls to the macro RTHOOK and RTNHOOK.