Browse Source

- removed tests, since safecall doesn't make sense in these contexts

git-svn-id: trunk@3659 -
Jonas Maebe 19 years ago
parent
commit
0083045c16
4 changed files with 0 additions and 5223 deletions
  1. 0 3
      .gitattributes
  2. 0 1401
      tests/test/cg/tcalfun5.pp
  3. 0 3293
      tests/test/cg/tcalobj5.pp
  4. 0 526
      tests/test/cg/tcalpvr5.pp

+ 0 - 3
.gitattributes

@@ -5515,7 +5515,6 @@ tests/test/cg/tcalfun1.pp svneol=native#text/plain
 tests/test/cg/tcalfun2.pp svneol=native#text/plain
 tests/test/cg/tcalfun3.pp svneol=native#text/plain
 tests/test/cg/tcalfun4.pp svneol=native#text/plain
-tests/test/cg/tcalfun5.pp svneol=native#text/plain
 tests/test/cg/tcalfun6.pp svneol=native#text/plain
 tests/test/cg/tcalfun7.pp svneol=native#text/plain
 tests/test/cg/tcalfun8.pp svneol=native#text/plain
@@ -5525,7 +5524,6 @@ tests/test/cg/tcalobj1.pp svneol=native#text/plain
 tests/test/cg/tcalobj2.pp svneol=native#text/plain
 tests/test/cg/tcalobj3.pp svneol=native#text/plain
 tests/test/cg/tcalobj4.pp svneol=native#text/plain
-tests/test/cg/tcalobj5.pp svneol=native#text/plain
 tests/test/cg/tcalobj6.pp svneol=native#text/plain
 tests/test/cg/tcalobj7.pp svneol=native#text/plain
 tests/test/cg/tcalobj8.pp svneol=native#text/plain
@@ -5534,7 +5532,6 @@ tests/test/cg/tcalpvr1.pp svneol=native#text/plain
 tests/test/cg/tcalpvr2.pp svneol=native#text/plain
 tests/test/cg/tcalpvr3.pp svneol=native#text/plain
 tests/test/cg/tcalpvr4.pp svneol=native#text/plain
-tests/test/cg/tcalpvr5.pp svneol=native#text/plain
 tests/test/cg/tcalpvr6.pp svneol=native#text/plain
 tests/test/cg/tcalpvr7.pp svneol=native#text/plain
 tests/test/cg/tcalpvr8.pp svneol=native#text/plain

+ 0 - 1401
tests/test/cg/tcalfun5.pp

@@ -1,1401 +0,0 @@
- {****************************************************************}
- {  CODE GENERATOR TEST PROGRAM                                   }
- {  By Carl Eric Codere                                           }
- {****************************************************************}
- { NODE TESTED : secondcallparan()                                }
- {****************************************************************}
- { PRE-REQUISITES: secondload()                                   }
- {                 secondassign()                                 }
- {                 secondtypeconv()                               }
- {                 secondtryexcept()                              }
- {                 secondcalln()                                  }
- {                 secondadd()                                    }
- {****************************************************************}
- { DEFINES:                                                       }
- {            FPC     = Target is FreePascal compiler             }
- {****************************************************************}
- { REMARKS: This tests a subset of the secondcalln() node         }
- {          (function return values with safecall calling cnvs)   }
- {          (also tests nested routines up to 2 level deep)       }
- {****************************************************************}
- program tcalfun5;
-
- {$ifdef fpc}
-   {$mode objfpc}
-   {$INLINE ON}
- {$endif}
- {$R+}
- {$P-}
-
-{$ifdef VER70}
-  {$define tp}
-{$endif}
-
-
-  { REAL should map to single or double }
-  { so it is not checked, since single  }
-  { double nodes are checked.           }
-
-  { assumes that enumdef is the same as orddef (same storage format) }
-
-  const
- { should be defined depending on CPU target }
-{$ifdef fpc}
-  {$ifdef cpu68k}
-    BIG_INDEX = 8000;
-    SMALL_INDEX  = 13;
-  {$else}
-    BIG_INDEX = 33000;
-    SMALL_INDEX = 13;     { value should not be aligned! }
-  {$endif}
-{$else}
-  BIG_INDEX = 33000;
-  SMALL_INDEX = 13;     { value should not be aligned! }
-{$endif}
-   RESULT_U8BIT = $55;
-   RESULT_U16BIT = $500F;
-   RESULT_S32BIT = $500F0000;
-   RESULT_S64BIT = $500F0000;
-   RESULT_S32REAL = 1777.12;
-   RESULT_S64REAL = 3444.24;
-   RESULT_BOOL8BIT = 1;
-   RESULT_BOOL16BIT = 1;
-   RESULT_BOOL32BIT = 1;
-   RESULT_PCHAR = 'Hello world';
-   RESULT_BIGSTRING = 'Hello world';
-   RESULT_SMALLSTRING = 'H';
-   RESULT_CHAR = 'I';
-   RESULT_BOOLEAN = TRUE;
-
- type
- {$ifndef tp}
-   tclass1 = class
-   end;
- {$else}
-   shortstring = string;
- {$endif}
-
-   tprocedure = procedure;
-
-   tsmallrecord = packed record
-     b: byte;
-     w: word;
-   end;
-
-   tlargerecord = packed record
-     b: array[1..BIG_INDEX] of byte;
-   end;
-
-   tsmallarray = packed array[1..SMALL_INDEX] of byte;
-
-   tsmallsetenum =
-   (A_A,A_B,A_C,A_D);
-
-   tsmallset = set of tsmallsetenum;
-   tlargeset = set of char;
-
-   tsmallstring = string[2];
-
-
-
-
-
- var
-  global_u8bit : byte;
-  global_u16bit : word;
-  global_s32bit : longint;
-  global_s32real : single;
-  global_s64real : double;
-  global_ptr : pchar;
-  global_proc : tprocedure;
-  global_bigstring : shortstring;
-  global_boolean : boolean;
-  global_char : char;
- {$ifndef tp}
-  global_class : tclass1;
-  global_s64bit : int64;
-  value_s64bit : int64;
-  value_class : tclass1;
- {$endif}
-  value_ansistring : ansistring;
-  value_u8bit : byte;
-  value_u16bit : word;
-  value_s32bit : longint;
-  value_s32real : single;
-  value_s64real  : double;
-  value_proc : tprocedure;
-  value_ptr : pchar;
-  value_smallrec : tsmallrecord;
-  value_largerec : tlargerecord;
-  value_smallset : tsmallset;
-  value_smallstring : tsmallstring;
-  value_bigstring   : shortstring;
-  value_largeset : tlargeset;
-  value_smallarray : tsmallarray;
-  value_boolean : boolean;
-  value_char : char;
-
-     procedure fail;
-     begin
-       WriteLn('Failure.');
-       halt(1);
-     end;
-
-
-     procedure clear_globals;
-      begin
-       global_u8bit := 0;
-       global_u16bit := 0;
-       global_s32bit := 0;
-       global_s32real := 0.0;
-       global_s64real := 0.0;
-       global_ptr := nil;
-       global_proc := nil;
-       global_bigstring := '';
-       global_boolean := false;
-       global_char := #0;
-       global_s64bit := 0;
-       global_class := nil;
-      end;
-
-
-     procedure clear_values;
-      begin
-       value_u8bit := 0;
-       value_u16bit := 0;
-       value_s32bit := 0;
-       value_s32real := 0.0;
-       value_s64real  := 0.0;
-       value_proc := nil;
-       value_ptr := nil;
-       fillchar(value_smallrec, sizeof(value_smallrec), #0);
-       fillchar(value_largerec, sizeof(value_largerec), #0);
-       value_smallset := [];
-       value_smallstring := '';
-       value_bigstring   := '';
-       value_largeset := [];
-       fillchar(value_smallarray, sizeof(value_smallarray), #0);
-       value_boolean := false;
-       value_char:=#0;
-       value_ansistring := '';
- {$ifndef tp}
-       value_s64bit := 0;
-       value_class := nil;
- {$endif}
-      end;
-
-
-
- {********************************* FUNCTION RESULTS *************************}
-
-{ LOC_MEM return values }
-function func_array: tsmallarray;safecall;
- var
-  smallarray: tsmallarray;
- begin
-  fillchar(smallarray, sizeof(smallarray), #0);
-  smallarray[1] := RESULT_U8BIT;
-  smallarray[SMALL_INDEX] := RESULT_U8BIT;
-  func_array := smallarray;
- end;
-
-function func_largerecord: tlargerecord;safecall;
- var
-   largerecord : tlargerecord;
- begin
-   fillchar(largerecord, sizeof(largerecord), #0);
-   largerecord.b[1] := RESULT_U8BIT;
-   largerecord.b[BIG_INDEX] := RESULT_U8BIT;
-   func_largerecord := largerecord;
- end;
-
-function func_shortstring: shortstring;safecall;
- begin
-   func_shortstring := RESULT_BIGSTRING;
- end;
-
-function func_largeset : tlargeset;safecall;
- var
-  largeset : tlargeset;
- begin
-  largeset := ['I'];
-  func_largeset := largeset;
- end;
-
-function func_u8bit : byte;safecall;
- begin
-   func_u8bit := RESULT_U8BIT;
- end;
-
-function func_u16bit : word;safecall;
- begin
-   func_u16bit := RESULT_U16BIT;
- end;
-
-function func_s32bit : longint;safecall;
- begin
-   func_s32bit := RESULT_S32BIT;
- end;
-
-function func_s64bit : int64;safecall;
- begin
-   func_s64bit := RESULT_S64BIT;
- end;
-
-function func_s32real : single;safecall;
- begin
-   func_s32real := RESULT_S32REAL;
- end;
-
-function func_s64real : double;safecall;
- begin
-   func_s64real := RESULT_S64REAl;
- end;
-
-function func_ansistring : ansistring;safecall;
- begin
-   func_ansistring := RESULT_BIGSTRING;
- end;
-
-function func_pchar : pchar;safecall;
- begin
-   func_pchar := RESULT_PCHAR;
- end;
-
- {************************** FUNCTION RESULT WITH PARAMS ******************}
-{ LOC_MEM return values }
-function func_array_mixed(b: byte): tsmallarray;safecall;
- var
-  local_b: byte;
-  smallarray: tsmallarray;
- begin
-  fillchar(smallarray, sizeof(smallarray), #0);
-  smallarray[1] := RESULT_U8BIT;
-  smallarray[SMALL_INDEX] := RESULT_U8BIT;
-  func_array_mixed := smallarray;
-  local_b:=b;
-  global_u8bit := b;
- end;
-
-function func_largerecord_mixed(b: byte): tlargerecord;safecall;
- var
-   local_b: byte;
-   largerecord : tlargerecord;
- begin
-   fillchar(largerecord, sizeof(largerecord), #0);
-   largerecord.b[1] := RESULT_U8BIT;
-   largerecord.b[BIG_INDEX] := RESULT_U8BIT;
-   func_largerecord_mixed := largerecord;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_shortstring_mixed(b: byte): shortstring;safecall;
- var
-  local_b: byte;
- begin
-   func_shortstring_mixed := RESULT_BIGSTRING;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_largeset_mixed(b: byte) : tlargeset;safecall;
- var
-  local_b: byte;
-  largeset : tlargeset;
- begin
-  largeset := ['I'];
-  func_largeset_mixed := largeset;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_u8bit_mixed(b: byte) : byte;safecall;
- var
-  local_b: byte;
- begin
-   func_u8bit_mixed := RESULT_U8BIT;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_u16bit_mixed(b: byte) : word;safecall;
- var
-  local_b: byte;
- begin
-   func_u16bit_mixed := RESULT_U16BIT;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_s32bit_mixed(b: byte) : longint;safecall;
- var
-  local_b: byte;
- begin
-   func_s32bit_mixed := RESULT_S32BIT;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_s64bit_mixed(b: byte) : int64;safecall;
- var
-  local_b: byte;
- begin
-   func_s64bit_mixed := RESULT_S64BIT;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_s32real_mixed(b: byte) : single;safecall;
- var
-  local_b: byte;
- begin
-   func_s32real_mixed := RESULT_S32REAL;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_s64real_mixed(b: byte) : double;safecall;
- var
-  local_b: byte;
- begin
-   func_s64real_mixed := RESULT_S64REAl;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_ansistring_mixed(b: byte) : ansistring;safecall;
- var
-  local_b: byte;
- begin
-   func_ansistring_mixed := RESULT_BIGSTRING;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
-function func_pchar_mixed(b: byte) : pchar;safecall;
- var
-  local_b: byte;
- begin
-   func_pchar_mixed := RESULT_PCHAR;
-   local_b:=b;
-   global_u8bit := b;
- end;
-
- {********************* FUNCTION RESULT WITH PARAMS (NESTED) ******************}
-{ LOC_MEM return values }
-function func_array_mixed_nested(b: byte): tsmallarray;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
-  smallarray: tsmallarray;
- begin
-  fillchar(smallarray, sizeof(smallarray), #0);
-  smallarray[1] := RESULT_U8BIT;
-  smallarray[SMALL_INDEX] := RESULT_U8BIT;
-  func_array_mixed_nested := smallarray;
-  local_b:=b;
-  global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
-{  nested_one_proc(RESULT_S32BIT);}
- end;
-
-function func_largerecord_mixed_nested(b: byte): tlargerecord;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-   local_b: byte;
-   largerecord : tlargerecord;
- begin
-   fillchar(largerecord, sizeof(largerecord), #0);
-   largerecord.b[1] := RESULT_U8BIT;
-   largerecord.b[BIG_INDEX] := RESULT_U8BIT;
-   func_largerecord_mixed_nested := largerecord;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_shortstring_mixed_nested(b: byte): shortstring;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
- var
-  local_b: byte;
- begin
-   func_shortstring_mixed_nested := RESULT_BIGSTRING;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_largeset_mixed_nested(b: byte) : tlargeset;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
-  largeset : tlargeset;
- begin
-  largeset := ['I'];
-  func_largeset_mixed_nested := largeset;
-  local_b:=b;
-  global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_u8bit_mixed_nested(b: byte) : byte;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_u8bit_mixed_nested := RESULT_U8BIT;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_u16bit_mixed_nested(b: byte) : word;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_u16bit_mixed_nested := RESULT_U16BIT;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_s32bit_mixed_nested(b: byte) : longint;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_s32bit_mixed_nested := RESULT_S32BIT;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_s64bit_mixed_nested(b: byte) : int64;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_s64bit_mixed_nested := RESULT_S64BIT;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_s32real_mixed_nested(b: byte) : single;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_s32real_mixed_nested := RESULT_S32REAL;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_s64real_mixed_nested(b: byte) : double;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_s64real_mixed_nested := RESULT_S64REAl;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_ansistring_mixed_nested(b: byte) : ansistring;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_ansistring_mixed_nested := RESULT_BIGSTRING;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-function func_pchar_mixed_nested(b: byte) : pchar;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := b;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
- begin
-   func_pchar_mixed_nested := RESULT_PCHAR;
-   local_b:=b;
-   global_u8bit := nested_one_func(local_b, RESULT_BIGSTRING);
- end;
-
-
-var
- failed: boolean;
-Begin
- {************************************* SIMPLE TESTS ***********************************}
- write('Testing function results (LOC_REFERENCE)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_smallarray := func_array;
- if (value_smallarray[1] <> RESULT_U8BIT) or (value_smallarray[SMALL_INDEX] <> RESULT_U8BIT) then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largerec := func_largerecord;
- if (value_largerec.b[1] <> RESULT_U8BIT) or (value_largerec.b[BIG_INDEX] <> RESULT_U8BIT) then
-    failed:=true;
-
- clear_globals;
- clear_values;
- value_bigstring := func_shortstring;
- if value_bigstring <> RESULT_BIGSTRING then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largeset := func_largeset;
- if not ('I' in value_largeset) then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing orddef/enumdef function results (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- value_u8bit := func_u8bit;
- if value_u8bit <> RESULT_U8BIT then
-     failed := true;
-
- clear_globals;
- clear_values;
- value_u16bit := func_u16bit;
- if value_u16bit <> RESULT_U16BIT then
-     failed := true;
-
- clear_globals;
- clear_values;
- value_s32bit := func_s32bit;
- if value_s32bit <> RESULT_S32BIT then
-     failed := true;
-
- clear_globals;
- clear_values;
- value_s64bit := func_s64bit;
- if value_s64bit <> RESULT_S64BIT then
-    failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
-
- write('Testing floatdef function results...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- clear_globals;
- clear_values;
- value_s32real := func_s32real;
- if trunc(value_s32real) <> trunc(RESULT_S32REAL) then
-   failed:=true;
-
- clear_globals;
- clear_values;
- value_s64real := func_s64real;
- if trunc(value_s64real) <> trunc(RESULT_S64REAL) then
-   failed:=true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing ansistring function result...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
-value_ansistring := func_ansistring;
-if value_ansistring <> RESULT_BIGSTRING then
-   failed:=true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing pointer function result (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_ptr := func_pchar;
- if value_ptr <> RESULT_PCHAR then
-    failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- {*********************************** TESTS W/PARAMS ***********************************}
- write('Testing function results with parameter (LOC_REFERENCE)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_smallarray := func_array_mixed(RESULT_U8BIT);
- if (value_smallarray[1] <> RESULT_U8BIT) or (value_smallarray[SMALL_INDEX] <> RESULT_U8BIT) then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largerec := func_largerecord_mixed(RESULT_U8BIT);
- if (value_largerec.b[1] <> RESULT_U8BIT) or (value_largerec.b[BIG_INDEX] <> RESULT_U8BIT) then
-    failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_bigstring := func_shortstring_mixed(RESULT_U8BIT);
- if value_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largeset := func_largeset_mixed(RESULT_U8BIT);
- if not ('I' in value_largeset) then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing orddef/enumdef function results with parameter (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- value_u8bit := func_u8bit_mixed(RESULT_U8BIT);
- if value_u8bit <> RESULT_U8BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_u16bit := func_u16bit_mixed(RESULT_U8BIT);
- if value_u16bit <> RESULT_U16BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s32bit := func_s32bit_mixed(RESULT_U8BIT);
- if value_s32bit <> RESULT_S32BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s64bit := func_s64bit_mixed(RESULT_U8BIT);
- if value_s64bit <> RESULT_S64BIT then
-    failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
-
- write('Testing floatdef function results with parameter...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_s32real := func_s32real_mixed(RESULT_U8BIT);
- if trunc(value_s32real) <> trunc(RESULT_S32REAL) then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s64real := func_s64real_mixed(RESULT_U8BIT);
- if trunc(value_s64real) <> trunc(RESULT_S64REAL) then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing ansistring function result with parameter...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- value_ansistring := func_ansistring_mixed(RESULT_U8BIT);
- if value_ansistring <> RESULT_BIGSTRING then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing pointer function result with parameter (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_ptr := func_pchar_mixed(RESULT_U8BIT);
- if value_ptr <> RESULT_PCHAR then
-    failed := true;
- if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- {******************************NESTED TESTS W/PARAMS **********************************}
- write('Testing function (w/nesting) results with parameter (LOC_REFERENCE)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_smallarray := func_array_mixed_nested(RESULT_U8BIT);
- if (value_smallarray[1] <> RESULT_U8BIT) or (value_smallarray[SMALL_INDEX] <> RESULT_U8BIT) then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largerec := func_largerecord_mixed_nested(RESULT_U8BIT);
- if (value_largerec.b[1] <> RESULT_U8BIT) or (value_largerec.b[BIG_INDEX] <> RESULT_U8BIT) then
-    failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_bigstring := func_shortstring_mixed_nested(RESULT_U8BIT);
- if value_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_largeset := func_largeset_mixed_nested(RESULT_U8BIT);
- if not ('I' in value_largeset) then
-   failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing orddef/enumdef function (w/nesting) results with parameter (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- value_u8bit := func_u8bit_mixed_nested(RESULT_U8BIT);
- if value_u8bit <> RESULT_U8BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_u16bit := func_u16bit_mixed_nested(RESULT_U8BIT);
- if value_u16bit <> RESULT_U16BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s32bit := func_s32bit_mixed_nested(RESULT_U8BIT);
- if value_s32bit <> RESULT_S32BIT then
-     failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s64bit := func_s64bit_mixed_nested(RESULT_U8BIT);
- if value_s64bit <> RESULT_S64BIT then
-    failed := true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
-
- write('Testing floatdef function (w/nesting) results with parameter...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_s32real := func_s32real_mixed_nested(RESULT_U8BIT);
- if trunc(value_s32real) <> trunc(RESULT_S32REAL) then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- value_s64real := func_s64real_mixed_nested(RESULT_U8BIT);
- if trunc(value_s64real) <> trunc(RESULT_S64REAL) then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing ansistring function (w/nesting) result with parameter...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- value_ansistring := func_ansistring_mixed_nested(RESULT_U8BIT);
- if value_ansistring <> RESULT_BIGSTRING then
-   failed:=true;
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
- write('Testing pointer function (w/nesting) result with parameter (LOC_REGISTER)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
- value_ptr := func_pchar_mixed_nested(RESULT_U8BIT);
- if value_ptr <> RESULT_PCHAR then
-    failed := true;
- if global_u8bit <> RESULT_U8BIT then
-    failed := true;
- if global_bigstring <> RESULT_BIGSTRING then
-   failed := true;
- if global_u16bit <> RESULT_U8BIT then
-   failed := true;
- if global_s64bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-end.

+ 0 - 3293
tests/test/cg/tcalobj5.pp

@@ -1,3293 +0,0 @@
-{****************************************************************}
-{  CODE GENERATOR TEST PROGRAM                                   }
-{  Copyright (c) 2002 Carl Eric Codere                           }
-{****************************************************************}
-{ NODE TESTED : secondcalln()                                    }
-{****************************************************************}
-{ PRE-REQUISITES: secondload()                                   }
-{                 secondassign()                                 }
-{                 secondtypeconv()                               }
-{                 secondtryexcept()                              }
-{****************************************************************}
-{ DEFINES:                                                       }
-{            FPC     = Target is FreePascal compiler             }
-{****************************************************************}
-{ REMARKS: This tests secondcalln(), genentrycode() and          }
-{ genexitcode() for standard object with the safecall            }
-{ calling convention.                                            }
-{                                                                }
-{****************************************************************}
-program tcalobj5;
-{$STATIC ON}
-{$R+}
-
- const
- { should be defined depending on CPU target }
- {$ifdef cpu68k}
-   BIG_INDEX = 8000;
-   SMALL_INDEX  = 13;
- {$else}
-   BIG_INDEX = 33000;
-   SMALL_INDEX = 13;     { value should not be aligned! }
- {$endif}
-   RESULT_U8BIT = $55;
-   RESULT_U16BIT = 2*RESULT_U8BIT;
-   RESULT_S32BIT = $500F0000;
-   RESULT_S64BIT = $500F0000;
-   RESULT_S32REAL = 1777.12;
-   RESULT_S64REAL = 3444.24;
-   RESULT_BOOL8BIT = 1;
-   RESULT_BOOL16BIT = 1;
-   RESULT_BOOL32BIT = 1;
-   RESULT_PCHAR = 'Hello world';
-   RESULT_BIGSTRING = 'Hello world';
-   RESULT_SMALLSTRING = 'H';
-   RESULT_CHAR = 'I';
-   RESULT_BOOLEAN = TRUE;
-
- type
-
-   tprocedure = procedure;
-
-   tsmallrecord = packed record
-     b: byte;
-     w: word;
-   end;
-
-   tlargerecord = packed record
-     b: array[1..BIG_INDEX] of byte;
-   end;
-
-   tsmallarray = packed array[1..SMALL_INDEX] of byte;
-
-   tsmallsetenum =
-   (A_A,A_B,A_C,A_D);
-
-   tsmallset = set of tsmallsetenum;
-   tlargeset = set of char;
-
-   tsmallstring = string[2];
-
-
- var
-  global_u8bit : byte;
-  global_u16bit : word;
-  global_s32bit : longint;
-  global_s32real : single;
-  global_s64real : double;
-  global_ptr : pchar;
-  global_proc : tprocedure;
-  global_bigstring : shortstring;
-  global_boolean : boolean;
-  global_char : char;
-  global_s64bit : int64;
-  value_s64bit : int64;
-  value_ansistring : ansistring;
-  value_u8bit : byte;
-  value_u16bit : word;
-  value_s32bit : longint;
-  value_s32real : single;
-  value_s64real  : double;
-  value_proc : tprocedure;
-  value_ptr : pchar;
-  value_smallrec : tsmallrecord;
-  value_largerec : tlargerecord;
-  value_smallset : tsmallset;
-  value_smallstring : tsmallstring;
-  value_bigstring   : shortstring;
-  value_largeset : tlargeset;
-  value_smallarray : tsmallarray;
-  value_boolean : boolean;
-  value_char : char;
-
-     procedure fail;
-     begin
-       WriteLn('Failure.');
-       halt(1);
-     end;
-
-
-     procedure clear_globals;
-      begin
-       global_u8bit := 0;
-       global_u16bit := 0;
-       global_s32bit := 0;
-       global_s32real := 0.0;
-       global_s64real := 0.0;
-       global_ptr := nil;
-       global_proc := nil;
-       global_bigstring := '';
-       global_boolean := false;
-       global_char := #0;
-       global_s64bit := 0;
-      end;
-
-
-     procedure clear_values;
-      begin
-       value_u8bit := 0;
-       value_u16bit := 0;
-       value_s32bit := 0;
-       value_s32real := 0.0;
-       value_s64real  := 0.0;
-       value_proc := nil;
-       value_ptr := nil;
-       fillchar(value_smallrec, sizeof(value_smallrec), #0);
-       fillchar(value_largerec, sizeof(value_largerec), #0);
-       value_smallset := [];
-       value_smallstring := '';
-       value_bigstring   := '';
-       value_largeset := [];
-       fillchar(value_smallarray, sizeof(value_smallarray), #0);
-       value_boolean := false;
-       value_char:=#0;
-       value_ansistring := '';
-       value_s64bit := 0;
-      end;
-
-
-      function getu8: byte;
-       begin
-         getu8 := RESULT_U8BIT;
-       end;
-
-
-type
-
- { object without vmt }
- pnovmtobject = ^tnovmtobject;
- tnovmtobject = object
- public
-   object_bigstring : shortstring;
-   object_u16bit : word;
-   { no parameter testing }
-   procedure method_public_none;safecall;
-   procedure method_public_static_none; static;safecall;
-   procedure method_call_private_none;safecall;
-   procedure method_call_private_static_none; static;safecall;
-   { simple value parameter testing }
-   procedure method_public_u8(x : byte);safecall;
-   procedure method_public_static_u8(x: byte); static;safecall;
-   procedure method_call_private_u8(x: byte);safecall;
-   procedure method_call_private_static_u8(x: byte); static;safecall;
-   function  func_array_mixed_nested(b: byte): tsmallarray;safecall;
- private
-   procedure method_private_none;safecall;
-   procedure method_private_static_none; static;safecall;
-   function func_getu16bit : word;safecall;
-   { simple value parameter testing }
-   procedure method_private_u8(x: byte);safecall;
-   procedure method_private_static_u8(x: byte); static;safecall;
- end;
-
-
- { object with vmt }
- pvmtobject = ^tvmtobject;
- tvmtobject = object
- public
-   object_u8bit : byte;
-   object_u16bit : word;
-   object_bigstring : shortstring;
-   object_s32bit : longint;
-   object_s64bit : int64;
-   constructor constructor_params_mixed(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   constructor constructor_init;
-   destructor destructor_params_done;
-   procedure method_normal_params_mixed(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_virtual_params_mixed(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_overriden_params_mixed(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_static_params_mixed(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);static;safecall;
-   procedure method_normal_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-
-   { virtual methods which call other methods }
-   procedure method_virtual_call_static_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_call_virtual_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_call_overriden_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_call_normal_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_call_constructor_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-   procedure method_virtual_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-
- end;
-
- pheritedvmtobject = ^theritedvmtobject;
- theritedvmtobject = object(tvmtobject)
-   constructor constructor_params_mixed_call_virtual(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   constructor constructor_params_mixed_call_overriden(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   constructor constructor_params_mixed_call_static(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   constructor constructor_params_mixed_call_normal(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   constructor constructor_params_mixed_call_inherited(u8 :byte; u16: word;
-      bigstring: shortstring; s32: longint; s64: int64);
-   procedure method_virtual_overriden_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-
-   { normal methods which call other methods }
-   procedure method_normal_call_static_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_normal_call_virtual_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_normal_call_overriden_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_normal_call_normal_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_normal_call_constructor_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   procedure method_normal_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-
-   { virtual methods which call other methods }
-   procedure method_virtual_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);virtual;safecall;
-
- end;
-
- pfailvmtobject = ^tfailvmtobject;
- tfailvmtobject = object(tvmtobject)
- public
-    constructor constructor_public_none;
- end;
-
-
-
-{**************************************************************************}
-{                             NO VMT OBJECT                                }
-{**************************************************************************}
-
-  {****************** NO PARAMETERS ******************}
- procedure tnovmtobject.method_public_none;safecall;
-  begin
-    global_u8bit := RESULT_U8BIT;
-  end;
-
-
- procedure tnovmtobject.method_public_static_none;safecall;
-  begin
-    global_u8bit := RESULT_U8BIT;
-  end;
-
-
- procedure tnovmtobject.method_call_private_none;safecall;
-   begin
-       method_private_none;
-       method_private_static_none;
-   end;
-
- procedure tnovmtobject.method_call_private_static_none;safecall;
-   begin
-     method_private_static_none;
-   end;
-
-
- procedure tnovmtobject.method_private_none;safecall;
-  begin
-    Inc(global_u16bit, RESULT_U8BIT);
-  end;
-
-
- procedure tnovmtobject.method_private_static_none;safecall;
-  begin
-    Inc(global_u16bit, RESULT_U8BIT);
-  end;
-
-  {******************** PARAMETERS ******************}
-
-  procedure tnovmtobject.method_public_u8(x : byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  procedure tnovmtobject.method_public_static_u8(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  procedure tnovmtobject.method_call_private_u8(x: byte);safecall;
-   begin
-     method_private_static_u8(x);
-     method_private_u8(x);
-   end;
-
-  procedure tnovmtobject. method_call_private_static_u8(x: byte);safecall;
-   begin
-     method_private_static_u8(x);
-   end;
-
-   procedure tnovmtobject.method_private_u8(x: byte);safecall;
-    begin
-      Inc(global_u16bit,x);
-    end;
-
-   procedure tnovmtobject.method_private_static_u8(x: byte);safecall;
-    begin
-      Inc(global_u16bit,x);
-    end;
-
-
-  function tnovmtobject.func_getu16bit : word;safecall;
-   begin
-     func_getu16bit := object_u16bit;
-   end;
-
-  {
-    complex testing, nested field access, with parameters and
-    comple return value.
-
-    On exit : global_u8bit := x;
-              global_u16bit := object_u16bit (from func_getu16bit);
-              global_s32bit :=  RESULT_S32BIT
-              global_bigstring := object_bigstring
-              global_s64bit := x;
-  }
-  function tnovmtobject.func_array_mixed_nested(b: byte): tsmallarray;safecall;
-
-    procedure nested_one_proc(l: longint);
-     begin
-       global_u16bit := func_getu16bit;
-       global_s32bit := l;
-     end;
-
-    procedure nested_two_proc(l : longint);
-     begin
-       global_s64bit := l;
-     end;
-
-
-
-   function nested_one_func(level1_b : byte; s: shortstring): byte;
-     var
-      s1 : shortstring;
-
-      function nested_two_func(level2_b : byte; s :shortstring): byte;
-        begin
-          nested_two_func:=level2_b;
-          global_bigstring := s;
-          nested_one_proc(RESULT_S32BIT);
-        end;
-
-    begin
-      s1:=s;
-      nested_one_func := nested_two_func(level1_b,s1);
-      nested_two_proc(level1_b);
-    end;
-
-
- var
-  local_b: byte;
-  smallarray: tsmallarray;
- begin
-  fillchar(smallarray, sizeof(smallarray), #0);
-  smallarray[1] := RESULT_U8BIT;
-  smallarray[SMALL_INDEX] := RESULT_U8BIT;
-  func_array_mixed_nested := smallarray;
-  local_b:=b;
-  global_u8bit := nested_one_func(local_b, object_bigstring);
- end;
-
-{**************************************************************************}
-{                             FAILED OBJECT                                }
-{**************************************************************************}
-constructor tfailvmtobject.constructor_public_none;
- begin
-    { this calls the constructor fail special keyword }
-    fail;
- end;
-
-{**************************************************************************}
-{                               VMT  OBJECT                                }
-{**************************************************************************}
-constructor tvmtobject.constructor_params_mixed(u8 :byte; u16: word;
-   bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
- end;
-
-
-constructor tvmtobject.constructor_init;
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
- end;
-
-destructor tvmtobject.destructor_params_done;
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
- end;
-
-
-procedure tvmtobject.method_normal_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
- begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
- end;
-
-procedure tvmtobject.method_virtual_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
- begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
- end;
-
-{ this one should be overriden }
-procedure tvmtobject.method_virtual_overriden_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
- begin
-    RunError(211);
- end;
-
-{ can't access field of instances in static methods }
-procedure tvmtobject.method_static_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
- begin
-   global_u8bit := u8;
-   global_u16bit := u16;
-   global_bigstring := bigstring;
-   global_s32bit := s32;
-   global_s64bit := s64;
- end;
-
-procedure tvmtobject.method_normal_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
-  end;
-
-
-procedure tvmtobject.method_virtual_call_static_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-    method_static_params_mixed(u8, u16, bigstring, s32, s64);
-  end;
-
-procedure tvmtobject.method_virtual_call_virtual_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_virtual_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure tvmtobject.method_virtual_call_overriden_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_virtual_overriden_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-
-procedure tvmtobject.method_virtual_call_normal_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_normal_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure tvmtobject.method_virtual_call_constructor_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-     constructor_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure tvmtobject.method_virtual_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
-  end;
-
-
-{**************************************************************************}
-{                          INHERITED VMT OBJECT                            }
-{**************************************************************************}
-constructor theritedvmtobject.constructor_params_mixed_call_virtual(
-   u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
-   method_virtual_params_mixed(u8, u16, bigstring, s32, s64);
- end;
-
-constructor theritedvmtobject.constructor_params_mixed_call_overriden(
-   u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
-   method_virtual_overriden_params_mixed(u8, u16, bigstring, s32, s64);
- end;
-
-constructor theritedvmtobject.constructor_params_mixed_call_static(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
-   method_static_params_mixed(u8, u16, bigstring, s32, s64);
- end;
-
-constructor theritedvmtobject.constructor_params_mixed_call_normal(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
-   method_normal_params_mixed(u8, u16, bigstring, s32, s64);
- end;
-
-constructor theritedvmtobject.constructor_params_mixed_call_inherited
-   (u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);
- begin
-   object_u8bit := 0;
-   object_u16bit := 0;
-   object_bigstring := '';
-   object_s32bit := 0;
-   object_s64bit := 0;
-   inherited constructor_params_mixed(u8, u16, bigstring, s32, s64);
- end;
-
-{ this one should be overriden }
-procedure theritedvmtobject.method_virtual_overriden_params_mixed(
-    u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
- begin
-   object_u8bit := u8;
-   object_u16bit := u16;
-   object_bigstring := bigstring;
-   object_s32bit := s32;
-   object_s64bit := s64;
- end;
-
-procedure theritedvmtobject.method_normal_call_static_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-    method_static_params_mixed(u8, u16, bigstring, s32, s64);
-  end;
-
-procedure theritedvmtobject.method_normal_call_virtual_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_virtual_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure theritedvmtobject.method_normal_call_overriden_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_virtual_overriden_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-
-procedure theritedvmtobject.method_normal_call_normal_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-    method_normal_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure theritedvmtobject.method_normal_call_constructor_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-   begin
-     constructor_params_mixed(u8, u16, bigstring, s32, s64);
-   end;
-
-procedure theritedvmtobject.method_normal_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-   Inherited method_normal_call_inherited_params_mixed(u8, u16, bigstring,
-     s32, s64);
-  end;
-
-procedure theritedvmtobject.method_virtual_call_inherited_params_mixed(
-      u8 :byte; u16: word; bigstring: shortstring; s32: longint; s64: int64);safecall;
-  begin
-   Inherited method_virtual_call_inherited_params_mixed(u8, u16, bigstring,
-     s32, s64);
-  end;
-
-
-procedure testnovmtobject;
-var
-  novmtobject : tnovmtobject;
-  failed : boolean;
-begin
-  {******************** STATIC / METHOD SIMPLE CALL **********************}
-  Write('No parameter / method call testing...');
-  failed := false;
-
-  clear_globals;
-  clear_values;
-
-  tnovmtobject.method_public_static_none;
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-  novmtobject.method_public_static_none;
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  tnovmtobject.method_call_private_static_none;
-  if global_u16bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_static_none;
-  if global_u16bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_public_none;
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_none;
-  if global_u16bit <> (RESULT_U16BIT) then
-    failed := true;
-
-  if failed then
-    fail
-  else
-    WriteLn('Passed!');
-
-  Write('Simple parameter (LOC_CONSTANT) / method call testing...');
-  failed := false;
-
-  clear_globals;
-  clear_values;
-
-  { parameter is LOC_CONSTANT }
-  novmtobject.method_public_u8(RESULT_U8BIT);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  tnovmtobject.method_public_static_u8(RESULT_U8BIT);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_public_static_u8(RESULT_U8BIT);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_u8(RESULT_U8BIT);
-  if global_u16bit <> (RESULT_U16BIT) then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_static_u8(RESULT_U8BIT);
-  if global_u16bit <> (RESULT_U8BIT) then
-    failed := true;
-
-
-  if failed then
-    fail
-  else
-    WriteLn('Passed!');
-
-
-  Write('Simple parameter (LOC_REFERENCE) / method call testing...');
-  failed := false;
-
-  clear_globals;
-  clear_values;
-
-  value_u8bit := RESULT_U8BIT;
-  novmtobject.method_public_u8(value_u8bit);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  value_u8bit := RESULT_U8BIT;
-  tnovmtobject.method_public_static_u8(value_u8bit);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  value_u8bit := RESULT_U8BIT;
-  novmtobject.method_public_static_u8(value_u8bit);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  value_u8bit := RESULT_U8BIT;
-  novmtobject.method_call_private_u8(value_u8bit);
-  if global_u16bit <> (RESULT_U16BIT) then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  value_u8bit := RESULT_U8BIT;
-  novmtobject.method_call_private_static_u8(value_u8bit);
-  if global_u16bit <> (RESULT_U8BIT) then
-    failed := true;
-
-  if failed then
-    fail
-  else
-    WriteLn('Passed!');
-
-  Write('Simple parameter (LOC_REGISTER) / method call testing...');
-  failed := false;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_public_u8(getu8);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  tnovmtobject.method_public_static_u8(getu8);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_public_static_u8(getu8);
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_u8(getu8);
-  if global_u16bit <> (RESULT_U16BIT) then
-    failed := true;
-
-  clear_globals;
-  clear_values;
-
-  novmtobject.method_call_private_static_u8(getu8);
-  if global_u16bit <> (RESULT_U8BIT) then
-    failed := true;
-
- if failed then
-   fail
- else
-   WriteLn('Passed!');
-
-  Write('Simple parameter / complex return / nested method access testing...');
-
-  clear_globals;
-  clear_values;
-  failed := false;
-  novmtobject.object_bigstring := RESULT_BIGSTRING;
-  novmtobject.object_u16bit := RESULT_U16BIT;
-
-  value_smallarray := novmtobject.func_array_mixed_nested(RESULT_U8BIT);
-  if (value_smallarray[1] <> RESULT_U8BIT) or (value_smallarray[SMALL_INDEX] <> RESULT_U8BIT) then
-    failed := true;
-  if global_u8bit <> RESULT_U8BIT then
-    failed := true;
-  if global_bigstring <> RESULT_BIGSTRING then
-    failed := true;
-  if global_u16bit <> RESULT_U16BIT then
-    failed := true;
-  if global_s32bit <> RESULT_S32BIT then
-    failed := true;
-  if global_s64bit <> RESULT_U8BIT then
-    failed := true;
-
-  if failed then
-    fail
-  else
-    WriteLn('Passed!');
-end;
-
-
-procedure testfailedobject;
-var
-  failedobject : tfailvmtobject;
- begin
-  Write('Testing constructor return value...');
-  if failedobject.constructor_public_none then
-    fail
-  else
-    Writeln('Passed!');
- end;
-
-
- procedure testvmtobject;
-  var
-   vmtobject : tvmtobject;
-   failed : boolean;
-  begin
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) constructor call...');
-    vmtobject.constructor_params_mixed(RESULT_U8BIT, RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) constructor call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed(value_u8bit, value_u16bit, value_bigstring,
-       value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-  end;
-
-
- procedure testheritedvmtobject;
-  var
-   vmtobject : theritedvmtobject;
-   failed : boolean;
-  begin
-    {********************** CONSTRUCTOR TESTING ************************}
-    {********************** DESTRUCTOR  TESTING ************************}
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) inherited constructor call...');
-    vmtobject.constructor_params_mixed_call_inherited(RESULT_U8BIT, RESULT_U16BIT, RESULT_BIGSTRING,
-       RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) inherited constructor call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed_call_inherited(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/virtual call...');
-    vmtobject.constructor_params_mixed_call_virtual(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed_call_virtual(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/virtual call...');
-    vmtobject.constructor_params_mixed_call_overriden(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed_call_overriden(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/method call...');
-    vmtobject.constructor_params_mixed_call_normal(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/method call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed_call_normal(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/static call...');
-    vmtobject.constructor_params_mixed_call_static(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/static call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.constructor_params_mixed_call_static(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    {************************* METHOD TESTING **************************}
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual method call...');
-    vmtobject.method_virtual_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual method call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual method call...');
-    vmtobject.method_virtual_overriden_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual method call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_overriden_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call...');
-    vmtobject.method_normal_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) static method call...');
-    vmtobject.method_static_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) static method call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_static_params_mixed(value_u8bit,
-      value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    { ********************************************************************
-      This calls methods which in turn call other methods, or a constructor
-      or a destructor.
-      *********************************************************************
-    }
-    clear_globals;
-    clear_values;
-    failed := false;
-    { Calls the ancestor virtual method }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/virtual call...');
-    vmtobject.method_normal_call_virtual_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_virtual_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    { The virtual method has been overriden by the object in this case }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/virtual call...');
-    vmtobject.method_normal_call_overriden_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_overriden_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/normal call...');
-    vmtobject.method_normal_call_normal_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/normal call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_normal_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    (* constructor call inside a normal method *)
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/constructor call...');
-    vmtobject.method_normal_call_constructor_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/constructor call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_constructor_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    { static method call }
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/static call...');
-    vmtobject.method_normal_call_static_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/static call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_static_params_mixed(value_u8bit,
-      value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    (* calls the inherited method *)
-    clear_globals;
-    clear_values;
-    failed := false;
-    { Calls the ancestor virtual method }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) method call w/inherited call...');
-    vmtobject.method_normal_call_inherited_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) method call w/inherited call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_normal_call_inherited_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
- { ********************************************************************
-      This calls virtual methods which in turn call other methods,
-      or a constructor  or a destructor.
-   *********************************************************************
-    }
-    clear_globals;
-    clear_values;
-    failed := false;
-    { Calls the ancestor virtual method }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/virtual call...');
-    vmtobject.method_virtual_call_virtual_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_virtual_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    { The virtual method has been overriden by the object in this case }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/virtual call...');
-    vmtobject.method_virtual_call_overriden_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/virtual call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_overriden_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/normal call...');
-    vmtobject.method_virtual_call_normal_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/normal call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_normal_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    (* constructor call inside a normal method *)
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/constructor call...');
-    vmtobject.method_virtual_call_constructor_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/constructor call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_constructor_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    { static virtual call }
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/static call...');
-    vmtobject.method_virtual_call_static_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/static call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_static_params_mixed(value_u8bit,
-      value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if global_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if global_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if global_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if global_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if global_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    (* calls the inherited method *)
-    clear_globals;
-    clear_values;
-    failed := false;
-    { Calls the ancestor virtual method }
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/inherited call...');
-    vmtobject.method_virtual_call_inherited_params_mixed(RESULT_U8BIT,
-       RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-    clear_globals;
-    clear_values;
-    failed := false;
-
-    vmtobject.constructor_init;
-    Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/inherited call...');
-    value_u8bit := RESULT_U8BIT;
-    value_u16bit := RESULT_U16BIT;
-    value_bigstring := RESULT_BIGSTRING;
-    value_s32bit := RESULT_S32BIT;
-    value_s64bit := RESULT_S64BIT;
-    vmtobject.method_virtual_call_inherited_params_mixed(value_u8bit,
-       value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-    if vmtobject.object_u8bit <> RESULT_U8BIT then
-      failed := true;
-    if vmtobject.object_u16bit <> RESULT_U16BIT then
-      failed := true;
-    if vmtobject.object_s32bit <> RESULT_S32BIT then
-      failed := true;
-    if vmtobject.object_s64bit <> RESULT_S64BIT then
-      failed := true;
-    if vmtobject.object_bigstring <> RESULT_BIGSTRING then
-      failed := true;
-    vmtobject.destructor_params_done;
-
-    if failed then
-      fail
-    else
-      Writeln('Passed!');
-
-
-  end;
-
-
-  { same as testvmtherited, except uses with statement }
-  procedure testwith;
-  var
-   vmtobject : theritedvmtobject;
-   failed : boolean;
-  begin
-    with vmtobject do
-     begin
-        {********************** CONSTRUCTOR TESTING ************************}
-        {********************** DESTRUCTOR  TESTING ************************}
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_CONSTANT) inherited constructor call...');
-        constructor_params_mixed_call_inherited(RESULT_U8BIT, RESULT_U16BIT, RESULT_BIGSTRING,
-           RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_REFERENCE) inherited constructor call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        constructor_params_mixed_call_inherited(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/virtual call...');
-        constructor_params_mixed_call_virtual(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        constructor_params_mixed_call_virtual(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/virtual call...');
-        constructor_params_mixed_call_overriden(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        constructor_params_mixed_call_overriden(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/method call...');
-        constructor_params_mixed_call_normal(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/method call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        constructor_params_mixed_call_normal(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_CONSTANT) constructor call w/static call...');
-        constructor_params_mixed_call_static(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        Write('Testing mixed parameter (LOC_REFERENCE) constructor call w/static call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        constructor_params_mixed_call_static(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        {************************* METHOD TESTING **************************}
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual method call...');
-        method_virtual_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual method call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual method call...');
-        method_virtual_overriden_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual method call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_overriden_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call...');
-        method_normal_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) static method call...');
-        method_static_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) static method call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_static_params_mixed(value_u8bit,
-          value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        { ********************************************************************
-          This calls methods which in turn call other methods, or a constructor
-          or a destructor.
-          *********************************************************************
-        }
-        clear_globals;
-        clear_values;
-        failed := false;
-        { Calls the ancestor virtual method }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/virtual call...');
-        method_normal_call_virtual_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_virtual_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        { The virtual method has been overriden by the object in this case }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/virtual call...');
-        method_normal_call_overriden_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_overriden_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/normal call...');
-        method_normal_call_normal_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/normal call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_normal_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        (* constructor call inside a normal method *)
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/constructor call...');
-        method_normal_call_constructor_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/constructor call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_constructor_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        { static method call }
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/static call...');
-        method_normal_call_static_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/static call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_static_params_mixed(value_u8bit,
-          value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        (* calls the inherited method *)
-        clear_globals;
-        clear_values;
-        failed := false;
-        { Calls the ancestor virtual method }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) method call w/inherited call...');
-        method_normal_call_inherited_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) method call w/inherited call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_normal_call_inherited_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-    { ********************************************************************
-        This calls virtual methods which in turn call other methods,
-        or a constructor  or a destructor.
-       *********************************************************************
-    }
-        clear_globals;
-        clear_values;
-        failed := false;
-        { Calls the ancestor virtual method }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/virtual call...');
-        method_virtual_call_virtual_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_virtual_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        { The virtual method has been overriden by the object in this case }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/virtual call...');
-        method_virtual_call_overriden_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/virtual call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_overriden_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/normal call...');
-        method_virtual_call_normal_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/normal call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_normal_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        (* constructor call inside a normal method *)
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/constructor call...');
-        method_virtual_call_constructor_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/constructor call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_constructor_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        { static virtual call }
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/static call...');
-        method_virtual_call_static_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/static call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_static_params_mixed(value_u8bit,
-          value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if global_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if global_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if global_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if global_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if global_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        (* calls the inherited method *)
-        clear_globals;
-        clear_values;
-        failed := false;
-        { Calls the ancestor virtual method }
-        constructor_init;
-        Write('Testing mixed parameter (LOC_CONSTANT) virtual call w/inherited call...');
-        method_virtual_call_inherited_params_mixed(RESULT_U8BIT,
-           RESULT_U16BIT, RESULT_BIGSTRING, RESULT_S32BIT, RESULT_S64BIT);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-
-        clear_globals;
-        clear_values;
-        failed := false;
-
-        constructor_init;
-        Write('Testing mixed parameter (LOC_REFERENCE) virtual call w/inherited call...');
-        value_u8bit := RESULT_U8BIT;
-        value_u16bit := RESULT_U16BIT;
-        value_bigstring := RESULT_BIGSTRING;
-        value_s32bit := RESULT_S32BIT;
-        value_s64bit := RESULT_S64BIT;
-        method_virtual_call_inherited_params_mixed(value_u8bit,
-           value_u16bit, value_bigstring, value_s32bit, value_s64bit);
-        if object_u8bit <> RESULT_U8BIT then
-          failed := true;
-        if object_u16bit <> RESULT_U16BIT then
-          failed := true;
-        if object_s32bit <> RESULT_S32BIT then
-          failed := true;
-        if object_s64bit <> RESULT_S64BIT then
-          failed := true;
-        if object_bigstring <> RESULT_BIGSTRING then
-          failed := true;
-        destructor_params_done;
-
-        if failed then
-          fail
-        else
-          Writeln('Passed!');
-   end; { end with }
-  end;
-
-
-begin
-  WriteLN('*********************** NO VMT OBJECT TESTS ********************');
-  testnovmtobject;
-  WriteLN('************************ VMT OBJECT FAIL  **********************');
-  testfailedobject;
-  WriteLN('************************* VMT OBJECT TESTS *********************');
-  testvmtobject;
-  testheritedvmtobject;
-  WriteLN('**************** VMT OBJECT TESTS USING WITH *******************');
-  testwith;
-end.

+ 0 - 526
tests/test/cg/tcalpvr5.pp

@@ -1,526 +0,0 @@
-{****************************************************************}
-{  CODE GENERATOR TEST PROGRAM                                   }
-{****************************************************************}
-{ NODE TESTED : secondcalln()                                    }
-{****************************************************************}
-{ PRE-REQUISITES: secondload()                                   }
-{                 secondassign()                                 }
-{                 secondcalln()                                  }
-{                 secondadd()                                    }
-{                 secondtypeconv()                               }
-{****************************************************************}
-{ DEFINES:                                                       }
-{****************************************************************}
-{ REMARKS: This tests a subset of the secondcalln() , it         }
-{          verifies procedural variables for safecall              }
-{          calling conventions.                                  }
-{****************************************************************}
-program tcalpvr3;
-{$MODE OBJFPC}
-{$STATIC ON}
-{$R+}
-
-const
-   RESULT_U8BIT = $55;
-   RESULT_U16BIT = $500F;
-   RESULT_S32BIT = $500F0000;
-   RESULT_S64BIT = -12000;
-
-type
-
-  troutine = procedure (x: longint;  y: byte);safecall;
-  troutineresult = function (x: longint; y: byte): int64;safecall;
-
-  tsimpleobject = object
-    constructor init;
-    procedure test_normal(x: byte);safecall;
-    procedure test_static(x: byte);static;safecall;
-    procedure test_virtual(x: byte);virtual;safecall;
-  end;
-
-  tsimpleclass = class
-    constructor create;
-    procedure test_normal(x: byte);safecall;
-    class procedure test_static(x: byte);safecall;
-    procedure test_virtual(x: byte);virtual;safecall;
-  end;
-
-  tobjectmethod = procedure (x: byte) of object ;safecall;
-  tclassmethod = procedure (x: byte) of object;safecall;
-
-var
-  proc : troutine;
-  func : troutineresult;
-  obj_method : tobjectmethod;
-  cla_method : tclassmethod;
-  global_s32bit : longint;
-  global_s64bit : int64;
-  global_u8bit : byte;
-  value_s32bit : longint;
-  value_u8bit : byte;
-  obj : tsimpleobject;
-  cla : tsimpleclass;
-
-
-
-
-  procedure fail;
-   begin
-     WriteLn('Failed!');
-     halt(1);
-   end;
-
-  procedure clear_globals;
-   begin
-     global_s32bit := 0;
-     global_u8bit := 0;
-     global_s64bit := 0;
-   end;
-
-  procedure clear_values;
-    begin
-      value_s32bit := 0;
-      value_u8bit := 0;
-    end;
-
-
-  procedure testroutine(x: longint; y: byte);safecall;
-   begin
-     global_s32bit := x;
-     global_u8bit := y;
-   end;
-
-  function testroutineresult(x: longint; y: byte): int64;safecall;
-   begin
-     global_s32bit := x;
-     global_u8bit := y;
-     testroutineresult := RESULT_S64BIT;
-   end;
-
-
-  function getroutine: troutine;
-    begin
-      getroutine:=proc;
-    end;
-
-  function getroutineresult : troutineresult;
-   begin
-     getroutineresult := func;
-   end;
-
-{ IMPOSSIBLE TO DO CURRENTLY !
-  function get_object_method_static : tnormalmethod;
-   begin
-     get_object_method_static := @obj.test_static;
-   end;
-}
-
-  { objects access }
-  function get_object_method_normal : tobjectmethod;
-   begin
-     get_object_method_normal := @obj.test_normal;
-   end;
-
-  function get_object_type_method_virtual : tobjectmethod;
-   begin
-     get_object_type_method_virtual := @obj.test_virtual;
-   end;
-
-  function get_object_method_virtual : tobjectmethod;
-   begin
-     get_object_method_virtual := @obj.test_virtual;
-   end;
-
-{
-  HOW CAN WE GET THIS ADDRESS???
-  function get_class_method_static_self : tclassmethodself;
-   begin
-     get_class_method_static_self := @cla.test_static_self;
-   end;
-}
-
-  function get_class_method_normal : tclassmethod;
-   begin
-     get_class_method_normal := @cla.test_normal;
-   end;
-{
-  function get_class_method_static : tclassmethod;
-   begin
-     get_class_method_static := @cla.test_static;
-   end;}
-
-  function get_class_method_virtual : tclassmethod;
-   begin
-     get_class_method_virtual := @cla.test_virtual;
-   end;
-
- {****************************************************************************************************}
-
-  constructor tsimpleobject.init;
-   begin
-   end;
-
-  procedure tsimpleobject.test_normal(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  procedure tsimpleobject.test_static(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  procedure tsimpleobject.test_virtual(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
- {****************************************************************************************************}
-  constructor tsimpleclass.create;
-   begin
-    inherited create;
-   end;
-
-  procedure tsimpleclass. test_normal(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  class procedure tsimpleclass.test_static(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-  procedure tsimpleclass.test_virtual(x: byte);safecall;
-   begin
-     global_u8bit := x;
-   end;
-
-
-var
- failed : boolean;
-Begin
- { setup variables }
- proc := @testroutine;
- func := @testroutineresult;
- obj.init;
- cla:=tsimpleclass.create;
-
- {****************************************************************************************************}
-
- Write('Testing procedure variable call (LOC_REGISTER)..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- { parameters in LOC_CONSTANT, routine address in LOC_REGISTER }
- troutine(getroutine)(RESULT_S32BIT,RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- { parameters in LOC_REFERENCE,routine address in LOC_REGISTER }
- value_s32bit := RESULT_S32BIT;
- value_u8bit := RESULT_U8BIT;
- troutine(getroutine)(value_s32bit , value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
-
- Write('Testing procedure variable call (LOC_REFERENCE)..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- { parameters in LOC_CONSTANT, routine address in LOC_REGISTER }
- proc(RESULT_S32BIT,RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- { parameters in LOC_REFERENCE,routine address in LOC_REGISTER }
- value_s32bit := RESULT_S32BIT;
- value_u8bit := RESULT_U8BIT;
- proc(value_s32bit , value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
- {****************************************************************************************************}
- Write('Testing function variable call (LOC_REGISTER)..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- { parameters in LOC_CONSTANT, routine address in LOC_REGISTER }
- global_s64bit := troutineresult(getroutineresult)(RESULT_S32BIT,RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_S64BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- { parameters in LOC_REFERENCE,routine address in LOC_REGISTER }
- value_s32bit := RESULT_S32BIT;
- value_u8bit := RESULT_U8BIT;
- global_s64bit := troutineresult(getroutineresult)(value_s32bit , value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_S64BIT then
-   failed := true;
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
-
- Write('Testing function variable call (LOC_REFERENCE)..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- { parameters in LOC_CONSTANT, routine address in LOC_REGISTER }
- global_s64bit := func(RESULT_S32BIT,RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_S64BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
- { parameters in LOC_REFERENCE,routine address in LOC_REGISTER }
- value_s32bit := RESULT_S32BIT;
- value_u8bit := RESULT_U8BIT;
- global_s64bit := func(value_s32bit , value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
- if global_s32bit <> RESULT_S32BIT then
-   failed := true;
- if global_s64bit <> RESULT_S64BIT then
-   failed := true;
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
- {****************************************************************************************************}
- Write('Testing object method variable call (LOC_REGISTER) ..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- tobjectmethod(get_object_method_normal)(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- tobjectmethod(get_object_type_method_virtual)(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- tobjectmethod(get_object_method_virtual)(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- tobjectmethod(get_object_method_normal)(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- tobjectmethod(get_object_type_method_virtual)(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- tobjectmethod(get_object_method_virtual)(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
- Write('Testing object method variable call (LOC_REFERENCE) ..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- obj_method:[email protected]_normal;
- obj_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- obj_method:[email protected]_virtual;
- obj_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- obj_method:[email protected]_virtual;
- obj_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- obj_method:[email protected]_normal;
- obj_method(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- obj_method:[email protected]_virtual;
- obj_method(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- value_u8bit := RESULT_U8BIT;
- obj_method:[email protected]_normal;
- obj_method(value_u8bit);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
- {****************************************************************************************************}
- Write('Testing class method variable call (LOC_REGISTER) ..');
-
- clear_globals;
- clear_values;
- failed := false;
-
- tclassmethod(get_class_method_normal)(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
-
- tclassmethod(get_class_method_virtual)(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
- Write('Testing class method variable call (LOC_REFERENCE)...');
-
- clear_globals;
- clear_values;
- failed := false;
-
-
- cla_method := @cla.test_normal;
- cla_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
-
- cla_method := @cla.test_virtual;
- cla_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
- cla_method := @cla.test_virtual;
- cla_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;
-
- clear_globals;
- clear_values;
-
-{ cla_method := @cla.test_static;
- cla_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;}
-
- clear_globals;
- clear_values;
-
-
-{ cla_method := @cla.test_static;
- cla_method(RESULT_U8BIT);
- if global_u8bit <> RESULT_U8BIT then
-   failed := true;}
-
- If failed then
-   fail
- else
-   WriteLn('Passed!');
-
-end.