mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
117 lines
3.4 KiB
C
117 lines
3.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
|
|
/*******************************************************************************
|
|
S P O R T M O D E L
|
|
_____
|
|
____/_____\____
|
|
/__o____o____o__\ __
|
|
\_______________/ (@@)/
|
|
/\_____|_____/\ x~[]~
|
|
~~~~~~~~~~~/~~~~~~~|~~~~~~~\~~~~~~~~/\~~~~~~~~~
|
|
|
|
Advanced Technology Garbage Collector
|
|
Copyright (c) 1997 Netscape Communications, Inc. All rights reserved.
|
|
Recovered by: Warren Harris
|
|
*******************************************************************************/
|
|
|
|
#include "sm.h"
|
|
#include "smgen.h"
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
#define ITERATIONS (10*1024*1024)
|
|
#define SIZE 1024
|
|
int divTable[SIZE];
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
int i, j;
|
|
clock_t t1, t2, te;
|
|
int ans1[SIZE], ans2[SIZE];
|
|
fprintf(stdout, "SportModel: Division algorithm timing analysis test\n");
|
|
|
|
t1 = clock();
|
|
for (i = 0, j = 0; i < ITERATIONS; i++) {
|
|
ans1[SIZE - 1 - j] = j;
|
|
if (++j == SIZE) j = 0;
|
|
}
|
|
t2 = clock();
|
|
te = t2 - t1;
|
|
|
|
fprintf(stdout, "empty loop = %ldms\n", te * 1000 / CLOCKS_PER_SEC);
|
|
|
|
t1 = clock();
|
|
i = ITERATIONS;
|
|
SM_UNROLLED_WHILE(i, {
|
|
ans1[SIZE - 1 - j] = j;
|
|
if (++j == SIZE) j = 0;
|
|
});
|
|
t2 = clock();
|
|
|
|
fprintf(stdout, "unrolled loop = %ldms\n", (t2 - t1) * 1000 / CLOCKS_PER_SEC);
|
|
|
|
t1 = clock();
|
|
for (i = 0, j = 0; i < ITERATIONS; i++) {
|
|
ans1[SIZE - 1 - j] = j / 12;
|
|
if (++j == SIZE) j = 0;
|
|
}
|
|
t2 = clock();
|
|
|
|
fprintf(stdout, "div loop = %ldms\n", (t2 - t1 - te) * 1000 / CLOCKS_PER_SEC);
|
|
|
|
/* initialize divTable */
|
|
for (j = 0; j < SIZE; j++) {
|
|
divTable[j] = j / 12;
|
|
}
|
|
|
|
t1 = clock();
|
|
for (i = 0, j = 0; i < ITERATIONS; i++) {
|
|
ans1[SIZE - 1 - j] = divTable[j];
|
|
if (++j == SIZE) j = 0;
|
|
}
|
|
t2 = clock();
|
|
|
|
fprintf(stdout, "lookup loop = %ldms\n", (t2 - t1 - te) * 1000 / CLOCKS_PER_SEC);
|
|
|
|
t1 = clock();
|
|
for (i = 0, j = 0; i < ITERATIONS; i++) {
|
|
ans2[SIZE - 1 - j] = ((j + 1) * 21845) >> 18;
|
|
if (++j == SIZE) j = 0;
|
|
}
|
|
t2 = clock();
|
|
|
|
fprintf(stdout, "rad loop = %ldms\n", (t2 - t1 - te) * 1000 / CLOCKS_PER_SEC);
|
|
|
|
#if 0
|
|
for (i = 0; i < SIZE; i++) {
|
|
fprintf(stdout, "%8d %8d %8d (%8d) %8d %8d\n",
|
|
i, ans1[i], ans2[i], (ans1[i] - ans2[i]), divTable[i],
|
|
SM_DIV(i, SM_FIRST_MIDSIZE_BUCKET));
|
|
}
|
|
#endif
|
|
}
|
|
|
|
/******************************************************************************/
|