Final cleanup; completely working on TINI now (243 dhry/sec)
[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 #ifdef SDCC_ds390
52 #include "clock.h"
53 #include <serial390.h>
54 #undef PRINT_T_STATES
55 #else
56 /** For clock() */
57 #include <time.h>
58 #include <types.h>
59 #define PRINT_T_STATES
60 #endif
61
62 /** Print the number of t-states this program has been executing for.
63     Optional :)
64 */
65 #ifdef PRINT_T_STATES
66 void _printTStates(void);
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 Proc_1 (REG Rec_Pointer Ptr_Val_Par);
92 void Proc_2 (One_Fifty *Int_Par_Ref);
93 void Proc_5 (void);
94 void Proc_4 (void);
95 void Proc_7 (One_Fifty Int_1_Par_Val, One_Fifty Int_2_Par_Val, One_Fifty *Int_Par_Ref);
96 void Proc_8 (int *Arr_1_Par_Ref, int *Arr_2_Par_Ref,
97              int Int_1_Par_Val, int Int_2_Par_Val);
98 void Proc_6 (Enumeration Enum_Val_Par, Enumeration *Enum_Ref_Par);
99 void Proc_3 (Rec_Pointer *Ptr_Ref_Par);
100 Enumeration Func_1 (Capital_Letter Ch_1_Par_Val, Capital_Letter Ch_2_Par_Val);
101 Boolean Func_2 (char *Str_1_Par_Ref, char *Str_2_Par_Ref);
102 Boolean Func_3 (Enumeration Enum_Par_Val);
103
104 unsigned getsp(void);
105
106 int main(void)
107 {
108     One_Fifty       Int_1_Loc;
109     REG   One_Fifty       Int_2_Loc;
110     One_Fifty       Int_3_Loc;
111     REG   Capital_Letter Ch_Index;
112     Enumeration     Enum_Loc;
113     Str_30          Str_1_Loc;
114     Str_30          Str_2_Loc;
115     REG   int             Run_Index;
116     REG   int             Number_Of_Runs;
117     unsigned  long runTime;
118
119 #ifdef SDCC_ds390
120     startTimer();
121 #endif
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 = 3;
147 #else
148     Number_Of_Runs = 10000;
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;
211         Int_1_Loc = Int_2_Loc / Int_3_Loc;
212         Int_2_Loc = 7 * (Int_2_Loc - Int_3_Loc) - Int_1_Loc;
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 #ifdef PRINT_T_STATES    
224     _printTStates();
225 #endif    
226
227     printf("Run_Index = %d\n", Run_Index);
228
229     runTime = clock() - runTime;
230
231 #if 1
232     printf ("Execution ends\n");
233     printf ("\n");
234     printf ("Final values of the variables used in the benchmark:\n");
235     printf ("\n");
236     printf ("Int_Glob:            %d\n", Int_Glob);
237     printf ("        should be:   %d\n", (int)5);
238     printf ("Bool_Glob:           %d\n", Bool_Glob);
239     printf ("        should be:   %d\n", (int)1);
240     printf ("Ch_1_Glob:           %c\n", Ch_1_Glob);
241     printf ("        should be:   %c\n", 'A');
242     printf ("Ch_2_Glob:           %c\n", Ch_2_Glob);
243     printf ("        should be:   %c\n", 'B');
244     printf ("Arr_1_Glob[8]:       %d\n", Arr_1_Glob[8]);
245     printf ("        should be:   %d\n", (int)7);
246 #if 1
247     printf ("Arr_2_Glob[8][7]:    %d\n", Arr_2_Glob[8][7]);
248 #endif
249     printf ("        should be:   Number_Of_Runs + 10\n");
250     printf ("Ptr_Glob->\n");
251     printf ("  Ptr_Comp:          %d\n", (int) Ptr_Glob->Ptr_Comp);
252     printf ("        should be:   (implementation-dependent)\n");
253     printf ("  Discr:             %d\n", (int)Ptr_Glob->Discr);
254     printf ("        should be:   %d\n", (int)0);
255     printf ("  Enum_Comp:         %d\n", (int)Ptr_Glob->variant.var_1.Enum_Comp);
256     printf ("        should be:   %d\n", (int)2);
257     printf ("  Int_Comp:          %d\n", (int)Ptr_Glob->variant.var_1.Int_Comp);
258     printf ("        should be:   %d\n", (int)17);
259     printf ("  Str_Comp:          %s\n", (char *)Ptr_Glob->variant.var_1.Str_Comp);
260     printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
261     printf ("Next_Ptr_Glob->\n");
262     printf ("  Ptr_Comp:          %d\n", (int) Next_Ptr_Glob->Ptr_Comp);
263     printf ("        should be:   (implementation-dependent), same as above\n");
264     printf ("  Discr:             %d\n", Next_Ptr_Glob->Discr);
265     printf ("        should be:   %d\n", (int)0);
266     printf ("  Enum_Comp:         %d\n", Next_Ptr_Glob->variant.var_1.Enum_Comp);
267     printf ("        should be:   %d\n", (int)1);
268     printf ("  Int_Comp:          %d\n", Next_Ptr_Glob->variant.var_1.Int_Comp);
269     printf ("        should be:   %d\n", (int)18);
270     printf ("  Str_Comp:          %s\n",
271             Next_Ptr_Glob->variant.var_1.Str_Comp);
272     printf ("        should be:   DHRYSTONE PROGRAM, SOME STRING\n");
273     printf ("Int_1_Loc:           %d\n", Int_1_Loc);
274     printf ("        should be:   %d\n", (int)5);
275     printf ("Int_2_Loc:           %d\n", Int_2_Loc);
276     printf ("        should be:   %d\n", (int)13);
277     printf ("Int_3_Loc:           %d\n", Int_3_Loc);
278     printf ("        should be:   %d\n", (int)7);
279     printf ("Enum_Loc:            %d\n", Enum_Loc);
280     printf ("        should be:   %d\n", (int)1);
281     printf ("Str_1_Loc:           %s\n", (char _generic *)Str_1_Loc);
282     printf ("        should be:   DHRYSTONE PROGRAM, 1'ST STRING\n");
283     printf ("Str_2_Loc:           %s\n", (char _generic *)Str_2_Loc);
284     printf ("        should be:   DHRYSTONE PROGRAM, 2'ND STRING\n");
285     printf ("\n");
286 #endif
287     printf("Dhrystones/s = %lu\n", (unsigned long)Number_Of_Runs / (runTime/CLOCKS_PER_SEC));
288     printf("MIPS = d/s/1757 = (sigh, need floats...)\n");
289 #ifdef PRINT_T_STATES    
290     _printTStates();
291 #endif    
292     printf("Time: %lu ticks\n", runTime);
293 }
294
295 void Proc_1 (REG Rec_Pointer Ptr_Val_Par)
296 /* executed once */
297 {
298     REG Rec_Pointer Next_Record = Ptr_Val_Par->Ptr_Comp;  
299     /* == Ptr_Glob_Next */
300     /* Local variable, initialized with Ptr_Val_Par->Ptr_Comp,    */
301     /* corresponds to "rename" in Ada, "with" in Pascal           */
302   
303     structassign (*Ptr_Val_Par->Ptr_Comp, *Ptr_Glob); 
304     Ptr_Val_Par->variant.var_1.Int_Comp = 5;
305     Next_Record->variant.var_1.Int_Comp 
306         = Ptr_Val_Par->variant.var_1.Int_Comp;
307     Next_Record->Ptr_Comp = Ptr_Val_Par->Ptr_Comp;
308     Proc_3 (&Next_Record->Ptr_Comp);
309     /* Ptr_Val_Par->Ptr_Comp->Ptr_Comp 
310        == Ptr_Glob->Ptr_Comp */
311     if (Next_Record->Discr == Ident_1)
312         /* then, executed */
313         {
314             Next_Record->variant.var_1.Int_Comp = 6;
315             Proc_6 (Ptr_Val_Par->variant.var_1.Enum_Comp, 
316                     &Next_Record->variant.var_1.Enum_Comp);
317             Next_Record->Ptr_Comp = Ptr_Glob->Ptr_Comp;
318             Proc_7 (Next_Record->variant.var_1.Int_Comp, 10, 
319                     &Next_Record->variant.var_1.Int_Comp);
320         }
321     else /* not executed */
322         structassign (*Ptr_Val_Par, *Ptr_Val_Par->Ptr_Comp);
323 } /* Proc_1 */
324
325
326 void Proc_2 (One_Fifty *Int_Par_Ref)
327     /******************/
328     /* executed once */
329     /* *Int_Par_Ref == 1, becomes 4 */
330 {
331     One_Fifty  Int_Loc;  
332     Enumeration   Enum_Loc;
333
334     DPRINTF(("-> Proc_2\n"));
335
336     Int_Loc = *Int_Par_Ref + 10;
337     do {
338         DPRINTF(("1"));
339         /* executed once */
340         if (Ch_1_Glob == 'A')
341             /* then, executed */
342             {
343                 DPRINTF(("2"));
344                 Int_Loc -= 1;
345                 *Int_Par_Ref = Int_Loc - Int_Glob;
346                 Enum_Loc = Ident_1;
347             } /* if */
348         DPRINTF(("3"));
349     } while (Enum_Loc != Ident_1); /* true */
350     DPRINTF(("Proc_2 done.\n"));
351 } /* Proc_2 */
352
353
354 void Proc_3 (Rec_Pointer *Ptr_Ref_Par)
355     /******************/
356     /* executed once */
357     /* Ptr_Ref_Par becomes Ptr_Glob */
358 {
359     if (Ptr_Glob != Null)
360         /* then, executed */
361         *Ptr_Ref_Par = Ptr_Glob->Ptr_Comp;
362     Proc_7 (10, Int_Glob, &Ptr_Glob->variant.var_1.Int_Comp);
363 } /* Proc_3 */
364
365 void Proc_4 (void) /* without parameters */
366     /*******/
367     /* executed once */
368 {
369     Boolean Bool_Loc;
370
371     DPRINTF(("-> Proc_4\n"));
372     Bool_Loc = Ch_1_Glob == 'A';
373     Bool_Glob = Bool_Loc | Bool_Glob;
374     Ch_2_Glob = 'B';
375     DPRINTF(("Expect Ch_1_Glob '%c' == 'A'\n", (char)Ch_1_Glob));
376     DPRINTF(("       Ch_2_Glob '%c' == 'B'\n", (char)Ch_2_Glob));
377     DPRINTF(("       Bool_Loc %d == 1\n", (unsigned)Bool_Loc));
378     DPRINTF(("       Bool_Glob %d == 1\n", (unsigned)Bool_Glob));
379 } /* Proc_4 */
380
381
382 void Proc_5 () /* without parameters */
383     /*******/
384     /* executed once */
385 {
386     Ch_1_Glob = 'A';
387     Bool_Glob = false;
388 } /* Proc_5 */
389
390 void Proc_6 (Enumeration Enum_Val_Par, Enumeration *Enum_Ref_Par)
391     /*********************************/
392     /* executed once */
393     /* Enum_Val_Par == Ident_3, Enum_Ref_Par becomes Ident_2 */
394
395 {
396     *Enum_Ref_Par = Enum_Val_Par;
397     if (! Func_3 (Enum_Val_Par))
398         /* then, not executed */
399         *Enum_Ref_Par = Ident_4;
400     switch (Enum_Val_Par)
401         {
402         case Ident_1: 
403             *Enum_Ref_Par = Ident_1;
404             break;
405         case Ident_2: 
406             if (Int_Glob > 100)
407                 /* then */
408                 *Enum_Ref_Par = Ident_1;
409             else *Enum_Ref_Par = Ident_4;
410             break;
411         case Ident_3: /* executed */
412             *Enum_Ref_Par = Ident_2;
413             break;
414         case Ident_4: break;
415         case Ident_5: 
416             *Enum_Ref_Par = Ident_3;
417             break;
418         } /* switch */
419 } /* Proc_6 */
420
421
422 /*************************************************/
423 /* executed three times                                         */
424 /* first call:      Ch_1_Par_Val == 'H', Ch_2_Par_Val == 'R'    */
425 /* second call:     Ch_1_Par_Val == 'A', Ch_2_Par_Val == 'C'    */
426 /* third call:      Ch_1_Par_Val == 'B', Ch_2_Par_Val == 'C'    */
427 Enumeration Func_1 (Capital_Letter Ch_1_Par_Val, Capital_Letter Ch_2_Par_Val)
428 {
429     Capital_Letter        Ch_1_Loc;
430     Capital_Letter        Ch_2_Loc;
431
432     DPRINTF(("-> Func_1\n"));
433     DPRINTF(("  Inputs: Ch_1_Par_Val '%c' == { R, A, B }\n", (char)Ch_1_Par_Val));
434     DPRINTF(("          Ch_2_Par_Val '%c' == { Y, C, C }\n", (char)Ch_2_Par_Val));
435
436     Ch_1_Loc = Ch_1_Par_Val;
437     Ch_2_Loc = Ch_1_Loc;
438     if (Ch_2_Loc != Ch_2_Par_Val) {
439         /* then, executed */
440         return (Ident_1);
441     }
442     else  /* not executed */
443         {
444             Ch_1_Glob = Ch_1_Loc;
445             return (Ident_2);
446         }
447 } /* Func_1 */
448
449 Boolean Func_3 (Enumeration Enum_Par_Val)
450     /***************************/
451     /* executed once        */
452     /* Enum_Par_Val == Ident_3 */
453 {
454     Enumeration Enum_Loc;
455
456     Enum_Loc = Enum_Par_Val;
457     if (Enum_Loc == Ident_3)
458         /* then, executed */
459         return (true);
460     else /* not executed */
461         return (false);
462 } /* Func_3 */
463
464 void Proc_7 (One_Fifty Int_1_Par_Val, One_Fifty Int_2_Par_Val, One_Fifty *Int_Par_Ref)
465     /**********************************************/
466     /* executed three times                                      */ 
467     /* first call:      Int_1_Par_Val == 2, Int_2_Par_Val == 3,  */
468     /*                  Int_Par_Ref becomes 7                    */
469     /* second call:     Int_1_Par_Val == 10, Int_2_Par_Val == 5, */
470     /*                  Int_Par_Ref becomes 17                   */
471     /* third call:      Int_1_Par_Val == 6, Int_2_Par_Val == 10, */
472     /*                  Int_Par_Ref becomes 18                   */
473 {
474     One_Fifty Int_Loc;
475
476     Int_Loc = Int_1_Par_Val + 2;
477     *Int_Par_Ref = Int_2_Par_Val + Int_Loc;
478 } /* Proc_7 */
479
480 /*void Proc_8 (Arr_1_Dim Arr_1_Par_Ref, Arr_2_Dim Arr_2_Par_Ref, 
481   int Int_1_Par_Val, int Int_2_Par_Val)*/
482 void Proc_8 (int *Arr_1_Par_Ref, int *Arr_2_Par_Ref,
483              int Int_1_Par_Val, int Int_2_Par_Val)
484 {
485     REG One_Fifty Int_Index;
486     REG One_Fifty Int_Loc;
487
488     DPRINTF(("-> Proc_8\n"));
489     Int_Loc = Int_1_Par_Val + 5;
490     Arr_1_Par_Ref [Int_Loc] = Int_2_Par_Val;
491     DPRINTF(("Int_Loc %d == 8 Int_2_Par_Val %d == 7\n", Int_Loc, Int_2_Par_Val));
492
493     Arr_1_Par_Ref [Int_Loc+1] = Arr_1_Par_Ref [Int_Loc];
494     Arr_1_Par_Ref [Int_Loc+30] = Int_Loc;
495     for (Int_Index = Int_Loc; Int_Index <= Int_Loc+1; ++Int_Index)
496         Arr_2_Par_Ref [Int_Loc*50 + Int_Index] = Int_Loc;
497     Arr_2_Par_Ref [Int_Loc * 50 + Int_Loc-1] += 1;
498     Arr_2_Par_Ref [(Int_Loc+20 *50) + Int_Loc] = Arr_1_Par_Ref [Int_Loc];
499     Int_Glob = 5;
500     DPRINTF(("Arr_1_Glob[8] %d == 7\n", Arr_1_Par_Ref[8]));
501 }
502
503 /*********************************************************************/
504 /* executed once      */
505 /* Int_Par_Val_1 == 3 */
506 /* Int_Par_Val_2 == 7 */
507 Boolean Func_2 (char *Str_1_Par_Ref, char *Str_2_Par_Ref)
508     /*************************************************/
509     /* executed once */
510     /* Str_1_Par_Ref == "DHRYSTONE PROGRAM, 1'ST STRING" */
511     /* Str_2_Par_Ref == "DHRYSTONE PROGRAM, 2'ND STRING" */
512 {
513     REG One_Thirty        Int_Loc;
514     Capital_Letter    Ch_Loc;
515
516     DPRINTF(("-> Func_2\n"));
517     DPRINTF(("  Inputs Str_1_Par_Ref \"%s\" = \"DHRYSTONE PROGRAM, 1'ST STRING\"\n", Str_1_Par_Ref));
518     DPRINTF(("         Str_2_Par_Ref \"%s\" = \"DHRYSTONE PROGRAM, 2'ND STRING\"\n", Str_2_Par_Ref));
519
520     Int_Loc = 2;
521
522     while (Int_Loc <= 2) {
523         if (Func_1 (Str_1_Par_Ref[Int_Loc],
524                     Str_2_Par_Ref[Int_Loc+1]) == Ident_1)
525             /* then, executed */
526             {
527                 DPRINTF(("  2.3 Then OK.\n"));
528                 Ch_Loc = 'A';
529                 Int_Loc += 1;
530             } /* if, while */
531         else {
532             DPRINTF(("  2.2 Error.\n"));
533         }
534     }
535     if (Ch_Loc >= 'W' && Ch_Loc < 'Z') {
536         /* then, not executed */
537         DPRINTF((" 2.4 Error\n"));
538         Int_Loc = 7;
539     }
540     if (Ch_Loc == 'R') {
541         /* then, not executed */
542         DPRINTF((" 2.5 Error\n"));
543         return (true);
544     }
545     else /* executed */
546         {
547             DPRINTF(("Str_1_Par_Ref = \"%s\", Str_2_Par_Ref = \"%s\"\n",
548                    Str_1_Par_Ref, Str_2_Par_Ref));
549             if (strcmp (Str_1_Par_Ref, Str_2_Par_Ref) > 0)
550                 /* then, not executed */
551                 {
552                     DPRINTF((" 2.5 Error diff=%d\n", strcmp(Str_1_Par_Ref, Str_2_Par_Ref)));
553                     Int_Loc += 7;
554                     Int_Glob = Int_Loc;
555                     return (true);
556                 }
557             else {
558                 /* executed */
559                 DPRINTF((" 2.6 OK\n"));
560                 return (false);
561             }
562         } /* if Ch_Loc */
563 } /* Func_2 */
564