aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/ternary/ternary.c
blob: 7902563965a1c9fccbf9eb64ca70d734d6a6a545 (plain)
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
#include <stdint.h>
#include <stdio.h>
#include <inttypes.h>
#include "../clock.h"

typedef uint32_t data;

#if 0
#define TERNARY(a, b, c) ((a) ? (b) : (c))
#else
#define TERNARY(a, b, c) (((-(a)) & (b)) | ((-1+(a)) & (c)))
#endif

data silly_computation(void) {
  data x = 1;
  for(int i=0; i<10000; i++) {
     x = x * TERNARY(((x & 0x100) != 0), 45561U, 337777U);
  }
  return x;
}

int main() {
  clock_prepare();
  clock_start();
  data result = silly_computation();
  clock_stop();
  printf("result=%" PRIu32 "\ncycles=%" PRIu64 "\n", result, get_total_clock());
  return 0;
}