aboutsummaryrefslogtreecommitdiff
path: root/test/benchmark/benchraw/benchraw.c
blob: fd6a9ea4e256a1f3c8e4601a6605021539fa2541 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#define BENCH_TITLE "flatbench for raw C structs"

#define BENCHMARK_BUFSIZ 1000
#define DECLARE_BENCHMARK(BM)\
    void *BM = 0
#define CLEAR_BENCHMARK(BM) 

#include <string.h>
#include <stdint.h>

#define STRING_LEN 32
#define VEC_LEN 3
#define fb_bool uint8_t

enum Enum { Apples, Pears, Bananas };

struct Foo {
  int64_t id;
  short count;
  char prefix;
  int length;
};

struct Bar {
  struct Foo parent;
  int time;
  float ratio;
  unsigned short size;
};

struct FooBar {
  struct Bar sibling;
  int name_len;
  char name[STRING_LEN];
  double rating;
  unsigned char postfix;
};

struct FooBarContainer {
  struct FooBar list[VEC_LEN];
  fb_bool initialized;
  enum Enum fruit;
  int location_len;
  char location[STRING_LEN];
};

int encode(void *bench, void *buffer, size_t *size)
{
    int i;
    struct FooBarContainer fbc;
    struct FooBar *foobar;
    struct Foo *foo;
    struct Bar *bar;

    (void)bench;

    strcpy(fbc.location, "https://www.example.com/myurl/");
    fbc.location_len = strlen(fbc.location);
    fbc.fruit = Bananas;
    fbc.initialized = 1;
    for (i = 0; i < VEC_LEN; ++i) {
      foobar = &fbc.list[i];
      foobar->rating = 3.1415432432445543543 + i;
      foobar->postfix = '!' + i;
      strcpy(foobar->name, "Hello, World!");
      foobar->name_len = strlen(foobar->name);
      bar = &foobar->sibling;
      bar->ratio = 3.14159f + i;
      bar->size = 10000 + i;
      bar->time = 123456 + i;
      foo = &bar->parent;
      foo->id = 0xABADCAFEABADCAFE + i;
      foo->count = 10000 + i;
      foo->length = 1000000 + i;
      foo->prefix = '@' + i;
    }
    if (*size < sizeof(struct FooBarContainer)) {
        return -1;
    }
    *size = sizeof(struct FooBarContainer);
    memcpy(buffer, &fbc, *size);
    return 0;
}

int64_t decode(void *bench, void *buffer, size_t size, int64_t sum)
{
    int i;
    struct FooBarContainer *foobarcontainer;
    struct FooBar *foobar;
    struct Foo *foo;
    struct Bar *bar;

    (void)bench;

    foobarcontainer = buffer;
    sum += foobarcontainer->initialized;
    sum += foobarcontainer->location_len;
    sum += foobarcontainer->fruit;
    for (i = 0; i < VEC_LEN; ++i) {
        foobar = &foobarcontainer->list[i];
        sum += foobar->name_len;
        sum += foobar->postfix;
        sum += (int64_t)foobar->rating;
        bar = &foobar->sibling;
        sum += (int64_t)bar->ratio;
        sum += bar->size;
        sum += bar->time;
        foo = &bar->parent;
        sum += foo->count;
        sum += foo->id;
        sum += foo->length;
        sum += foo->prefix;
    }
    return sum + 2 * sum;
}

#include "benchmain.h"