File: WatchesIntrinsicPrg.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (165 lines) | stat: -rw-r--r-- 3,875 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
program WatchesIntrinsicPrg;
uses Classes;

type
  TDummy = packed record a: integer; end;
  TDummy1 = packed record a,b,c: integer; end;
  TDummy2 = packed record
    a: TDummy1;
  end;

  PFoo = ^TFoo;
  TFoo = class
    Value: integer;
    Idx: integer;
    Left, Right: TFoo;
    Next: TFoo;
    LeftP, RightP: PFoo;
    NextP: PFoo;
    Dummy: TDummy;
    Dummy2: TDummy2;
    More:  array [3..9] of TFoo;
    More2: array [0..1,3..9] of TFoo;
    MoreIdx: array [0..4] of Integer;
    constructor Create(v: integer);
  end;

var
  f1, f2, f3, f4, f5, f6, f7, f8: TFoo;
  fa: array [0..9] of TFoo;


type
{$Interfaces COM}
  IIntf1 = interface ['{5CD5BFCA-3865-4CE9-916C-775E0DFB6BF5}']
    procedure Foo;
    procedure Bar;
  end;

  TIntf1 = class(TInterfacedObject, IIntf1)
    a,b,c: integer;
    procedure Foo;
    procedure Bar;
  end;

type
{$Interfaces CORBA}
  IIntf2 = interface ['{C3E936EE-479B-404E-AEE8-C94CB6DDE462}']
    procedure Foo;
    procedure Bar;
  end;
  TIntf2 = class(TObject, IIntf2)
    x,y,c: integer;
    procedure Foo;
    procedure Bar;
  end;

{ TFoo }

constructor TFoo.Create(v: integer);
var
  i: Integer;
begin
  Value := v;
  Dummy.a := 990+v;
  Dummy2.a.a := 1990+v;
  for i := 0 to 4 do MoreIdx[i] := i;
end;

procedure TIntf2.Foo; begin  WriteLn(5); end;
procedure TIntf2.Bar; begin  WriteLn(6); end;
procedure TIntf1.Foo; begin  WriteLn(1); end;
procedure TIntf1.Bar; begin  WriteLn(2); end;

var
  AnIntf1: IIntf1;  AnIntf2: IIntf2;
  AnObj1:  TIntf1;  AnObj2:  TIntf2;
  i: Integer;

begin
  f1 := TFoo.Create(1);
  f2 := TFoo.Create(2);
  f3 := TFoo.Create(3);
  f4 := TFoo.Create(4);
  f5 := TFoo.Create(5);
  f6 := TFoo.Create(6);
  f7 := TFoo.Create(7);
  f8 := TFoo.Create(8);

  f1.Next := f2;   f1.NextP := @f2;
  f2.Next := f3;   f2.NextP := @f3;
  f3.Next := f4;   f3.NextP := @f4;
  f4.Next := f1;   f4.NextP := @f1;

  f1.Left := f2;
    f2.Left := f3;
      f3.Left := f4;
      f3.Right := f5;
    f2.Right := f6;
      f6.Right := f3;  // not recursive
        // left = 4
        // right = 5
  f1.Right:= f7;
    f7.Right:= f8;
      f8.Right:= f7;

  fa[4] := f1;  f1.Idx := 3;
  fa[3] := f2;  f2.Idx := 5;
  fa[5] := f3;  f3.Idx := 0;
  fa[0] := f4;  f4.Idx := 0;  // recurse self

  f1.More[3] := nil;
  f1.More[4] := TFoo.Create(100004);
  f1.More[5] := TFoo.Create(100005);
  f1.More[6] := TFoo.Create(100006);
  f1.More[7] := TFoo.Create(100007);
  f1.More[8] := f2;
  f1.More[9] := f3;

  f2.More[3] := f4;
  f2.More[4] := TFoo.Create(200004);
  f2.More[5] := TFoo.Create(200005);
  f2.More[6] := TFoo.Create(200006);

  f3.More[3] := TFoo.Create(300003);
  f3.More[4] := TFoo.Create(300004);
  f3.More[5] := TFoo.Create(300005);

  f4.More[3] := TFoo.Create(400003);
  f4.More[4] := TFoo.Create(400004);

  for i := 0 to 1 do begin
    f1.More2[i,3] := nil;
    f1.More2[i,4] := TFoo.Create(100004+(i+1)*10000000);
    f1.More2[i,5] := TFoo.Create(100005+(i+1)*10000000);
    f1.More2[i,6] := TFoo.Create(100006+(i+1)*10000000);
    f1.More2[i,7] := TFoo.Create(100007+(i+1)*10000000);
    f1.More2[i,8] := f2;
    f1.More2[i,9] := f3;

    f2.More2[i,3] := f4;
    f2.More2[i,4] := TFoo.Create(200004+(i+1)*10000000);
    f2.More2[i,5] := TFoo.Create(200005+(i+1)*10000000);
    f2.More2[i,6] := TFoo.Create(200006+(i+1)*10000000);

    f3.More2[i,3] := TFoo.Create(300003+(i+1)*10000000);
    f3.More2[i,4] := TFoo.Create(300004+(i+1)*10000000);
    f3.More2[i,5] := TFoo.Create(300005+(i+1)*10000000);

    f4.More2[i,3] := TFoo.Create(400003+(i+1)*10000000);
    f4.More2[i,4] := TFoo.Create(400004+(i+1)*10000000);
  end;


  AnObj1 := TIntf1.Create; AnObj1.a := 123; AnObj1.b := 987; AnObj1.c := 551177;
  AnObj2 := TIntf2.Create; AnObj2.x := 321; AnObj2.y := 789; AnObj2.c := 441188;
  AnIntf1 := AnObj1;
  AnIntf2 := AnObj2;



  fa[9] := fa[8]; // TEST_BREAKPOINT=Prg
  fa[9] := fa[8];

end.