6 #define FUNCTION_NAME __ashldi3
9 #define LIBNAME UNKNOWN
12 #define LIBSTRING LIBSTRINGX(LIBNAME)
13 #define LIBSTRINGX(a) LIBSTRINGXX(a)
14 #define LIBSTRINGXX(a) #a
16 int64_t FUNCTION_NAME(int64_t input
, INPUT_TYPE count
);
18 int main(int argc
, char *argv
[]) {
19 INPUT_TYPE input
[INPUT_SIZE
];
24 // Initialize the input array with data of various sizes.
25 for (i
=0; i
<INPUT_SIZE
; ++i
)
26 input
[i
] = rand() & 0x3f;
28 int64_t fixedInput
= INT64_C(0x1234567890ABCDEF);
30 double bestTime
= __builtin_inf();
32 for (j
=0; j
<1024; ++j
) {
34 uint64_t startTime
= mach_absolute_time();
35 for (i
=0; i
<INPUT_SIZE
; ++i
)
36 FUNCTION_NAME(fixedInput
, input
[i
]);
37 uint64_t endTime
= mach_absolute_time();
39 double thisTime
= intervalInCycles(startTime
, endTime
);
40 bestTime
= __builtin_fmin(thisTime
, bestTime
);
42 // Move the stack alignment between trials to eliminate (mostly) aliasing effects
46 printf("%16s: %f cycles.\n", LIBSTRING
, bestTime
/ (double) INPUT_SIZE
);