summaryrefslogtreecommitdiff
path: root/lib/System/System.cpp
blob: 1f6df5352b1cd443e44afc011b306b46249b2244 (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
#include <sys/time.h>
#include <stdint.h>
#include "stdlib.h"
#include "System/System.h"

// FIXME: windows support.

static timeval programStart;

LIBFLANG_ABI void libflang_sys_init() {
  gettimeofday(&programStart, nullptr);
}

LIBFLANG_ABI void *libflang_malloc(size_t size) {
  return malloc(size);
}

LIBFLANG_ABI void  libflang_free(void *ptr) {
  free(ptr);
}

LIBFLANG_ABI float libflang_etime(float *time0, float *time1) {
  timeval stop;
  gettimeofday(&stop, nullptr);
  int64_t diff = stop.tv_usec - programStart.tv_usec;

  *time0 = float(double(diff) / 1000000.0);
  *time1 = 0.0f;
  return *time0 + *time1;
}