hack for getting '390 compile to work
[fw/sdcc] / support / tests / dhrystone / dhry.c
1 /** Sanatised version of the dhrystone-2.1 test.
2
3     Modifications Michael Hope <michaelh@earthling.net>
4
5     This is derrived from the dhrystone-2.1.tar.gz tarball available
6     all over the net.  I sourced it from the Red Hat src rpm.
7
8     Modifications:
9     * Made it more ANSI compliant.
10     * Changed any array function arguments to pointers to make my 
11       compiler work.
12     * Removed malloc's for a couple of static arrays.
13     * Into one file.
14     * Proc_8 is a bit messy.  It originally took a 2 dim array, but
15       sdcc doesnt support this.  So the offsets are hard coded...
16
17     Notes:
18     * The comment at the start of Func_1 about the input being
19       H, R on the first call is wrong - Func_1 is first called
20       from Func_2 where the input is R, Y.  The test still succeeds.
21
22     References:
23     * http://www.netlib.org/performance/html/dhry.intro.html
24     * http://www.netlib.org/performance/html/dhry.data.col0.html
25
26     I couldnt find a copyright in the original - the most relevent
27     part follows:
28
29     A SPECIAL THANKS
30     I didn't write the DHRYSTONE benchmark.  Rheinhold Weicker did. He has
31     certainly provided us with a useful tool for benchmarking, and is
32     to be congratulated.
33
34     Rick Richardson
35     PC Research, Inc.
36     (201) 389-8963 (9-17 EST)
37     (201) 542-3734 (7-9,17-24 EST)
38     ...!uunet!pcrat!rick        (normal mail)
39     ...!uunet!pcrat!dry2        (results only)
40 */
41
42 #define NOENUM          1
43 #define NOSTRUCTASSIGN  1
44 #define REG
45
46 #include "dhry.h"
47 #include <string.h>
48 /** For printf */
49 #include <stdio.h>
50
51 #if defined(SDCC_ds390)
52 #include <tinibios.h>
53 #define clock() ClockTicks()
54 #define CLOCKS_PER_SEC 1000
55 #define memcpy(d,s,l) memcpyx(d,s,l)
56
57 #elif defined(__z80) || defined(__gbz80)
58 unsigned int _clock(void);
59
60 #define clock _clock
61 #define CLOCKS_PER_SEC  100
62
63 #else
64 /** For clock() */
65 #include <time.h>
66 #include <types.h>
67 #endif
68
69 /** Set to one to print more messages about expected values etc. 
70  */
71 #define DEBUG   0
72
73 #if DEBUG
74 #define DPRINTF(_a) printf _a
75 #else
76 #define DPRINTF(_a)
77 #endif
78
79 Rec_Pointer     Ptr_Glob,
80                 Next_Ptr_Glob;
81 int             Int_Glob;
82 Boolean         Bool_Glob;
83 char            Ch_1_Glob,
84                 Ch_2_Glob;
85 int             Arr_1_Glob [50];
86 int             Arr_2_Glob [50] [50];
87
88 /* Used instead of malloc() */
89 static Rec_Type _r[2];
90
91 void mark(void)
92 {
93 }
94
95 void Proc_1 (REG Rec_Pointer Ptr_Val_Par);
96 void Proc_2 (One_Fifty *Int_Par_Ref);
97 void Proc_5 (void);
98 void Proc_4 (void);
99 void Proc_7 (One_Fifty Int_1_Par_Val, One_Fifty Int_2_Par_Val, One_Fifty *Int_Par_Ref);
100 void Proc_8 (int *Arr_1_Par_Ref, int *Arr_2_Par_Ref,
101              int Int_1_Par_Val, int Int_2_Par_Val);
102 void Proc_6 (Enumeration Enum_Val_Par, Enumeration *Enum_Ref_Par);
103 void Proc_3 (Rec_Pointer *Ptr_Ref_Par);
104 Enumeration Func_1 (Capital_Letter Ch_1_Par_Val, Capital_Letter Ch_2_Par_Val);
105 Boolean Func_2 (char *Str_1_Par_Ref, char *Str_2_Par_Ref);
106 Boolean Func_3 (Enumeration Enum_Par_Val);
107
108 unsigned getsp(void);
109
110 int main(void)
111 {
112     One_Fifty       Int_1_Loc;
113     REG   One_Fifty       Int_2_Loc;
114     One_Fifty       Int_3_Loc;
115     REG   Capital_Letter Ch_Index;
116     Enumeration     Enum_Loc;
117     Str_30          Str_1_Loc;
118     Str_30          Str_2_Loc;
119     REG   int             Run_Index;
120     REG   int             Number_Of_Runs;
121     unsigned  long runTime;
122
123     printf("[dhry]\n");
124
125     Next_Ptr_Glob = &_r[0];
126     Ptr_Glob = &_r[1];
127
128     Ptr_Glob->Ptr_Comp                    = Next_Ptr_Glob;
129     Ptr_Glob->Discr                       = Ident_1;
130     Ptr_Glob->variant.var_1.Enum_Comp     = Ident_3;
131     Ptr_Glob->variant.var_1.Int_Comp      = 40;
132
133     strcpy(Ptr_Glob->variant.var_1.Str_Comp, 
134             "DHRYSTONE PROGRAM, SOME STRING");
135     strcpy (Str_1_Loc, "DHRYSTONE PROGRAM, 1'ST STRING");
136
137     Arr_2_Glob [8][7] = 10;
138
139     /* Was missing in published program. Without this statement,    */
140     /* Arr_2_Glob [8][7] would have an undefined value.             */
141     /* Warning: With 16-Bit processors and Number_Of_Runs > 32000,  */
142     /* overflow may occur for this array element.                   */
143
144     /* 32766 is the highest value for a 16 bitter */
145 #if DEBUG
146     Number_Of_Runs = 1;
147 #else
148     Number_Of_Runs = 32766;
149 #endif    
150
151     runTime = clock();
152
153     /* Main test loop */
154     for (Run_Index = 1; Run_Index <= Number_Of_Runs; ++Run_Index) {
155         DPRINTF(("Run_Index = %d\n", Run_Index));
156         if (!(Run_Index & 1023))
157             printf("Loops: %u\r\n", Run_Index);
158         Proc_5();
159         Proc_4();
160         /* Ch_1_Glob == 'A', Ch_2_Glob == 'B', Bool_Glob == true */
161         DPRINTF(("Ch_1_Glob '%c' == 'A', Ch_2_Glob '%c' == 'B', Bool_Glob %d == 1\n", Ch_1_Glob, Ch_2_Glob, Bool_Glob));
162
163         Int_1_Loc = 2;
164         Int_2_Loc = 3;
165         strcpy (Str_2_Loc, "DHRYSTONE PROGRAM, 2'ND STRING");
166         Enum_Loc = Ident_2;
167         Bool_Glob = ! Func_2 (Str_1_Loc, Str_2_Loc);
168         /* Bool_Glob == 1 */
169         DPRINTF(("Bool_Glob %d == 1, Int_1_Loc %d == 2, Int_2_Loc %d == 3\n", Bool_Glob, Int_1_Loc, Int_2_Loc));
170         while (Int_1_Loc < Int_2_Loc)  /* loop body executed once */
171             {
172                 DPRINTF(("m.1 Executes once.\n"));
173                 Int_3_Loc = 5 * Int_1_Loc - Int_2_Loc;
174                 /* Int_3_Loc == 7 */
175                 DPRINTF(("Int_3_Loc %d == 7\n", Int_3_Loc));
176                 DPRINTF(("Proc_7\n"));
177                 Proc_7 (Int_1_Loc, Int_2_Loc, &Int_3_Loc);
178                 /* Int_3_Loc == 7 */
179                 Int_1_Loc += 1;
180             } /* while */
181         DPRINTF(("m.2 Check above executed once.\n"));
182         /* Int_1_Loc == 3, Int_2_Loc == 3, Int_3_Loc == 7 */
183         DPRINTF(("Int_1_Loc %d == 3, Int_2_Loc %d == 3, Int_3_Loc %d == 7\n",
184                Int_1_Loc, Int_2_Loc, Int_3_Loc));
185
186         DPRINTF(("Proc_8\n"));
187         Proc_8 (Arr_1_Glob, (int *)Arr_2_Glob, Int_1_Loc, Int_3_Loc);
188         /* Int_Glob == 5 */
189         DPRINTF(("Int_Glob %d == 5\n", Int_Glob));
190         DPRINTF(("Proc_1\n"));
191         Proc_1 (Ptr_Glob);
192         for (Ch_Index = 'A'; Ch_Index <= Ch_2_Glob; ++Ch_Index)
193             /* loop body executed twice */
194             {
195                 DPRINTF(("Func_1\n"));
196                 if (Enum_Loc == Func_1 (Ch_Index, 'C'))
197                     /* then, not executed */
198                     {
199                         DPRINTF(("Proc_6\n"));
200                         Proc_6 (Ident_1, &Enum_Loc);
201                         strcpy (Str_2_Loc, "DHRYSTONE PROGRAM, 3'RD STRING");
202                         Int_2_Loc = Run_Index;
203                         Int_Glob = Run_Index;
204                     }
205             }
206         /* Int_1_Loc == 3, Int_2_Loc == 3, Int_3_Loc == 7 */
207         DPRINTF(("Int_1_Loc %d == 3, Int_2_Loc %d == 3, Int_3_Loc %d == 7\n",
208                Int_1_Loc, Int_2_Loc, Int_3_Loc));
209
210         Int_2_Loc = Int_2_Loc * Int_1_Loc; /* i2 = 3 * 3 = 9 */
211         Int_1_Loc = Int_2_Loc / Int_3_Loc; /* i1 = 9 / 7 = 1 */
212         Int_2_Loc = 7 * (Int_2_Loc - Int_3_Loc) - Int_1_Loc; /* i2 = 7 * (9 - 7) - 1 */
213         /* Int_1_Loc == 1, Int_2_Loc == 13, Int_3_Loc == 7 */
214         DPRINTF(("Int_1_Loc %d == 1, Int_2_Loc %d == 13, Int_3_Loc %d == 7\n",
215                Int_1_Loc, Int_2_Loc, Int_3_Loc));
216         DPRINTF(("Proc_2\n"));
217         Proc_2 (&Int_1_Loc);
218         /* Int_1_Loc == 5 */
219         DPRINTF(("Int_1_Loc %d == 5\n", Int_1_Loc));
220         DPRINTF(("Looping.\n"));
221     } /* loop "for Run_Index" */
222
223     printf("Run_Index = %d\n", Run_Index);
224
225     runTime = clock() - runTime;
226
227 #if 1
228     printf ("Execution ends\n");
229     printf ("\n");
230     printf ("Final values of the variables used in the benchmark:\n");
231     printf ("\n");
232     printf ("Int_Glob:            %d\n", Int_Glob);
233     printf ("        should be:   %d\n", (int)5);
234     printf ("Bool_Glob:           %d\n", Bool_Glob);
235     printf ("        should be:   %d\n", (int)1);
236     printf ("Ch_1_Glob:           %c\n", Ch_1_Glob);
237     printf ("        should be:   %c\n", 'A');
238     printf ("Ch_2_Glob:           %c\n", Ch_2_Glob);
239     printf ("        should be:   %c\n", 'B');
240     printf ("Arr_1_Glob[8]:       %d\n", Arr_1_Glob[8]);
241     printf ("        should be:   %d\n", (int)7);
242 #if 1
243     printf ("Arr_2_Glob[8][7]:    %d\n", Arr_2_Glob[8][7]);
244 #endif
245     printf ("        should be:   Number_Of_Runs + 10\n");
246     printf ("Ptr_Glob->\n");
247     printf ("  Ptr_Comp:          %d\n", (int) Ptr_Glob->Ptr_Comp);
248     printf ("        should be:   (implementation-dependent)\n");
249     printf ("  Discr:             %d\n", (int)Ptr_Glob->Discr);
250     printf ("        should be:   %d\n", (int)0);
251     printf ("  Enum_Comp:         %d\n", (int)Ptr_Glob->variant.var_1.Enum_Comp);
252     printf ("        should be:   %d\n", (int)2);
253     printf ("  Int_Comp:          %d\n", (int)Ptr_Glob->variant.var_1.Int_Comp);
254     printf ("        should be:   %d\n", (int)17);
255     printf ("  Str_Comp:          %s\n", (char *)Ptr_Glob->variant.var_1.Str_Comp);
256     printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
257     printf ("Next_Ptr_Glob->\n");
258     printf ("  Ptr_Comp:          %d\n", (int) Next_Ptr_Glob->Ptr_Comp);
259     printf ("        should be:   (implementation-dependent), same as above\n");
260     printf ("  Discr:             %d\n", Next_Ptr_Glob->Discr);
261     printf ("        should be:   %d\n", (int)0);
262     printf ("  Enum_Comp:         %d\n", Next_Ptr_Glob->variant.var_1.Enum_Comp);
263     printf ("        should be:   %d\n", (int)1);
264     printf ("  Int_Comp:          %d\n", Next_Ptr_Glob->variant.var_1.Int_Comp);
265     printf ("        should be:   %d\n", (int)18);
266     printf ("  Str_Comp:          %s\n",
267             Next_Ptr_Glob->variant.var_1.Str_Comp);
268     printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
269     printf ("Int_1_Loc:           %d\n", Int_1_Loc);
270     printf ("        should be:   %d\n", (int)5);
271     printf ("Int_2_Loc:           %d\n", Int_2_Loc);
272     printf ("        should be:   %d\n", (int)13);
273     printf ("Int_3_Loc:           %d\n", Int_3_Loc);
274     printf ("        should be:   %d\n", (int)7);
275     printf ("Enum_Loc:            %d\n", Enum_Loc);
276     printf ("        should be:   %d\n", (int)1);
277     printf ("Str_1_Loc:           %s\n", (char *)Str_1_Loc);
278     printf ("        should be:   DHRYSTONE PROGRAM, 1'ST STRING\n");
279     printf ("Str_2_Loc:           %s\n", (char *)Str_2_Loc);
280     printf ("        should be:   DHRYSTONE PROGRAM, 2'ND STRING\n");
281     printf ("\n");
282 #endif
283 #if 1
284     printf("Number of runs: %u.  runTime: %u.\n", Number_Of_Runs, (unsigned)runTime);
285     mark();
286     printf("Dhrystones/s = %u\n", (unsigned)((unsigned long)Number_Of_Runs / (runTime/CLOCKS_PER_SEC)));
287     printf("MIPS = d/s/1757 = (sigh, need floats...)\n");
288 #endif
289 #ifdef PRINT_T_STATES    
290     _printTStates();
291 #endif    
292 #if 1
293     printf("Time: %lu ticks\n", runTime);
294 #endif
295 }
296
297 void Proc_1 (REG Rec_Pointer Ptr_Val_Par)
298 /* executed once */
299 {
300     REG Rec_Pointer Next_Record = Ptr_Val_Par->Ptr_Comp;  
301     /* == Ptr_Glob_Next */
302     /* Local variable, initialized with Ptr_Val_Par->Ptr_Comp,    */
303     /* corresponds to "rename" in Ada, "with" in Pascal           */
304   
305 #if !defined(SDCC_ds390)    
306     structassign (*Ptr_Val_Par->Ptr_Comp, *Ptr_Glob);
307 #else
308     /* I have no idea why this is necessary... */
309     memcpyx((void xdata *)*Ptr_Val_Par->Ptr_Comp, (void xdata *)*Ptr_Glob, 
310            sizeof(Rec_Type));
311 #endif
312     Ptr_Val_Par->variant.var_1.Int_Comp = 5;
313     Next_Record->variant.var_1.Int_Comp 
314         = Ptr_Val_Par->variant.var_1.Int_Comp;
315     Next_Record->Ptr_Comp = Ptr_Val_Par->Ptr_Comp;
316     Proc_3 (&Next_Record->Ptr_Comp);
317     /* Ptr_Val_Par->Ptr_Comp->Ptr_Comp 
318        == Ptr_Glob->Ptr_Comp */
319     if (Next_Record->Discr == Ident_1)
320         /* then, executed */
321         {
322             Next_Record->variant.var_1.Int_Comp = 6;
323             Proc_6 (Ptr_Val_Par->variant.var_1.Enum_Comp, 
324                     &Next_Record->variant.var_1.Enum_Comp);
325             Next_Record->Ptr_Comp = Ptr_Glob->Ptr_Comp;
326             Proc_7 (Next_Record->variant.var_1.Int_Comp, 10, 
327                     &Next_Record->variant.var_1.Int_Comp);
328         }
329     else /* not executed */
330         structassign (*Ptr_Val_Par, *Ptr_Val_Par->Ptr_Comp);
331 } /* Proc_1 */
332
333
334 void Proc_2 (One_Fifty *Int_Par_Ref)
335     /******************/
336     /* executed once */
337     /* *Int_Par_Ref == 1, becomes 4 */
338 {
339     One_Fifty  Int_Loc;  
340     Enumeration   Enum_Loc;
341
342     DPRINTF(("-> Proc_2\n"));
343
344     Int_Loc = *Int_Par_Ref + 10;
345     do {
346         DPRINTF(("1"));
347         /* executed once */
348         if (Ch_1_Glob == 'A')
349             /* then, executed */
350             {
351                 DPRINTF(("2"));
352                 Int_Loc -= 1;
353                 *Int_Par_Ref = Int_Loc - Int_Glob;
354                 Enum_Loc = Ident_1;
355             } /* if */
356         DPRINTF(("3"));
357     } while (Enum_Loc != Ident_1); /* true */
358     DPRINTF(("Proc_2 done.\n"));
359 } /* Proc_2 */
360
361
362 void Proc_3 (Rec_Pointer *Ptr_Ref_Par)
363     /******************/
364     /* executed once */
365     /* Ptr_Ref_Par becomes Ptr_Glob */
366 {
367     if (Ptr_Glob != Null)
368         /* then, executed */
369         *Ptr_Ref_Par = Ptr_Glob->Ptr_Comp;
370     Proc_7 (10, Int_Glob, &Ptr_Glob->variant.var_1.Int_Comp);
371 } /* Proc_3 */
372
373 void Proc_4 (void) /* without parameters */
374     /*******/
375     /* executed once */
376 {
377     Boolean Bool_Loc;
378
379     DPRINTF(("-> Proc_4\n"));
380     Bool_Loc = Ch_1_Glob == 'A';
381     Bool_Glob = Bool_Loc | Bool_Glob;
382     Ch_2_Glob = 'B';
383     DPRINTF(("Expect Ch_1_Glob '%c' == 'A'\n", (char)Ch_1_Glob));
384     DPRINTF(("       Ch_2_Glob '%c' == 'B'\n", (char)Ch_2_Glob));
385     DPRINTF(("       Bool_Loc %d == 1\n", (unsigned)Bool_Loc));
386     DPRINTF(("       Bool_Glob %d == 1\n", (unsigned)Bool_Glob));
387 } /* Proc_4 */
388
389
390 void Proc_5 () /* without parameters */
391     /*******/
392     /* executed once */
393 {
394     Ch_1_Glob = 'A';
395     Bool_Glob = false;
396 } /* Proc_5 */
397
398 void Proc_6 (Enumeration Enum_Val_Par, Enumeration *Enum_Ref_Par)
399     /*********************************/
400     /* executed once */
401     /* Enum_Val_Par == Ident_3, Enum_Ref_Par becomes Ident_2 */
402
403 {
404     *Enum_Ref_Par = Enum_Val_Par;
405     if (! Func_3 (Enum_Val_Par))
406         /* then, not executed */
407         *Enum_Ref_Par = Ident_4;
408     switch (Enum_Val_Par)
409         {
410         case Ident_1: 
411             *Enum_Ref_Par = Ident_1;
412             break;
413         case Ident_2: 
414             if (Int_Glob > 100)
415                 /* then */
416                 *Enum_Ref_Par = Ident_1;
417             else *Enum_Ref_Par = Ident_4;
418             break;
419         case Ident_3: /* executed */
420             *Enum_Ref_Par = Ident_2;
421             break;
422         case Ident_4: break;
423         case Ident_5: 
424             *Enum_Ref_Par = Ident_3;
425             break;
426         } /* switch */
427 } /* Proc_6 */
428
429
430 /*************************************************/
431 /* executed three times                                         */
432 /* first call:      Ch_1_Par_Val == 'H', Ch_2_Par_Val == 'R'    */
433 /* second call:     Ch_1_Par_Val == 'A', Ch_2_Par_Val == 'C'    */
434 /* third call:      Ch_1_Par_Val == 'B', Ch_2_Par_Val == 'C'    */
435 Enumeration Func_1 (Capital_Letter Ch_1_Par_Val, Capital_Letter Ch_2_Par_Val)
436 {
437     Capital_Letter        Ch_1_Loc;
438     Capital_Letter        Ch_2_Loc;
439
440     DPRINTF(("-> Func_1\n"));
441     DPRINTF(("  Inputs: Ch_1_Par_Val '%c' == { R, A, B }\n", (char)Ch_1_Par_Val));
442     DPRINTF(("          Ch_2_Par_Val '%c' == { Y, C, C }\n", (char)Ch_2_Par_Val));
443
444     Ch_1_Loc = Ch_1_Par_Val;
445     Ch_2_Loc = Ch_1_Loc;
446     if (Ch_2_Loc != Ch_2_Par_Val) {
447         /* then, executed */
448         return (Ident_1);
449     }
450     else  /* not executed */
451         {
452             Ch_1_Glob = Ch_1_Loc;
453             return (Ident_2);
454         }
455 } /* Func_1 */
456
457 Boolean Func_3 (Enumeration Enum_Par_Val)
458     /***************************/
459     /* executed once        */
460     /* Enum_Par_Val == Ident_3 */
461 {
462     Enumeration Enum_Loc;
463
464     Enum_Loc = Enum_Par_Val;
465     if (Enum_Loc == Ident_3)
466         /* then, executed */
467         return (true);
468     else /* not executed */
469         return (false);
470 } /* Func_3 */
471
472 void Proc_7 (One_Fifty Int_1_Par_Val, One_Fifty Int_2_Par_Val, One_Fifty *Int_Par_Ref)
473     /**********************************************/
474     /* executed three times                                      */ 
475     /* first call:      Int_1_Par_Val == 2, Int_2_Par_Val == 3,  */
476     /*                  Int_Par_Ref becomes 7                    */
477     /* second call:     Int_1_Par_Val == 10, Int_2_Par_Val == 5, */
478     /*                  Int_Par_Ref becomes 17                   */
479     /* third call:      Int_1_Par_Val == 6, Int_2_Par_Val == 10, */
480     /*                  Int_Par_Ref becomes 18                   */
481 {
482     One_Fifty Int_Loc;
483
484     Int_Loc = Int_1_Par_Val + 2;
485     *Int_Par_Ref = Int_2_Par_Val + Int_Loc;
486 } /* Proc_7 */
487
488 /*void Proc_8 (Arr_1_Dim Arr_1_Par_Ref, Arr_2_Dim Arr_2_Par_Ref, 
489   int Int_1_Par_Val, int Int_2_Par_Val)*/
490 void Proc_8 (int *Arr_1_Par_Ref, int *Arr_2_Par_Ref,
491              int Int_1_Par_Val, int Int_2_Par_Val)
492 {
493     REG One_Fifty Int_Index;
494     REG One_Fifty Int_Loc;
495
496     DPRINTF(("-> Proc_8\n"));
497     Int_Loc = Int_1_Par_Val + 5;
498     Arr_1_Par_Ref [Int_Loc] = Int_2_Par_Val;
499     DPRINTF(("Int_Loc %d == 8 Int_2_Par_Val %d == 7\n", Int_Loc, Int_2_Par_Val));
500
501     Arr_1_Par_Ref [Int_Loc+1] = Arr_1_Par_Ref [Int_Loc];
502     Arr_1_Par_Ref [Int_Loc+30] = Int_Loc;
503     for (Int_Index = Int_Loc; Int_Index <= Int_Loc+1; ++Int_Index)
504         Arr_2_Par_Ref [Int_Loc*50 + Int_Index] = Int_Loc;
505     Arr_2_Par_Ref [Int_Loc * 50 + Int_Loc-1] += 1;
506     Arr_2_Par_Ref [(Int_Loc+20 *50) + Int_Loc] = Arr_1_Par_Ref [Int_Loc];
507     Int_Glob = 5;
508     DPRINTF(("Arr_1_Glob[8] %d == 7\n", Arr_1_Par_Ref[8]));
509 }
510
511 /*********************************************************************/
512 /* executed once      */
513 /* Int_Par_Val_1 == 3 */
514 /* Int_Par_Val_2 == 7 */
515 Boolean Func_2 (char *Str_1_Par_Ref, char *Str_2_Par_Ref)
516     /*************************************************/
517     /* executed once */
518     /* Str_1_Par_Ref == "DHRYSTONE PROGRAM, 1'ST STRING" */
519     /* Str_2_Par_Ref == "DHRYSTONE PROGRAM, 2'ND STRING" */
520 {
521     REG One_Thirty        Int_Loc;
522     Capital_Letter    Ch_Loc;
523
524     DPRINTF(("-> Func_2\n"));
525     DPRINTF(("  Inputs Str_1_Par_Ref \"%s\" = \"DHRYSTONE PROGRAM, 1'ST STRING\"\n", Str_1_Par_Ref));
526     DPRINTF(("         Str_2_Par_Ref \"%s\" = \"DHRYSTONE PROGRAM, 2'ND STRING\"\n", Str_2_Par_Ref));
527
528     Int_Loc = 2;
529
530     while (Int_Loc <= 2) {
531         if (Func_1 (Str_1_Par_Ref[Int_Loc],
532                     Str_2_Par_Ref[Int_Loc+1]) == Ident_1)
533             /* then, executed */
534             {
535                 DPRINTF(("  2.3 Then OK.\n"));
536                 Ch_Loc = 'A';
537                 Int_Loc += 1;
538             } /* if, while */
539         else {
540             DPRINTF(("  2.2 Error.\n"));
541         }
542     }
543     if (Ch_Loc >= 'W' && Ch_Loc < 'Z') {
544         /* then, not executed */
545         DPRINTF((" 2.4 Error\n"));
546         Int_Loc = 7;
547     }
548     if (Ch_Loc == 'R') {
549         /* then, not executed */
550         DPRINTF((" 2.5 Error\n"));
551         return (true);
552     }
553     else /* executed */
554         {
555             DPRINTF(("Str_1_Par_Ref = \"%s\", Str_2_Par_Ref = \"%s\"\n",
556                    Str_1_Par_Ref, Str_2_Par_Ref));
557             if (strcmp (Str_1_Par_Ref, Str_2_Par_Ref) > 0)
558                 /* then, not executed */
559                 {
560                     DPRINTF((" 2.5 Error diff=%d\n", strcmp(Str_1_Par_Ref, Str_2_Par_Ref)));
561                     Int_Loc += 7;
562                     Int_Glob = Int_Loc;
563                     return (true);
564                 }
565             else {
566                 /* executed */
567                 DPRINTF((" 2.6 OK\n"));
568                 return (false);
569             }
570         } /* if Ch_Loc */
571 } /* Func_2 */
572