summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/hwasan/TestCases/utils.h
blob: 7c9f8852d23c6e4831d32faa0ae873c53d427d00 (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
#pragma once

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

#define UNTAG(x) (typeof((x) + 0))(((uintptr_t)(x)) & 0xffffffffffffff)

__attribute__((no_sanitize("hwaddress")))
int untag_printf(const char *fmt, ...) {
  va_list ap;
  va_start(ap, fmt);
  int ret = vprintf(UNTAG(fmt), ap);
  va_end(ap);
  return ret;
}

__attribute__((no_sanitize("hwaddress")))
int untag_fprintf(FILE *stream, const char *fmt, ...) {
  va_list ap;
  va_start(ap, fmt);
  int ret = vfprintf(stream, UNTAG(fmt), ap);
  va_end(ap);
  return ret;
}

int untag_strcmp(const char *s1, const char *s2) {
  return strcmp(UNTAG(s1), UNTAG(s2));
}
OpenPOWER on IntegriCloud